/* ============================
   ESTILOS GENERALES
============================ */

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f8f8f8;
    color: #222;
    scroll-behavior: smooth;
}

:root {
    --turquesa: #159C92;
    --amarillo: #F2B233;
    --negro: #111;
}

/* ============================
   NAVBAR
============================ */

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(146, 237, 222);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;   /* ← NAVBAR FINITO */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* IZQUIERDA */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LOGO NAVBAR — más grande pero sin engordar el navbar */
.logo-nav {
    height: 55px;       /* ← controla la altura REAL */
    width: auto;
    object-fit: contain;
}

/* Marca */
.brand-name {
    font-weight: 700;
    font-size: 1.25em;
    color: var(--turquesa);
}
.fullscreen-menu {
    display: none;
}

/* Centro: menú realmente centrado */
.nav-links {
    list-style: none;
    display: flex;
     justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    padding-left: 0px; /* empuja un poco a la derecha para balance visual */

}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--negro);
    font-size: 1em;
}



/* Ícono hamburguesa (visible solo en móvil) */
.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 26px;
    cursor: pointer;
    color: var(--negro);
    z-index: 2000;
}
/* LINKS NAV */



.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--negro);
    font-size: 0.95em;
}

.nav-links li a:hover {
    color: var(--turquesa);
}

/* Botón WhatsApp en navbar */
.wsp-nav {
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
}

.wsp-nav i {
    color: white;
}

/* ============================
   HERO (PORTADA)
============================ */

.hero {
    background: #f9fad7!important;
    color: rgb(15, 14, 14);
    text-align: center;
    padding: 20px 20px 15px;
    margin-top: 50px;
}

/* Textos más cerca */
.hero-content h1 {
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 0.25em;
    letter-spacing: 0.5px;
}


.hero-content h2 {
      font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    margin-top: -10px;
    margin-bottom: 5px; /* sube hacia el logo */
     letter-spacing: 0.7px;
}
.hero-content h4 {
    font-size: 0.85em;          /* pequeño, elegante */
    font-weight: 600;           /* negrita */
    font-style: italic;         /* itálica */
    color: #171616;                /* gris elegante */
    margin-top: 4px;            /* 🔥 separación JUSTA debajo del H2 */
    margin-bottom: -50px;         /* espacio mínimo antes del logo */
    letter-spacing: 0.3px;      /* fino, delicado */
    text-align: center;         /* centra exactamente como el H2 */
}
/* LOGO DEL HERO — GRANDE PERO SIN CORTARSE */
.logo-hero {
   width: 350px;
    margin: -10px auto -10px auto;
    display: block;
    margin-bottom: 0px; /* sube hacia el logo */
}

.frase {
    margin-top: -78px; /* apenas por debajo */
    margin-bottom: 10px !important;
    font-style: italic;
    font-size: 1.15em;
    color: #444 !important; 
    font-weight: 400;
}
/* ============================

.sub-frase-hero {
    margin-top: 5px;
    font-size: 0.925em;
    color: #3d351e;
    text-align: justify;
    opacity: 0.90;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2em;
}

*/
/* ============================
   SECCIONES
============================ */

.seccion {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
}

.bg-claro {
    background: #F6F0E7;
}

.seccion h2 {
    color: var(--turquesa);
    font-size: 2em;
    margin-bottom: 20px;
}

.subtitulo-video {
    text-align: center;
    margin-top: 35px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--turquesa);
}

/* ============================
   GALERÍA DE FOTOS
============================ */

.galeria {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.galeria img {
    width: 32%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.galeria img:hover {
    transform: scale(1.04);
}

/* ============================
   VIDEOS
============================ */

.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
}

.videos video {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ============================
   FOOTER
============================ */

footer {
     background: var(--negro);
    color: rgb(247, 236, 183);
    padding: 12px 30px;
    margin-top: 40px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.footer-left {
    text-align: left;
    font-size: 0.95em;
    line-height: 1.6em;
}

.footer-left i {
    color: var(--amarillo);
    margin-right: 6px;
}

.footer-right {
    text-align: right;
    font-size: 0.9em;
    opacity: 0.9;
}

/* ============================
   WHATSAPP FLOTANTE
============================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 125px;
    right: 35px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

/* ============================
   RESPONSIVE NAV (OPCIONAL)
============================ */

/* ============================
   MOBILE REAL
============================ */
@media (max-width: 768px) {
    html, body {
    width: 100%;
    overflow-x: hidden !important;
}


    .hamburger {
        display: block !important;
        cursor: pointer;
        margin-left: auto !important;
        margin-right: 20px !important;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 80%;
        background: white;
        padding: 25px 0;
        text-align: center;
        gap: 25px;
        box-shadow: -3px 0 8px rgba(0,0,0,0.25);
        border-radius: 0 0 0 12px;
        z-index: 1500;
    }

    .nav-links.open {
        display: flex !important;
    }

    /* Hero compacto */
    .hero {
        padding: 15% 4% 20%;
        margin-top: 12vw;
        color: rgb(15, 14, 14);
    }

    .hero-content h1 {
        font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
    margin-bottom: 2vw;
    letter-spacing: 0.5px;
    }

    /* FORZAR DOS LÍNEAS PARA CELULAR */
    .hero-content h2 {
     font-size: 5vw !important;
    line-height: 1.1em !important;   /* ← antes 1.4em */
    text-align: center !important;
    white-space: normal !important;
   
    position: relative;
    margin: 5px 0 0 0 !important;    /* ← reduce espacio general */
    }

    .hero-content h2 {
    font-family: 'Arial Narrow', Arial, sans-serif;
    
    font-weight: 700;
    margin-top: -10px;
    margin-bottom: -25px; /* sube hacia el logo */
     letter-spacing: 0.7px;
    }

    .logo-hero {
        width: 350px;
        margin: -10px auto 10px auto;
    }

    .frase {
        margin-top: -110px;
        font-size: 1.5em;
    }

    /* WhatsApp más arriba */
    .whatsapp-float {
      
        right: 20px !important;
        z-index: 5000 !important;
          bottom: 150px !important;
    }
}
.pagina {
    display: none;
}
#nosotros {
    display: block;
}
.texto-ceremonias {
    max-width: 900px;
    margin: 30px auto;
    font-size: 1.1em;
    line-height: 1.7em;
    color: #333;
}

.texto-ceremonia ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.lista-rituales li {
    margin: 5px 0;
}

/* Galería de imágenes */
.galeria {
    display: flex;
    flex-wrap: wrap;        /* permite que salten a otra fila en pantallas chicas */
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Fotos de la galería */
.galeria img {
    width: 18%;             /* ahora entran 5 por fila */
    max-width: 260px;       /* límite para que no se agranden */
    border-radius: 12px;
    object-fit: cover;      /* recorta para que no se note la cara */
    height: 170px;          /* todas iguales y más pequeñas */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.galeria img:hover {
    transform: scale(1.03);
}


/* Video placeholder */
.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 350px;
    margin: 40px auto;
    border: 2px dashed #aaa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.2em;
}
/* ======== RESPONSIVE CEREMONIAS ======== */
@media (max-width: 768px) {

    .galeria {
        gap: 10px;
    }

    .galeria img {
        width: 45%;         /* dos por fila */
        height: 140px;      /* más bajitas para que no se vean largotas */
        max-width: none;    /* que no limite por el max-width */
        border-radius: 10px;
    }

    .texto-ceremonia {
        font-size: 1em;
        padding: 0 15px;
    }

    .video-placeholder {
        height: 220px;
        font-size: 1em;
    }
}

/* Extra chico (celulares muy chicos tipo iPhone SE) */
@media (max-width: 480px) {

    .galeria img {
        width: 48%;         /* casi la mitad de la pantalla */
        height: 130px;
    }
}


/* Texto trayectoria */
.texto-trayectoria {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
}

/* Contenedores de videos */
.fila-videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Videos individuales */
.fila-videos video {
    width: 30%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* Texto eventos */
.texto-eventos {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
}

/* Fila de videos */
.fila-videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}


/* Videos */
.fila-videos video {
    width: 30%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Galería de fotos */
.galeria-eventos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.galeria-eventos img {
    width: 30%;
    border-radius: 12px;
    object-fit: cover;
    height: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Responsivo */
@media (max-width: 900px) {
    .fila-videos video {
        width: 45%;
    }
    .galeria-eventos img {
        width: 45%;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .fila-videos {
        flex-wrap: wrap;
    }
    .fila-videos video {
        width: 100%;
    }

    .galeria-eventos {
        flex-wrap: wrap;
    }
    .galeria-eventos img {
        width: 100%;
        height: auto;
    }
}
/* Texto trayectoria */
.texto-trayectoria {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
}

/* Fila de videos */
.fila-videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Videos individuales */
.fila-videos video {
    width: 30%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Galería de fotos trayectoria */
.galeria-trayectoria {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.galeria-trayectoria img {
    width: 30%;
    border-radius: 12px;
    object-fit: cover;
    height: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
 .fullscreen-menu {
    position: fixed;
    top: 70px; /* debajo del navbar */
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: #000; /* negro sólido */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500; /* debajo del navbar (1000) y sobre el resto */
     border-top: 2px solid rgba(255,255,255,0.35);
    border-bottom: 2px solid rgba(255,255,255,0.35);


}
.fullscreen-menu .menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important; /* Separación vertical entre los links */
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.fullscreen-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-menu a {
    color: white;
    font-size: 1.6em;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 0;
    width: 80%;
    text-align: center;
    border-bottom: 2px solid #F2B233;
}

.fullscreen-menu .menu-inner {
    margin-top: -100px; /* Ajustá entre -40 y -80 */
}



.fullscreen-menu a:hover {
    color: #F2B233; /* tu color maíz */
}

    .fila-videos video {
        width: 45%;
    }
    .galeria-trayectoria img {
        width: 45%;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .fila-videos {
        flex-wrap: wrap;
    }
    .fila-videos video {
        width: 100%;
    }

    .galeria-trayectoria {
        flex-wrap: wrap;
    }
    .galeria-trayectoria img {
        width: 100%;
        height: auto;
    }
}
.video-placeholder {
    width: 100%;
    max-width: 520px;    /* 🔥 achica el video */
    margin: 50px auto 30px;
    padding: 0 15px;
}

.video-placeholder video {
    width: 100%;
    height: 300px;       /* 🔥 menor altura */
    object-fit: cover;   /* evita rayas */
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* 📱 Celulares */
@media (max-width: 600px) {

    .video-placeholder {
        max-width: 90%;   /* más pequeño aún en mobile */
        margin-top: 40px;
        padding: 0 10px;
    }

    .video-placeholder video {
        height: 180px;    /* más bajo para no “escrachar” */
        object-fit: cover;
        border-radius: 10px;
    }
}
.video-card {
    width: 100%;
    height: 320px;           
    overflow: hidden;
    background: #f5f1e9;      /* relleno suave */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* ❗ NO recorta cabezas */
}
/* Video inferior centrado */
.video-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-center video {
    width: 300px;
    height: 300px;
    object-fit: contain;
    background: #171616;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .videos video {
        width: 100%;
    }
}

/* En mobile, que se apile */
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
@media (max-width: 1000px) {
    .hero {
        min-height: calc(70vh - 70px) !important;
    }
    .whatsapp-float {
      
        right: 10px !important;
        z-index: 5000 !important;
          bottom: 160px !important;
    }
}

/* Ajuste especial para dispositivos anchos y no tan altos (iPads en vertical) */
@media (min-width: 700px) and (max-aspect-ratio: 4/5) {
    .hero {
        min-height: 85vh !important;
    }
    .whatsapp-float {
      
        right: 40px !important;
        z-index: 5000 !important;
          bottom: 900px !important;
    }
}
