/* Variables CSS Globales - PRO VERSION */
:root {
    --bg-dark: #050505;
    --bg-darker: #000000;
    --bg-glass: rgba(15, 15, 15, 0.75);
    --gold: #D4AF37;
    --gold-light: #FFDF73;
    --gold-dark: #aa8624;
    --paypal-blue: #0070ba;
    --text-white: #ffffff;
    --text-gray: #bbbbbb;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden; /* Evita el scroll durante el splash screen */
}

/* Splash Screen Premium */
.splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-svg {
    width: 90vw;
    max-width: 600px;
    height: 180px;
    overflow: visible;
}

.splash-signature-text {
    font-family: 'Alex Brush', cursive;
    font-size: 110px;
    fill: #D4AF37;
    stroke: #D4AF37;
    stroke-width: 0.5px;
    opacity: 0;
    transition: none; /* Dejamos que GSAP sea el dueño */
}

.splash-subtitle {
    margin-top: -15px;
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-gray);
    opacity: 0;
    transform: translateY(15px);
}

/* Las animaciones de revelado ahora se manejan en script.js con GSAP para mayor velocidad */


@keyframes fadeUpSplash {
    to { opacity: 0.8; transform: translateY(0); }
}


/* Swiper Gallery - Elite Mode */
.main-gallery-swiper {
    padding: 20px 0 60px;
    margin-top: 50px;
}

.category-slide {
    width: 380px;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #111;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.category-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: brightness(0.7) contrast(1.1);
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px;
    z-index: 2;
    text-align: left;
}

.category-info h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-info p {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.05);
    transition: var(--transition);
}

/* Hover Effects Card */
.category-slide:hover {
    transform: translateY(-15px) scale(1.02);
}

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

.category-slide:hover .watch-btn {
    background: var(--gold);
    color: var(--bg-darker);
}

/* Swiper Pagination & Navigation */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    background: rgba(0,0,0,0.5);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: var(--text-gray) !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 5px !important;
}


/* Aura Diamante Natural (Suave y Atrapante) */
.diamond-aura {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.diamond-aura::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: -1;
    animation: naturalBreathe 12s infinite alternate ease-in-out;
}

@keyframes naturalBreathe {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.1; }
}

/* Sparkles (Destellos Aleatorios) */
.sparkle-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 5;
}

.sparkle {
    position: absolute;
    width: 2px; height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--gold);
    animation: sparkle-anim 2.5s ease-in-out forwards;
}

@keyframes sparkle-anim {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

/* Firma SVG: Aura de Tinta Fluorescente */
.glow-signature {
    filter: drop-shadow(0 0 2px rgba(212,175,55,0.4));
    animation: naturalSignatureAura 15s infinite ease-in-out;
}

@keyframes naturalSignatureAura {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(212,175,55,0.3)) brightness(1); }
    50% { filter: drop-shadow(0 0 35px rgba(212,175,55,0.7)) brightness(1.15); }
}

@keyframes fadeUpSplash {
    to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-gold {
    color: var(--gold);
    display: inline-block;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glow Effects */
.text-glow {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
.image-glow {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

.text-gray { color: var(--text-gray); }
.text-white { color: var(--text-white); }
.text-sm { font-size: 0.9rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.pb-3 { padding-bottom: 1rem; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.dark-bg {
    background-color: var(--bg-darker);
}

.section-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-sub {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}


.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn i { margin-right: 8px; font-size: 1.1rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--bg-darker);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-paypal {
    background: linear-gradient(135deg, #003087, #0070ba);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 112, 186, 0.4);
}
.btn-paypal:hover {
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-nav {
    background-color: var(--gold);
    color: var(--bg-dark) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}
.btn-nav:hover {
    background-color: var(--gold-light);
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
}
.navbar.scrolled {
    padding: 12px 0;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; letter-spacing: 2px; }
.logo span { color: var(--gold); }
.logo-signature { 
    max-width: 180px; 
    display: flex;
    align-items: center;
}

.header-svg-signature {
    width: 100%;
    height: 40px;
    overflow: visible;
}

.nav-links { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-links li a { color: var(--text-white); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links li a:not(.btn-nav):hover { color: var(--gold); }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    border-left: 1px solid var(--glass-border);
    padding-left: 20px;
}

.lang-btn {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.lang-btn.active {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.lang-sep {
    color: var(--glass-border);
    font-size: 0.9rem;
    cursor: default;
}

/* Transición manual I18N manejada desde JS inline */
[data-i18n] {
    transition: opacity 0.3s ease;
}

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--gold); }

/* Hero Section Premium */
.hero-premium {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
}

.hero-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 6s linear; /* Ken Burns Effect */
}

.hero-slider .slide.slide-active {
    opacity: 1;
    transform: scale(1.08); /* Slow zoom in */
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 1000px;
    z-index: 10;
    padding-top: 60px;
}

.premium-title {
    font-size: 5vw;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255,255,255,0.1), 0 0 20px rgba(212,175,55,0.3);
    letter-spacing: -1px;
}

/* Signature in Hero using SVG */
.hero-svg-signature {
    width: 250px;
    height: 70px;
    overflow: visible;
}
.hero-signature-text {
    font-family: 'Alex Brush', cursive;
    font-size: 60px;
    fill: transparent;
    stroke: var(--gold);
    stroke-width: 1px;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawHero 1.8s ease forwards 0.8s, fillGolden 0.5s ease 2.3s forwards, glowPulse 2s infinite 2.8s alternate;
}

.footer-signature-text {
    font-family: 'Alex Brush', cursive;
    font-size: 55px;
    fill: var(--gold);
    stroke: none;
}

@keyframes drawHero {
    0% { stroke-dashoffset: 600; }
    100% { stroke-dashoffset: 0; }
}

/* Animations for initial load */
.gs-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpHero 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Experiencia / Emocional */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.artist-portrait-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0) 100%);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.artist-portrait {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    filter: contrast(1.05) brightness(1.02); /* Sutil mejora de "estudio" */
    transition: var(--transition);
}

.artist-portrait-frame::before {
    content: "";
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 35px;
    pointer-events: none;
    opacity: 0.5;
}

.artist-portrait-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.artist-portrait-frame:hover .artist-portrait {
    filter: contrast(1.1) brightness(1.05);
}

.emotional-quote {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    font-family: var(--font-heading);
    font-style: italic;
}


/* Cinematic Expo Master Gallery - Categorized */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 3rem auto 4rem;
    max-width: 1000px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.cinematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.cinematic-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    background: #000;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 3;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.cinematic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s ease;
}

.cinematic-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    opacity: 0.8;
    transition: var(--transition);
    z-index: 1;
}

.cinematic-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px 25px;
    z-index: 2;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.cinematic-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(15px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.cinematic-desc {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
}

.cinematic-card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    z-index: 10;
}

.cinematic-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.cinematic-card:hover .cinematic-overlay {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(212,175,55,0.15) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.2) 100%);
}

.cinematic-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.cinematic-card:hover .cinematic-title {
    transform: translateY(0);
    opacity: 1;
    color: var(--gold);
}

.cinematic-card:hover .cinematic-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Instrumentos Chips */
.instruments-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.chip i { color: var(--gold); font-size: 1.2rem; }
.chip:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Services Grid Premium (6 Cards) */
.pro-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.service-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card-premium:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    opacity: 1;
}

.service-card-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-card-premium p {
    color: var(--text-gray);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-service {
    width: 100%;
    margin-top: auto;
}

/* Servicios */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-card { position: relative; border-radius: 12px; overflow: hidden; height: 350px; display: flex; align-items: flex-end; }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; z-index: 1; filter: brightness(0.5); }
.service-card:hover .card-bg { transform: scale(1.08); filter: brightness(0.3); }
.card-content { position: relative; z-index: 2; padding: 25px; width: 100%; background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); transform: translateY(10px); transition: var(--transition); }
.service-card:hover .card-content { transform: translateY(0); }
.card-content h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--gold); font-family: var(--font-heading); }
.card-content p { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0px; opacity: 0; transition: var(--transition); }
.service-card:hover .card-content p { opacity: 1; }

/* Testimonios */
.testimonial-carousel { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-item { display: none; animation: fadeIn 0.8s ease; }
.testimonial-item.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.icon-quote { font-size: 3rem; margin-bottom: 20px; opacity: 0.3; }
.test-text { font-size: 1.6rem; font-style: italic; margin-bottom: 25px; color: var(--text-white); line-height: 1.4; font-family: var(--font-heading); font-weight: 300;}
.test-author { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px;}

/* Final CTA */
.cta-final { padding: 120px 0; background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(5,5,5,0) 100%), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; background-attachment: fixed; }
.cta-buttons-wrapper { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-btn { min-width: 250px; }

/* Footer & Branding LuxeWave */
footer { 
    background-color: var(--bg-darker); 
    padding: 80px 0 30px; 
    border-top: 1px solid var(--glass-border); 
}

.footer-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 30px; 
    margin-bottom: 50px;
}

.footer-social { display: flex; gap: 20px; }
.footer-social a { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 45px; height: 45px; 
    background-color: var(--bg-glass); 
    border: 1px solid var(--glass-border); 
    border-radius: 50%; 
    color: var(--text-white); 
    font-size: 1.2rem; 
    transition: var(--transition);
}

.footer-social a:hover { 
    background-color: var(--gold); 
    color: var(--bg-darker); 
    transform: translateY(-5px); 
}

.footer-line-sep {
    height: 1px;
    width: 80px;
    background: var(--gold);
    margin: 0 auto 35px;
    opacity: 0.3;
}

.footer-branding {
    margin-bottom: 50px;
}

.footer-branding p {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.luxewave-highlight {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
    display: inline-block;
    margin-top: 10px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.2));
}

/* Modal Video */
.modal {
    display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95); backdrop-filter: blur(15px);
}

.modal-content {
    position: relative; margin: 4% auto; width: 92%; max-width: 1100px;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.2); border-radius: 12px; overflow: hidden;
}

.close-modal {
    color: var(--text-white); position: absolute; top: 20px; right: 25px;
    font-size: 40px; font-weight: 300; cursor: pointer; transition: 0.3s;
    z-index: 10001;
}

.close-modal:hover { color: var(--gold); transform: rotate(90deg); }

.video-container-modal { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container-modal iframe { position: absolute; top:0; left: 0; width: 100%; height: 100%; }

/* Responsive Design */
@media (max-width: 992px) {
    .exp-grid { grid-template-columns: 1fr; }
    .exp-image { order: -1; margin-bottom: 30px; }
    .hero-title { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 85%; max-width: 320px;
        background: rgba(8,8,8,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -15px 0 50px rgba(0,0,0,0.9); border-left: 1px solid var(--glass-border);
    }
    .nav-links.active { right: 0; }
    .hero-title { font-size: 2.6rem; }
    .section-heading { font-size: 2.4rem; }
    .footer-content { justify-content: center; text-align: center; }
    .footer-branding p { font-size: 0.75rem; }
}

/* Footer Bottom - Pagos y Copy */
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.payment-methods {
    margin-bottom: 25px;
}

.payment-methods p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 15px;
    opacity: 0.7;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.8;
}

.payment-icons i {
    transition: var(--transition);
    cursor: default;
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.2));
}

.payment-icons i:hover {
    transform: translateY(-5px);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(212,175,55,0.6));
}

@media (max-width: 768px) {
    .payment-icons {
        gap: 15px;
        font-size: 1.5rem;
    }
}

