:root {
  --bg-color: #000;
  --text-color: #ffffff;
  --grey-text: #aaaaaa;
  --font-family: "futura-pt", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px; /* Menos padding para aprovechar espacio en móvil */
    color: var(--text-color);
    font-family: "futura-pt", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- NUEVA NAVEGACIÓN (Estilo Pastilla de la imagen) --- */
header {
    height: auto;
    background-color: transparent;
    position: fixed;
    top: 25px; /* Separación de la parte superior */
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Centra el menú horizontalmente */
}

.nav-pill {
    background: rgba(30, 30, 30, 0.7); /* Fondo oscuro translúcido */
    backdrop-filter: blur(15px); /* Efecto de desenfoque de fondo */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Forma de cápsula */
    padding: 8px 10px 8px 24px;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--grey-text);
    font-size: 0.85rem;
    font-weight: 400;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Botón Sign In */
.btn-signin {
    color: var(--grey-text);
    font-size: 0.85rem;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
}

.btn-signin:hover {
    border-color: #fff;
    color: #fff;
}

/* Botón Join Waitlist (Resaltado blanco con brillo) */
.btn-waitlist {
    background: #ffffff;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 5px rgba(0, 255, 150, 0.2);
}

.btn-waitlist:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* CONTENEDOR REAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO */
/* --- Estilos Generales de la Galería --- */
.gallery-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    /* Mantenemos las 2 columnas como base para ambos dispositivos */
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
}

.gallery-text{

    grid-column: 1 / span 2;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;

    margin-top: 60px;
    margin-bottom: 60px;
}

.gallery-text h1{
    color: #ffffff;
    font-size: 82px;
    font-family: var(--font-family);
    font-weight: 600;
}


.gallery-text p{
    color: #ffffff;
    font-size: 1.4rem;
    font-family: var(--font-family);
    
}

.gallery-text__right p{
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 1px;
    font-size: 25px;
}



/* Estilos para las imágenes */
.gallery-item img,
.gallery-item .video-content {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Mantiene la proporción sin estirar */
}

.video-content {
    pointer-events: none;
}

/* La imagen de arriba siempre ocupa las 2 columnas */
.item-top {
    grid-column: 1 / span 2;
}

/* =========================================
   DIAGRAMACIÓN PARA DESKTOP (Laptops y Monitores)
   ========================================= */
@media (min-width: 768px) {
    .gallery-container {
        /* La primera fila (top) mide 600px, la segunda (cards) mide 400px */
        grid-auto-rows: auto; 
        gap: 15px;
    }

    .gallery-text{
        grid-auto-rows: auto;
    }

     
}

/* =========================================
   DIAGRAMACIÓN PARA RESPONSIVE (Celulares)
   ========================================= */
@media (max-width: 767px) {

     .nav-pill {
        gap: 15px;
        padding: 6px 8px 6px 15px;
    }
    .nav-links { display: none; } /* Ocultar links en móvil para simplificar */

    .gallery-container {
        /* IMPORTANTE: Mantenemos 1fr 1fr para que sigan siendo 2 columnas abajo */
        grid-template-columns: 1fr 1fr;
        /* Reducimos las alturas para que quepa bien en la mano */
        grid-auto-rows: auto;
        gap: 8px;
    }
    
    .gallery-text{
        grid-template-columns: 1fr; /* 🔥 AHORA SÍ */
        gap: 30px;
        margin-top: 40px;

    }

    .gallery-text__left h1{
        font-size: 42px;
        line-height: 1.1;
    }

    .gallery-text__left p{
        display: none;
    }

    .gallery-text__right p{
        font-size: 16px;
        padding: 0;
    }

    .gallery-text > div{
        min-width: 0;
    }



    /* Aseguramos que la de arriba siga ocupando todo el ancho en el celular */
    .item-top {
        grid-column: 1 / span 2;
    }
}





