/* ===== VARIABLES Y RESET ===== */
:root {
    --gold: #c5a044;
    --beige: #f5f0e3;
    --light-bg: #faf9f6;
    --dark: #1a1a1a;
    --font-serif: 'Prata', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.1, 0.15, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: #fff;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVEGACIÓN ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(8px);
    z-index: 100;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO CON IMAGEN ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Para cuando el navbar está en estado normal (transparente) */
.navbar:not(.scrolled) .logo-image {
    filter: brightness(0) invert(1); /* Hace el logo blanco si es oscuro */
}

/* Para cuando el navbar está scrolled (fondo oscuro) */
.navbar.scrolled .logo-image {
    filter: none; /* Mantiene los colores originales del logo */
}

.logo-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
    transition: var(--transition-smooth);
}

.logo-text:hover {
    letter-spacing: 6px;
}

/* Si quieres que el texto también cambie de color cuando scrollea */
.navbar.scrolled .logo-text {
    color: white; /* Mantiene el texto blanco */
}

/* Responsive */
@media (max-width: 968px) {
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
}

.logo-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
    border-right: 1px solid var(--gold);
    padding-right: 1rem;
    transition: var(--transition-smooth);
}

.logo-text:hover {
    letter-spacing: 6px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.nav-menu a:hover {
    color: white;
    border-bottom-color: var(--gold);
}
 /* ===== DROPDOWN MENU ===== */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-trigger {
            cursor: pointer;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            min-width: 180px;
            border-radius: 4px;
            padding: 0.5rem 0;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
            border: 1px solid rgba(197, 160, 68, 0.2);
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 5px);
        }
        
        .dropdown-menu li {
            margin: 0;
            padding: 0;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: none !important;
            white-space: nowrap;
            text-align: left;
        }
        
        .dropdown-menu a:hover {
            background: rgba(197, 160, 68, 0.1);
            color: white;
            padding-left: 2rem;
        }
        
        .dropdown-menu a.active {
            color: var(--gold);
            background: rgba(197, 160, 68, 0.05);
        }
        
        /* Flecha indicadora del dropdown */
        .dropdown-trigger::after {
            content: '▾';
            margin-left: 5px;
            font-size: 0.8rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .dropdown-trigger::after {
            transform: rotate(180deg);
        }
        
        /* Responsive para móvil */
        @media (max-width: 968px) {
            .dropdown {
                position: static;
            }
            
            .dropdown-menu {
                position: static;
                transform: none;
                background: transparent;
                backdrop-filter: none;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                display: none;
                padding: 0;
                margin-top: 0.5rem;
                border: none;
            }
            
            .dropdown:hover .dropdown-menu {
                display: block;
            }
            
            .dropdown-menu a {
                padding: 0.5rem 2rem;
                font-size: 0.75rem;
            }
            
            .dropdown-menu a:hover {
                padding-left: 2.5rem;
            }
        }
/* ===== HERO CON PARALLAX ===== */
/* ===== HERO CON PARALLAX - CORREGIDO ===== */
/* ===== HERO - VERSIÓN SIMPLIFICADA ===== */
/* ===== HERO - VERSIÓN ESTÁTICA ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a1a; /* color de fondo por si la imagen no carga */
}

.hero-horizontal-group {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;  /* Ajusta la altura vertical aquí */
    display: flex;
    align-items: center;  /* Centra verticalmente los elementos entre sí */
    gap: 30px;  /* Espacio entre la línea y el texto */
    z-index: 4;
    pointer-events: none;
}
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    color: white;
}

.gold-line {
    width: 2px;
    height: 190px;  /* Mantiene su largo actual */
    background-color: var(--gold);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(197, 160, 68, 0.6);
    /* ELIMINA margin: 0 auto; de aquí */
}

.scroll-hint {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    animation: bounce 2s infinite;
    margin-top: 20px;  /* Espacio entre la línea y el texto */
    /* ELIMINA position, bottom, left, transform de aquí */
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* ===== TARJETAS DE VIDEO FLOTANTES ===== */
.video-cards-container {
    position: absolute;
    bottom: 30px;        /* Separación del borde inferior */
    right: 30px;         /* Separación del borde derecho */
    z-index: 20;         /* Por encima del overlay pero debajo del menú (z-index:100) */
    display: flex;
    flex-direction: column; /* Apilamos las tarjetas verticalmente */
    gap: 15px;
    max-width: 280px;    /* Ancho máximo de las tarjetas */
    pointer-events: none; /* El contenedor no bloquea clicks, pero los enlaces sí */
}

.video-card {
    pointer-events: auto;   /* El enlace es clickeable */
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px); /* El mismo efecto del menú */
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 8px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    /* Animación de entrada AOS (ya la tenemos) */
}

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--gold);
    box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.3);
}

.video-card-image {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.video-card:hover .video-card-image {
    border-color: var(--gold);
}

.video-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card-image img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.9;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.play-icon svg {
    width: 18px;
    height: 18px;
    margin-left: 2px; /* Pequeño ajuste para centrar el triángulo */
}

.video-card:hover .play-icon {
    background-color: #b38f3b; /* Dorado un poco más oscuro */
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-card-info {
    flex-grow: 1;
    padding-right: 5px;
}

.video-card-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.video-card-title {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
    margin: 0;
}

/* ===== RESPONSIVE PARA LAS TARJETAS ===== */
@media (max-width: 768px) {
    .video-cards-container {
        bottom: 15px;
        right: 15px;
        max-width: 240px;
        gap: 10px;
    }

    .video-card {
        padding: 6px;
    }

    .video-card-image {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    .play-icon {
        width: 25px;
        height: 25px;
    }

    .play-icon svg {
        width: 14px;
        height: 14px;
    }

    .video-card-tag {
        font-size: 0.6rem;
    }

    .video-card-title {
        font-size: 0.8rem;
    }
}

/* Ajuste para móviles más pequeños */
@media (max-width: 480px) {
    .video-cards-container {
        position: static; /* Quitamos la posición absoluta */
        flex-direction: row; /* Las ponemos una al lado de la otra */
        justify-content: center;
        max-width: 100%;
        padding: 15px 15px 0 15px; /* Espacio dentro del hero, debajo del título */
        margin-top: 20px; /* Separación del contenido superior */
        background: transparent; /* Fondo transparente */
        flex-wrap: wrap;
    }

    .video-card {
        flex: 1 1 200px; /* Que crezcan pero tengan un ancho base */
        background: rgba(255, 255, 255, 0.9); /* Fondo un poco más sólido para legibilidad */
    }

    /* Para que no se superpongan con la línea dorada */
    .hero-horizontal-group {
        bottom: 120px; /* Aumentamos el espacio abajo para las tarjetas */
    }
}
/* ===== SECCIONES GENERALES ===== */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 5;
    background-color: white;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    opacity: 1 !important;
    transform: none !important;
    background-color: transparent; /* Opcional: quitar fondo blanco */
}

.section-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-header .number {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #2c2c2c;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 1rem auto 0;
}

/* ===== SLIDER / CARRUSEL ===== */
.slider-container {
    max-width: 1000px;
    margin: 2rem auto 3rem;
    overflow: hidden;  /* Esto OCULTA lo que esté fuera */
    position: relative;  /* Para posicionar los dots */
    border-radius: 8px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.slider-dots-container {
    position: absolute;
    bottom: 10px;  /* Ajusta esto para subir/bajar */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
    pointer-events: none;  /* Permite clickear a través del contenedor */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.15, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s linear;
}

.slide:hover img {
    transform: scale(1.1);
}

.slide-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    font-family: var(--font-serif);
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-left: 4px solid var(--gold);
    letter-spacing: 2px;
}


.slider-dots {
    display: inline-flex;  /* Cambiado a inline-flex para que el fondo se ajuste */
    justify-content: center;
    gap: 0.8rem;
    padding: 10px 20px;  /* Espacio interno para el fondo */
    background-color: rgba(0, 0, 0, 0.1);  /* Fondo semitransparente */
    border-radius: 30px;  /* Bordes redondeados */
    backdrop-filter: blur(4px);  /* Efecto de desenfoque */
    pointer-events: auto;  /* Reactiva los clicks para los dots */
}


.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 10px var(--gold);
}

/* ===== TEXTO DESCRIPTIVO PARA SECCIONES ===== */
.section-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
}

.description-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.3px;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.description-text.with-line {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    text-align: left;
    font-style: normal;
}

.description-text.with-line::before,
.description-text.with-line::after {
    display: none;
}


/* ===== NUEVA SECCIÓN: 3 FOTOS A FULL WIDTH ===== */
.section-fullwidth-techniques {
    background-color: var(--light-bg);
    padding: 2rem 0 5rem;
    width: 100%;
    overflow: hidden;
}

.fullwidth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 3rem 0;
    gap: 0;
}

.fullwidth-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.2;
    width: 100%;
    cursor: pointer;
}

.fullwidth-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.fullwidth-item:hover img {
    transform: scale(1.1);
}

.fullwidth-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.fullwidth-item:hover .fullwidth-caption {
    transform: translateY(0);
}

.fullwidth-caption h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.fullwidth-caption p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* ===== SECCIÓN BEIGE ===== */
.section-beige {
    background-color: var(--beige);
    padding: 2rem 1rem 5rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-more {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1rem 3rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

.btn-more:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 68, 0.4);
}

/* ===== GALERÍA ===== */
.section-gallery {
    padding: 2rem 1rem 5rem;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

/* ===== SECCIÓN CONTACTO ===== */
.section-contact {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 4rem 1rem;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1e1e1e;
    color: #aaa;
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .fullwidth-grid {
        grid-template-columns: 1fr;
    }
    
    .fullwidth-item {
        aspect-ratio: 16 / 9;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .slide-caption {
        font-size: 1.5rem;
        bottom: 1rem;
        left: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
  
    .gallery-grid img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .fullwidth-caption h3 {
        font-size: 1.5rem;
    }
    
    .fullwidth-caption p {
        font-size: 0.9rem;
    }
}
