

/* =========================================
   1. VARIABLES & SETUP (NIVEL LUXURY FIRM)
   ========================================= */
:root {
    /* --- PALETA DE COLOR CORPORATIVA PREMIUM --- */
    --bg-deep-black: #050505;
    --bg-charcoal: #111111;
    --bg-surface: #181818;
    --bg-black: #0a0a0a; 

    /* Dorado Champaña / Bronce Refinado */
    --accent-gold: #C8A97E;
    --color-gold-solid: #C8A97E;
    
    /* Textos */
    --color-text-primary: #F0F0F0; 
    --color-text-secondary: #A3A3A3; 
    --color-text-muted: #666666; 

    /* Gradientes Dorados */
    --color-accent-gold: linear-gradient(135deg, #C8A97E 0%, #E6CFA1 50%, #B39260 100%);
    
    /* Configuración */
    --border-subtle: rgba(200, 169, 126, 0.15);
    --transition-cinematic: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --font-display: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
    
    --container-width: 1480px;

    /* Base64 Noise SVG */
    --noise-pattern: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="1"/%3E%3C/svg%3E');
}

/* =========================================
   2. RESET & GLOBAL STYLES
   ========================================= */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
    cursor: none !important; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
}

body {
    background-color: var(--bg-deep-black);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75; 
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    opacity: 1;
    transition: opacity 0.5s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* =========================================
   EFECTOS PREMIUM: GRANULADO Y ORBES DE LUZ
   ========================================= */
.noise-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; 
    background-image: var(--noise-pattern);
    opacity: 0.25; /* Reducido para mayor sutileza */
    mix-blend-mode: overlay; 
    pointer-events: none; 
}

main {
    position: relative;
    overflow: hidden; 
}

.premium-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; 
    filter: blur(90px); 
    mix-blend-mode: screen;
}

.orb-left { top: 15%; left: -10vw; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(200, 169, 126, 0.35) 0%, rgba(200, 169, 126, 0.05) 50%, transparent 20%); }
.orb-right { top: 45%; right: -15vw; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(200, 169, 126, 0.3) 0%, rgba(200, 169, 126, 0.05) 50%, transparent 20%); }
.orb-left-bottom { bottom: 10%; left: -15vw; width: 45vw; height: 45vw; background: radial-gradient(circle, rgba(200, 169, 126, 0.35) 0%, rgba(200, 169, 126, 0.05) 50%, transparent 20%); }

@media (max-width: 768px) {
    .premium-orb { filter: blur(70px); }
    .orb-left { width: 70vw; height: 70vw; left: -25vw; }
    .orb-right { width: 80vw; height: 80vw; right: -30vw; }
    .orb-left-bottom { width: 70vw; height: 70vw; left: -25vw; }
}

main, header, footer, .loader-shutter-wrapper, .cursor-dot, .cursor-outline { position: relative; z-index: 1; }

.bg-deep-black { background-color: var(--bg-deep-black); position: relative; z-index: 2; }
.bg-charcoal { background-color: var(--bg-charcoal); position: relative; z-index: 2; }
.text-gold { color: var(--color-gold-solid) !important; }

/* LENIS SCROLL STYLES */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ACCESSIBILITY & FOCUS STATES */
body.user-is-tabbing * { cursor: auto !important; }
body.user-is-tabbing .cursor-dot, 
body.user-is-tabbing .cursor-outline { display: none !important; }
*:focus-visible { outline: 1px solid var(--color-gold-solid) !important; outline-offset: 4px !important; border-radius: 2px; }

/* =========================================
   3. TYPOGRAPHY & LAYOUT UTILITIES
   ========================================= */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; color: #fff; line-height: 1.25; letter-spacing: 0.02em; }
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 clamp(15px, 4vw, 24px); position: relative; z-index: 2; }
.section-padding { padding: clamp(60px, 8vw, 120px) 0; }
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 80px); position: relative; z-index: 2; }
.section-overline { display: block; font-size: clamp(0.65rem, 2vw, 0.75rem); color: var(--color-gold-solid); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 15px; font-weight: 600; font-family: var(--font-body); }
.section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); color: #fff; position: relative; display: inline-block; padding-bottom: 20px; text-transform: none; line-height: 1.2; }
.section-subtitle { font-size: clamp(0.95rem, 3vw, 1.1rem); color: var(--color-text-secondary); margin-top: 15px; font-weight: 300; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0%; height: 1px; background: var(--color-gold-solid); transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.section-title.line-grow::after { width: 100%; }

/* UI PATTERNS */
.magnetic-el { display: inline-block; transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.cinematic-line-wrapper { overflow: hidden; display: block; }
.cinematic-line { display: block; transform: translateY(100%) skewY(10deg); opacity: 0; transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease; }
.cinematic-line.active { transform: translateY(0) skewY(0); opacity: 1; }

.premium-btn-sweep { position: relative; overflow: hidden; z-index: 1; }
.premium-btn-sweep::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000); z-index: -1; }
.premium-btn-sweep:hover::before { left: 100%; }
.premium-card-hover { background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.03); transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease; }
.premium-card-hover:hover { transform: translateY(-5px); border-color: var(--border-subtle); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }

/* CUSTOM CURSOR */
@media (pointer: fine) {
    body { cursor: none !important; }
    .cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background-color: var(--color-gold-solid); border-radius: 50%; pointer-events: none; z-index: 999999; transform: translate(-50%, -50%); }
    .cursor-outline { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid rgba(200, 169, 126, 0.4); border-radius: 50%; pointer-events: none; z-index: 999998; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background-color 0.3s; }
    body.hovering .cursor-outline { width: 60px; height: 60px; background: rgba(200, 169, 126, 0.05); border-color: var(--color-gold-solid); }
}

/* =========================================
   4. LOADER SHUTTER
   ========================================= */
.loader-shutter-wrapper { position: fixed; inset: 0; z-index: 100000; pointer-events: none; display: flex; justify-content: center; align-items: center; }
.shutter-col { position: absolute; top: 0; height: 100%; width: 34%; background-color: var(--bg-black); transform: translateY(0); will-change: transform; transition: transform 1.2s cubic-bezier(0.83, 0, 0.17, 1); z-index: 3; border-right: 1px solid rgba(255,255,255,0.02); }
.shutter-col:nth-child(1) { left: 0; }
.shutter-col:nth-child(2) { left: 33.333%; transition-delay: 0.1s; border-left: 1px solid rgba(255,255,255,0.01); }
.shutter-col:nth-child(3) { left: 66.666%; transition-delay: 0.2s; border-left: 1px solid rgba(255,255,255,0.01); }
.loader-brand-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--color-gold-solid); font-family: var(--font-display); font-size: clamp(1rem, 4vw, 1.5rem); letter-spacing: 0.15em; z-index: 4; white-space: nowrap; opacity: 1; transition: opacity 0.5s ease; }
body.loaded .shutter-col { transform: translateY(-100%); }
body.loaded .loader-brand-center { opacity: 0; }

/* =========================================
   5. HEADER & LOGO INDEPENDIENTE (OVERHANG)
   ========================================= */
.header { 
    position: fixed; top: 0; width: 100%; z-index: 1000; 
    padding: 10px 0 !important; /* Header super delgado */
    transition: all 0.4s ease; 
    background: linear-gradient(to bottom, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0) 100%); 
}
.header.scrolled { 
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); 
    border-bottom: 1px solid rgba(255,255,255,0.03); box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.header__container { 
    position: relative; 
    display: flex; 
    justify-content: flex-end; /* Empuja Nav a la derecha */
    align-items: center; 
    gap: clamp(20px, 4vw, 40px);
    min-height: 45px; 
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 clamp(15px, 4vw, 32px); 
}

/* Logo superpuesto e independiente del navbar */
.header__logo { 
    position: absolute; 
    left: clamp(15px, 4vw, 32px); 
    top: 0; 
    height: 0; 
    display: flex; 
    align-items: flex-start; 
    text-decoration: none; 
    z-index: 1005; 
}
.logo-img { 
    height: auto; width: auto; 
    max-height: clamp(75px, 10vw, 110px); /* Logo agrandado */
    transition: max-height 0.4s ease, filter 0.4s; 
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8)); 
    transform-origin: top left; 
}
.header.scrolled .logo-img { 
    max-height: clamp(55px, 8vw, 85px); /* Reduce un poco al scrollear pero sigue grande */
}

/* NAVEGACIÓN DESKTOP */
.header__nav { display: none; }
@media(min-width: 992px) { 
    .header__nav { display: block; } 
    .header__menu { display: flex; align-items: center; list-style: none; gap: 40px; } 
    .desktop-only { display: inline-block !important; }
    .mobile-only { display: none !important; }
}
@media (min-width: 992px) { .header__mobile-social { display: none !important; } }

.header__link { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: #ffffff; position: relative; padding: 10px 0; letter-spacing: 0.1em; transition: color 0.3s ease; text-decoration: none; display: inline-block; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.header__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--color-gold-solid); transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 0 10px var(--color-gold-solid); }
.header__link:hover::after, .header__link.active::after { width: 100%; }
.header__link:hover, .header__link.active { color: var(--color-gold-solid); text-shadow: 0 0 15px rgba(0,0,0,1); }

/* DROPDOWN DESKTOP */
.header__dropdown { position: relative; }
.header__dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; }
.header__submenu { position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%) translateY(10px); background: var(--bg-surface); border-top: 2px solid var(--color-gold-solid); border-radius: 0 0 2px 2px; min-width: 260px; padding: 10px 0; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8); pointer-events: none; list-style: none; z-index: 1100; }
.header__dropdown:hover .header__submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.header__submenu a { display: block; padding: 14px 24px; font-size: 0.85rem; color: #ccc; font-weight: 500; transition: 0.3s; letter-spacing: 0.5px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.02); }
.header__submenu a:hover { background: rgba(255,255,255,0.03); color: var(--color-gold-solid); padding-left: 30px; }
.header__submenu li:last-child a { border-bottom: none; }

/* CENTRADO OPTIMIZADO PARA CTA */
.header__cta { 
    display: inline-flex; align-items: center; justify-content: center; min-height: 44px; 
    padding: 2px 24px 0 calc(24px + 0.15em); border: 1px solid var(--border-subtle); 
    color: var(--color-gold-solid); background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); 
    font-size: 0.75rem; font-weight: 700; border-radius: 2px; text-transform: uppercase; 
    transition: 0.3s; letter-spacing: 0.15em; text-decoration: none; line-height: normal; 
}
.header__cta:hover { background: var(--color-gold-solid); color: var(--bg-deep-black); border-color: var(--color-gold-solid); box-shadow: 0 5px 20px rgba(200, 169, 126, 0.2); }

/* MOBILE NAV (OFF-CANVAS) */
.premium-toggle { display: none; background: none; border: none; padding: 0; z-index: 1002; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; flex-shrink: 0; cursor: pointer; }
.premium-toggle:hover { background: rgba(255,255,255,0.05); }
.hamburger-box { width: 28px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.header__toggle-line { width: 100%; height: 2px; background-color: var(--color-gold-solid); transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), opacity 0.3s ease; display: block; }
.premium-toggle.active .line-1 { transform: rotate(45deg) translate(6px, 6px); }
.premium-toggle.active .line-2 { opacity: 0; transform: translateX(-10px); }
.premium-toggle.active .line-3 { transform: rotate(-45deg) translate(5px, -6px); }

.header__overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }

@media(max-width: 991px) {
    .premium-toggle { display: flex !important; }
    .header__overlay { display: block; }
    .header__overlay.active { opacity: 1; pointer-events: auto; }
    .header__nav { display: block; position: fixed; top: 0; right: 0; width: 100%; max-width: 400px; height: 100vh; height: 100dvh; background: var(--bg-deep-black); box-shadow: -10px 0 30px rgba(0,0,0,0.8); border-left: 1px solid rgba(200, 169, 126, 0.1); z-index: 1001; transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column; }
    .header__nav.mobile-active { transform: translateX(0); }
    .header__nav-inner { width: 100%; height: 100%; overflow-y: auto; overflow-x: hidden; padding: clamp(80px, 15vw, 100px) clamp(20px, 6vw, 40px) 40px; display: flex; flex-direction: column; }
    .header__menu { list-style: none; display: flex; flex-direction: column; width: 100%; text-align: left; flex-grow: 1; margin: 0; padding: 0; }
    .header__menu > li { border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
    .header__link { font-family: var(--font-display); font-size: clamp(1.2rem, 5vw, 1.5rem) !important; padding: clamp(15px, 4vw, 20px) 0; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s; font-weight: 400; width: 100%; text-align: left; letter-spacing: 0.05em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; }
    .header__link::after { display: none; } 
    .header__nav.mobile-active .header__link { opacity: 1; transform: translateY(0); }
    .header__nav.mobile-active li:nth-child(1) > .header__link { transition-delay: 0.1s; }
    .header__nav.mobile-active li:nth-child(2) > .header__link { transition-delay: 0.15s; }
    .header__nav.mobile-active li:nth-child(3) > .header__link { transition-delay: 0.2s; }
    .header__nav.mobile-active li:nth-child(4) > .header__link { transition-delay: 0.25s; }
    .header__nav.mobile-active li:nth-child(5) > .header__link { transition-delay: 0.3s; }
    
    /* Mobile Dropdown */
    .header__mobile-social { display: block; }
    .header__dropdown ul.header__submenu { position: static !important; transform: none !important; left: 0 !important; margin: 0 !important; padding: 0 !important; width: 100% !important; box-sizing: border-box; background: transparent; box-shadow: none; min-width: auto; opacity: 1; visibility: visible; display: block; text-align: left; border-top: none; max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
    .header__dropdown ul.header__submenu li { width: 100%; border-bottom: none; }
    .header__dropdown ul.header__submenu a { padding: 12px 20px 12px 35px !important; text-align: left !important; width: 100%; box-sizing: border-box; display: block; font-family: var(--font-body); font-size: clamp(0.9rem, 3.5vw, 1rem); color: var(--color-text-secondary); opacity: 0; transform: translateY(-10px); border-bottom: 1px solid rgba(255,255,255,0.03); position: relative; }
    .header__dropdown ul.header__submenu a::before { content: ''; position: absolute; left: 15px !important; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; background: var(--color-gold-solid); border-radius: 50%; opacity: 0; transition: 0.3s; }
    .header__dropdown ul.header__submenu a:hover::before { opacity: 1; }
    .header__dropdown.dropdown-active ul.header__submenu { max-height: 500px; padding-bottom: 15px; }
    .header__dropdown.dropdown-active ul.header__submenu a { opacity: 1; transform: translateY(0); }
    .header__dropdown.dropdown-active > .header__link { color: var(--color-gold-solid); }
    .header__dropdown.dropdown-active > .header__link i { transform: rotate(180deg); }
    
    .header__mobile-social { margin-top: clamp(30px, 8vw, 50px); padding-top: clamp(20px, 5vw, 30px); border-top: 1px solid rgba(200, 169, 126, 0.2); opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease 0.4s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s; }
    .header__nav.mobile-active .header__mobile-social { opacity: 1; transform: translateY(0); }
    .mobile-social-title { display: block; font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-text-muted); margin-bottom: 20px; font-weight: 600; }
    .mobile-social-icons { display: flex; gap: 25px; }
    .mobile-social-icons a { color: #fff; font-size: 1.4rem; transition: color 0.3s ease, transform 0.3s ease; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.03); border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); }
    .mobile-social-icons a:hover { color: var(--bg-deep-black); background: var(--color-gold-solid); border-color: var(--color-gold-solid); transform: translateY(-3px); }
    .desktop-only { display: none !important; }
}

@media (max-width: 400px) {
    .header__nav { max-width: 85vw; }
    .header__nav-inner { padding-left: 20px; padding-right: 20px; }
    .header__link { font-size: 1.1rem !important; padding: 12px 0; }
    .header__dropdown ul.header__submenu a { padding: 10px 0 10px 10px; font-size: 0.85rem; }
    .mobile-social-icons { gap: 15px; }
    .mobile-social-icons a { width: 35px; height: 35px; font-size: 1.2rem; }
}

@media (max-width: 320px) {
    .header__nav { max-width: 90vw; }
    .header__link { font-size: 1rem !important; }
    .header__nav-inner { padding-left: 15px; padding-right: 15px; }
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero { height: 95vh; min-height: 550px; position: relative; overflow: hidden; }
.heroSwiper { width: 100%; height: 100%; }
.hero__background { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); animation: heroZoom 20s infinite alternate ease-in-out; }
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-deep-black) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.4) 100%); }
.hero__content { position: relative; z-index: 5;  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 80px clamp(15px, 4vw, 20px) 0; max-width: 100%; }

#pagina-principal .hero__content { padding-top: 100px; }
#pagina-accidente-laboral .hero__content { padding-top: 120px; }
#pagina-accidente-nautico .hero__content { padding-top: 120px; }
#pagina-accidente-transito .hero__content { 
    padding-top: clamp(120px, 15vh, 150px); 
}

/* Reducimos ligeramente los márgenes para ganar espacio vertical y que el botón suba */
#pagina-accidente-transito .hero__subtitle {
    margin-bottom: clamp(15px, 4vw, 25px);
}

#pagina-accidente-transito .hero__highlight {
    margin-bottom: clamp(20px, 5vw, 35px);
}
.hero__overline { display: block; font-size: clamp(0.7rem, 2vw, 0.85rem); text-transform: uppercase; letter-spacing: 0.3em; color: #ccc; margin-bottom: 25px; font-weight: 600; }
.hero__title { font-size: clamp(2.2rem, 8vw, 4.2rem); text-transform: uppercase; margin-bottom: clamp(15px, 4vw, 30px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 500; width: 100%; }
.hero__title--white { display: block; color: #fff; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.hero__title--gold { display: block; background: var(--color-accent-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 40px rgba(200,169,126,0.2)); padding-bottom: 5px; }
.hero__subtitle { font-family: var(--font-body); font-size: clamp(0.95rem, 3vw, 1.25rem); font-weight: 300; color: #d0d0d0; max-width: 720px; margin-bottom: clamp(20px, 6vw, 35px); line-height: 1.6; }

.hero__highlight { background: rgba(12, 12, 12, 0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(200, 169, 126, 0.15); border-left: 3px solid var(--color-gold-solid); border-radius: 2px; padding: clamp(20px, 4vw, 28px) clamp(20px, 5vw, 45px); margin-bottom: clamp(30px, 6vw, 45px); color: #fff; text-align: center; position: relative; overflow: hidden; width: 100%; max-width: 1000px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(200, 169, 126, 0.03); transform: translateY(20px); transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.6s ease; }
.hero__highlight:hover { box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), inset 0 0 40px rgba(200, 169, 126, 0.08); border-color: rgba(200, 169, 126, 0.3); }


.highlight-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(200, 169, 126, 0.05) 0%, transparent 60%); pointer-events: none; animation: slowGlow 8s infinite alternate ease-in-out; }
@keyframes slowGlow { 0% { transform: translate(0, 0); } 100% { transform: translate(5%, 5%); } }

.highlight-lead { font-family: var(--font-display); font-size: clamp(1.15rem, 4vw, 1.35rem); font-weight: 500; margin-bottom: 8px; letter-spacing: 0.02em; color: #ffffff; }
.highlight-body { font-family: var(--font-body); font-size: clamp(0.9rem, 3vw, 1.1rem); font-weight: 300; line-height: 1.6; margin-bottom: 12px; }
.highlight-action { font-family: var(--font-body); font-size: clamp(0.75rem, 2.5vw, 0.9rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #e0e0e0; }

.hero__list-wrapper { position: relative; height: clamp(45px, 8vw, 50px); margin-bottom: clamp(30px, 6vw, 50px); width: 100%; display: flex; justify-content: center; align-items: center; overflow: visible; }
.hero__list { list-style: none; padding: 0; margin: 0; position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.hero__list li { position: absolute; top: 50%; left: 50%; transform: translate(-50%, calc(-50% + 20px)); width: max-content; max-width: 95vw; font-size: clamp(0.65rem, 2.5vw, 0.85rem); text-transform: uppercase; color: #ffffff; letter-spacing: 0.15em; background: linear-gradient(90deg, rgba(200, 169, 126, 0.02), rgba(200, 169, 126, 0.08), rgba(200, 169, 126, 0.02)); border: 1px solid rgba(200, 169, 126, 0.15); padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 28px); border-radius: 2px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 0; visibility: hidden; transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s; pointer-events: none; box-shadow: 0 10px 20px rgba(0,0,0,0.5); text-align: center; line-height: 1.4; white-space: pre-wrap; }
.hero__list li.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%); pointer-events: auto; }
.hero__list li i { color: var(--color-gold-solid); font-size: 1.1rem; flex-shrink: 0; }
.hero__list li:hover { background: rgba(200, 169, 126, 0.05); border-color: var(--color-gold-solid); color: #fff; }

.hero__btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 16px clamp(20px, 5vw, 60px); background: var(--color-gold-solid); color: var(--bg-deep-black); font-weight: 700; text-transform: uppercase; border: none; border-radius: 2px; transition: 0.3s; position: relative; overflow: hidden; letter-spacing: 0.1em; text-decoration: none; font-size: clamp(0.8rem, 3vw, 1rem); width: auto; max-width: 100%; }
.hero__btn:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(200,169,126,0.3); }

.hero__extra-info { margin-top: clamp(20px, 5vw, 40px); font-size: clamp(0.7rem, 2.5vw, 0.85rem); color: #888; letter-spacing: 0.05em; font-weight: 400; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }

/* =========================================
   7. AUTHORITY (STATS/TRUST)
   ========================================= */
.authority-section { padding-top: clamp(40px, 8vw, 60px); padding-bottom: clamp(40px, 8vw, 60px); border-bottom: 1px solid rgba(255,255,255,0.02); }
.authority-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 30px); margin-top: clamp(30px, 6vw, 50px); }
.authority-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.authority-item i { font-size: clamp(1.5rem, 4vw, 1.8rem); color: var(--color-gold-solid); }
.authority-item span { font-size: clamp(0.8rem, 2.5vw, 0.9rem); color: var(--color-text-secondary); font-weight: 500; letter-spacing: 0.02em; line-height: 1.5; }
.authority-divider { width: 1px; height: 60px; background: var(--color-gold-solid); margin: 60px auto 0; opacity: 0.2; }

/* =========================================
   8. WHY US
   ========================================= */
.features-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(15px, 3vw, 2rem); counter-reset: feature-counter; }
.feature-box { padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem); border-radius: 0; text-align: left; position: relative; overflow: hidden; } 
.feature-box > * { position: relative; z-index: 1; }
.feature-box::before { counter-increment: feature-counter; content: "0" counter(feature-counter); position: absolute; top: -15px; right: -10px; font-family: var(--font-display); font-size: 8rem; color: rgba(255, 255, 255, 0.02); line-height: 1; font-weight: 700; z-index: 0; transition: color 0.5s ease, transform 0.5s ease; }
.feature-box:hover::before { color: rgba(200, 169, 126, 0.05); transform: scale(1.05); }
.feature-box__icon { font-size: 2rem; margin-bottom: 1.5rem; color: var(--color-gold-solid); opacity: 0.9; }
.feature-box__title { font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 1rem; color: #fff; line-height: 1.3; }
.feature-box__text { color: var(--color-text-secondary); font-size: clamp(0.85rem, 2.5vw, 0.95rem); line-height: 1.8; margin-bottom: 1.5rem; }
.feature-microcopy { display: block; font-size: 0.8rem; color: var(--color-gold-solid); font-style: italic; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }

/* =========================================
   9. PROCESS TIMELINE & GLOW ANIMATION
   ========================================= */
.process-timeline { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 20px); 
    margin-top: clamp(40px, 8vw, 60px); position: relative; 
}
.process-step { position: relative; z-index: 1; padding-right: 20px; }
.process-title { font-size: clamp(1rem, 3vw, 1.1rem); color: #fff; margin-bottom: 10px; line-height: 1.4; }
.process-desc { color: var(--color-text-secondary); font-size: clamp(0.85rem, 2.5vw, 0.9rem); line-height: 1.6; }

/* Desktop: Static Line & Solid Numbers */
.process-number { 
    font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); 
    color: var(--color-gold-solid); line-height: 1; margin-bottom: 20px; 
    background: var(--bg-deep-black); display: inline-block; padding-right: 15px; 
    opacity: 0.5; /* Estado base escritorio */
}

@media (min-width: 993px) {
    .process-timeline::before { content: ''; position: absolute; top: 30px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.05); z-index: 0; }
}

/* Mobile: Glow Animation */
@media (max-width: 992px) {
    .process-timeline { border-left: none !important; padding-left: 35px; position: relative; grid-template-columns: 1fr; gap: 40px; }
    .process-timeline::before { content: ''; position: absolute; top: 0; left: 10px; bottom: 0; width: 2px; background: rgba(255,255,255,0.05); z-index: 0; }
    /* Animated Line */
    .process-timeline::after { content: ''; position: absolute; top: 0; left: 10px; width: 2px; background: var(--color-gold-solid); box-shadow: 0 0 15px var(--color-gold-solid), 0 0 5px #fff; height: var(--scroll-progress, 0%); transition: height 0.1s linear; z-index: 1; }
    
    /* Dots */
    .process-step::before { content: ''; position: absolute; left: -31px; top: 18px; width: 12px; height: 12px; background: var(--bg-deep-black); border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; z-index: 2; transition: all 0.4s ease; }
    .process-step.step-active::before { background: var(--color-gold-solid); border-color: var(--color-gold-solid); box-shadow: 0 0 15px var(--color-gold-solid); transform: scale(1.3); }
    
    /* Animated Numbers */
    .process-number { padding-right: 0; background: transparent; opacity: 0.3; transition: all 0.4s ease; transform: scale(0.9); }
    .process-step.step-active .process-number { opacity: 1; text-shadow: 0 0 20px rgba(200, 169, 126, 0.8); transform: scale(1.1); }
}

/* =========================================
   10. STATS COUNTER
   ========================================= */
.stats-section { padding: clamp(40px, 8vw, 80px) 0; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 5vw, 2rem); text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-group { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 10px; }
.stat-number, .stat-symbol { font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 500; color: var(--color-gold-solid); line-height: 1; }
.stat-label { font-size: clamp(0.7rem, 2vw, 0.85rem); color: #888; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* =========================================
   11. PRACTICE AREAS (BLUEPRINT GRID)
   ========================================= */
.practice-areas { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.02); }
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); margin-top: clamp(30px, 6vw, 4rem); }
.practice-card { background: var(--bg-charcoal); position: relative; display: flex; flex-direction: column; min-height: 480px; padding: clamp(2rem, 5vw, 4rem); overflow: hidden; transition: background-color 0.6s ease; z-index: 1; }

.practice-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; filter: grayscale(100%) brightness(0.6) contrast(1.2); transform: scale(1); transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: -2; }
.practice-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,17,0) 0%, var(--bg-charcoal) 60%, var(--bg-deep-black) 100%); opacity: 1; transition: opacity 0.8s ease; z-index: -1; }

.practice-card:hover { background-color: var(--bg-deep-black); }
.practice-card:hover .practice-card__bg { opacity: 0.25; transform: scale(1.05); }
.practice-card:hover .practice-card__overlay { opacity: 1; }
.practice-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0%; background: var(--color-gold-solid); transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 5; }
.practice-card:hover::before { height: 100%; }

.practice-card__content { display: flex; flex-direction: column; height: 100%; position: relative; z-index: 2; }
.practice-card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: clamp(1.5rem, 4vw, 3rem); color: var(--color-gold-solid); }
.practice-num { font-family: var(--font-display); font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 400; letter-spacing: 0.1em; }
.practice-icon { font-size: clamp(1.5rem, 4vw, 1.8rem); opacity: 0.7; transition: transform 0.5s ease; }
.practice-card:hover .practice-icon { transform: scale(1.1); opacity: 1; }
.practice-card__body { flex-grow: 1; }
.practice-card__title { font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 2rem); color: #ffffff; line-height: 1.3; margin-bottom: 1.5rem; max-width: 95%; transition: color 0.4s ease; }
.practice-card__desc { font-family: var(--font-body); font-size: clamp(0.9rem, 2.5vw, 1.05rem); color: var(--color-text-secondary); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; transition: color 0.4s ease; }
.practice-card:hover .practice-card__title { color: var(--color-gold-solid); }
.practice-card:hover .practice-card__desc { color: #e0e0e0; }
.practice-card__cta { display: inline-flex; align-items: center; gap: 15px; color: #ffffff; font-family: var(--font-body); font-size: clamp(0.75rem, 2vw, 0.85rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; text-decoration: none; align-self: flex-start; padding-bottom: 8px; position: relative; transition: all 0.4s ease; min-height: 44px; }
.practice-card__cta::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 1px; background: var(--color-gold-solid); transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.practice-card__cta i { color: var(--color-gold-solid); font-size: 1.2rem; transition: transform 0.4s ease; }
.practice-card:hover .practice-card__cta { color: var(--color-gold-solid); }
.practice-card:hover .practice-card__cta::after { width: 100%; }
.practice-card:hover .practice-card__cta i { transform: translateX(8px); }

.practice-tags { list-style: none; padding: 0; margin: 0 0 2rem 0; display: flex; flex-wrap: wrap; gap: 8px; }
.practice-tags li { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--color-text-secondary); background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(200, 169, 126, 0.15); padding: 6px 12px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.4s ease; }
.practice-card:hover .practice-tags li { color: #fff; border-color: rgba(200, 169, 126, 0.6); background: rgba(200, 169, 126, 0.08); }
.practice-tags li:hover { background: var(--color-gold-solid) !important; color: var(--bg-deep-black) !important; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(200, 169, 126, 0.2); }

/* =========================================
   12. SUCCESS CASES (DOSSIER STYLE / SWIPER)
   ========================================= */
/* Estilos para el contenedor del Slider */
.success-cases .swiper { 
    width: 100%; 
    padding: 1rem 0 3.5rem 0; /* Espacio inferior para los puntitos */
    margin-top: clamp(20px, 4vw, 2rem); 
    z-index: 1; 
}

/* Forzar misma altura en todas las tarjetas del slider */
.success-cases .swiper-slide {
    height: auto; 
    display: flex;
}
.success-case-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.success-card__inner { 
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem); 
    background: var(--bg-surface); 
    border-radius: 0; 
    border: 1px solid rgba(255,255,255,0.02); 
    border-top: 2px solid var(--color-gold-solid); 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; /* Esto hace que ocupe todo el alto disponible */
    height: 100%; 
    position: relative; 
    overflow: hidden;
}

.badge-real-case { 
    background: rgba(200, 169, 126, 0.08); 
    color: var(--color-gold-solid); 
    padding: 6px 14px; 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600; 
    display: inline-block; 
    border: 1px solid var(--border-subtle); 
}

.success-card__title { 
    font-family: var(--font-body); 
    font-size: clamp(1.1rem, 3vw, 1.25rem); 
    margin: 1.5rem 0; 
    color: #fff; 
    line-height: 1.5; 
    font-weight: 500; 
}

.case-details p { 
    color: var(--color-text-secondary); 
    font-size: clamp(0.85rem, 2.5vw, 0.95rem); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 12px; 
    margin-bottom: 12px; 
    font-weight: 300; 
}
.case-details p strong { color: #fff; font-weight: 500; }
.case-details p:last-child { border-bottom: none; margin-bottom: 0;}

.success-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gold-solid);
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin-top: auto; /* Empuja el botón siempre hacia abajo */
    padding-top: 1.5rem;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.success-card__cta i {
    font-size: 1rem;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Línea sutil separadora arriba del botón */
.success-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease;
}

/* Efectos al hacer HOVER sobre toda la tarjeta */
.success-case-card:hover .success-card__cta {
    color: #ffffff;
}

.success-case-card:hover .success-card__cta i {
    transform: translateX(8px);
    color: var(--color-gold-solid);
}

.success-case-card:hover .success-card__cta::before {
    width: 100%;
    background: rgba(200, 169, 126, 0.4);
}

/* =========================================
   13. TEAM 
   ========================================= */
#equipo { padding-bottom: clamp(10rem, 12vw, 10rem) !important; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(15px, 4vw, 2rem); margin-top: clamp(30px, 6vw, 3rem); align-items: stretch; }
.team-card { background: var(--bg-surface); padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 4vw, 2rem); text-align: center; border: 1px solid rgba(255,255,255,0.02); border-bottom: 2px solid var(--border-subtle); display: flex; flex-direction: column; align-items: center; height: auto; min-height: 100%; }
.team-card:hover { border-bottom-color: var(--color-gold-solid); }
.team-card__image-box { width: clamp(100px, 25vw, 140px); height: clamp(100px, 25vw, 140px); margin: 0 auto 1.5rem; display: block; position: relative; flex-shrink: 0; }
.photo-style { border-radius: 50%; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition-cinematic); height: 100%; width: 100%; }
.team-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); transition: var(--transition-cinematic); }
.team-card:hover .photo-style { border-color: var(--color-gold-solid); box-shadow: 0 10px 30px rgba(200, 169, 126, 0.1); }
.team-card:hover .team-img { filter: grayscale(0%); transform: scale(1.05); }
.team-card__content { display: flex; flex-direction: column; flex-grow: 1; width: 100%; }
.team-card__name { color: #fff; font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 0.5rem; font-family: var(--font-display); font-weight: 500; word-wrap: break-word;}
.team-card__role { color: var(--color-gold-solid); font-size: clamp(0.7rem, 2vw, 0.8rem); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; display: block; margin-bottom: 1rem; }
.team-card__details { margin-top: auto; padding-top: 15px; font-size: clamp(0.75rem, 2.5vw, 0.85rem); color: var(--color-text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.team-card__line { width: 40px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto; transition: 0.3s; flex-shrink: 0; }
.team-card:hover .team-card__line { width: 80px; background: var(--color-gold-solid); }

/* =========================================
   14. TESTIMONIOS
   ========================================= */
#testimonios .swiper { width: 100%; margin: 0 auto; padding: 1rem 0 3rem; z-index: 1; }
.swiper-pagination-bullet { background: var(--color-text-secondary); opacity: 0.3; width: 8px; height: 8px; margin: 0 6px !important; }
.swiper-pagination-bullet-active { background: var(--color-gold-solid); opacity: 1; transform: scale(1.3); }
.swiper-pagination { position: relative !important; margin-top: 2rem; }
.testimonial-card { background: var(--bg-deep-black); border: 1px solid rgba(255,255,255,0.03); border-radius: 0; padding: clamp(2rem, 6vw, 3rem) clamp(1.5rem, 5vw, 2.5rem); min-height: 320px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.testimonial-card::after { content: "\f10e"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; top: 20px; right: 20px; font-size: 1.5rem; color: var(--color-gold-solid); opacity: 0.1; }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.review-info h3 { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: clamp(1rem, 3vw, 1.1rem); margin-bottom: 0.2rem; }
.review-location { display: block; font-size: clamp(0.7rem, 2vw, 0.8rem); color: var(--color-gold-solid); margin-top: 5px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;}
.review-text { color: var(--color-text-secondary); font-size: clamp(0.9rem, 3vw, 1.05rem); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; font-style: italic;}
.google-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: #666; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }

/* =========================================
   15. FAQ ACCORDION PREMIUM & ACCESSIBILITY
   ========================================= */
.faq-accordion { max-width: 900px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Actúa como botón principal independientemente de si es <button> (index) o <h3> (servicios) */
.faq-question {
    width: 100%; 
    text-align: left; 
    padding: clamp(15px, 4vw, 25px) 0; 
    background: transparent; 
    border: none; 
    color: #fff; 
    font-family: var(--font-body); 
    font-size: clamp(0.95rem, 3vw, 1.1rem); 
    font-weight: 500; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: color 0.3s ease; 
    line-height: 1.4; 
    margin: 0; 
    outline: none; 
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover { color: var(--color-gold-solid); }

/* Estado Focus Visible (Accesibilidad) */
.faq-question:focus-visible {
    outline: 2px solid var(--color-gold-solid) !important;
    outline-offset: -2px;
    background: rgba(200, 169, 126, 0.05);
    border-radius: 2px;
}

/* Animación y color del ícono "+" a "x" (Apunta solo al último icono para no rotar los iconos de la izquierda) */
.faq-question > i:last-child,
.faq-question .toggle-icon {
    font-size: 0.9rem; 
    color: var(--color-gold-solid); 
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease; 
    flex-shrink: 0; 
    margin-left: 15px;
}
.faq-question.active > i:last-child,
.faq-question.active .toggle-icon {
    transform: rotate(45deg) scale(1.2); 
    color: #ffffff;
}

/* Animación fluida de respuesta */
.faq-answer {
    max-height: 0; 
    overflow: hidden; 
    opacity: 0; 
    visibility: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, visibility 0.6s;
}

.faq-question.active + .faq-answer {
    opacity: 1; 
    visibility: visible;
}

button.faq-question {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
}

/* Modificador opcional si querés que los íconos de los pasos destaquen un poco más */
.step-item .faq-question span > i {
    background: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    padding: 8px;
    width: 35px !important;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-item:hover .faq-question span > i {
    background: var(--color-gold-solid);
    color: var(--bg-deep-black) !important;
}

/* El texto dentro de la respuesta (funciona para index y servicios) */
.faq-answer p { 
    padding-bottom: 25px; 
    color: var(--color-text-secondary); 
    font-size: clamp(0.85rem, 2.5vw, 0.95rem); 
    line-height: 1.8; 
    font-weight: 300; 
    padding-right: clamp(10px, 4vw, 40px); 
}

/* Destacar sutilmente y con animación las negritas (<strong>) */
.faq-answer p strong,
.faq-answer li strong,
.faq-answer-inner p strong,
.faq-answer-inner li strong {
    color: #ffffff; 
    font-weight: 500; 
    position: relative; 
    transition: color 0.4s ease;
}

/* Pseudo-subrayado elegante para los strong */
.faq-answer p strong::after,
.faq-answer li strong::after,
.faq-answer-inner p strong::after,
.faq-answer-inner li strong::after {
    content: ''; 
    position: absolute; 
    bottom: -2px; 
    left: 0; 
    width: 100%; 
    height: 1px;
    background-color: rgba(200, 169, 126, 0.3); 
    transition: background-color 0.4s ease, height 0.4s ease;
}

/* Efecto Hover sobre la tarjeta enciende sutilmente las palabras clave */
.faq-item:hover .faq-answer p strong,
.faq-item:hover .faq-answer li strong,
.faq-item:hover .faq-answer-inner p strong,
.faq-item:hover .faq-answer-inner li strong {
    color: var(--color-gold-solid);
}

.faq-item:hover .faq-answer p strong::after,
.faq-item:hover .faq-answer li strong::after,
.faq-item:hover .faq-answer-inner p strong::after,
.faq-item:hover .faq-answer-inner li strong::after {
    background-color: var(--color-gold-solid); 
    opacity: 0.6;
}

/* =========================================
   16. CTA Y MAPA SEO
   ========================================= */
.cta { padding: clamp(60px, 8vw, 120px) 0; position: relative; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); }
.cta__content { text-align: center; margin-bottom: clamp(30px, 6vw, 40px); }
.cta__title { font-size: clamp(1.8rem, 6vw, 3rem); color: #ffffff; margin-bottom: 20px; line-height: 1.2; font-weight: 500; }
.cta__subtitle { color: var(--color-text-secondary); font-size: clamp(0.9rem, 3vw, 1.2rem); max-width: 650px; margin: 0 auto; line-height: 1.6; font-weight: 300; }
.cta__action { text-align: center; margin-top: clamp(20px, 5vw, 40px); }
.btn-solid-gold { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 16px clamp(20px, 6vw, 45px); background: var(--color-gold-solid); color: var(--bg-deep-black); font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; border-radius: 2px; transition: 0.3s ease; box-shadow: 0 10px 30px rgba(200, 169, 126, 0.15); font-size: clamp(0.75rem, 2.5vw, 0.9rem); width: auto; max-width: 100%; text-align: center; }
.btn-solid-gold:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(200, 169, 126, 0.3); background: #dcc19a; }

.map-section { position: relative; width: 100%; height: clamp(300px, 50vw, 450px); background: #000; overflow: hidden; display: flex; flex-direction: column; }
.map-container { width: 100%; height: 100%; flex-grow: 1; position: relative; overflow: hidden; }
.map-bg { width: 100%; height: 100%; border: 0; filter: grayscale(100%) contrast(1.1) brightness(0.6); transition: filter 0.8s ease; }
.map-section:hover .map-bg { filter: grayscale(50%) contrast(1) brightness(0.8); }
.map-seo-banner { background: var(--bg-deep-black); text-align: center; padding: clamp(15px, 4vw, 25px) 20px; font-size: clamp(0.75rem, 2.5vw, 0.85rem); color: var(--color-text-secondary); letter-spacing: 0.05em; border-top: 1px solid var(--border-subtle); z-index: 2; line-height: 1.5; }
.map-seo-banner strong { color: #fff; font-weight: 500; }

/* =========================================
   17. FOOTER & MODAL SODITEC
   ========================================= */
.footer { background-color: var(--bg-deep-black); border-top: 1px solid var(--border-subtle); padding: clamp(60px, 8vw, 100px) 0 30px; position: relative; }

/* Grid Asimétrico */
.footer__grid { display: grid; grid-template-columns: 2.5fr 1fr 1.2fr 1.2fr; gap: clamp(40px, 5vw, 60px); margin-bottom: 20px; align-items: start; }

/* Nuevo Layout: Logo + Texto lado a lado */
.footer__brand-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.footer__logo { display: block; text-decoration: none; margin-bottom: 0; flex-shrink: 0; }
.logo-img-footer { max-height: clamp(75px, 8vw, 125px); width: auto; object-fit: contain; opacity: 0.9; } /* Logo mucho más grande */

.footer__brand-title { display: flex; flex-direction: column; line-height: 1.3; }
.footer__brand-title strong { font-family: var(--font-display); font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--color-gold-solid); font-weight: 600; letter-spacing: 0.02em; }
.footer__brand-title span { font-family: var(--font-body); font-size: clamp(0.7rem, 2vw, 0.8rem); color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* Bloque institucional */
.footer__institutional-box { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; }
.footer__institutional-text { color: var(--color-text-secondary); font-size: clamp(0.85rem, 2vw, 0.95rem); line-height: 1.85; font-weight: 300; max-width: 95%; text-align: justify; }

.footer__heading { color: #fff; font-size: clamp(0.9rem, 3vw, 0.95rem); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 25px; border-left: 3px solid var(--color-gold-solid); padding-left: 12px; line-height: 1; font-family: var(--font-body); }

/* Enlaces y listas */
.footer__links, .footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer__links a, .footer__contact-list a, .footer__contact-list span { 
    color: var(--color-text-secondary); text-decoration: none; transition: 0.3s ease; 
    font-size: clamp(0.85rem, 2.5vw, 0.95rem); font-weight: 400; display: inline-flex; align-items: flex-start; gap: 12px; padding: 8px 0; 
    line-height: 1.5;
}
.footer__links a i, .footer__contact-list i { font-size: 0.8rem; color: var(--color-gold-solid); margin-top: 4px; opacity: 0.8; transition: transform 0.3s; width: 15px; text-align: center; flex-shrink: 0; }
.footer__links a:hover, .footer__contact-list a:hover { color: #fff; transform: translateX(5px); }
.footer__links a:hover i { opacity: 1; transform: translateX(2px); }

/* SECCIÓN CENTRADA REDES SOCIALES */
.footer__social-center { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 30px; }
.footer__social-heading { color: var(--color-text-secondary); font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; margin-bottom: 20px; }
.footer__social-icons { display: flex; gap: 20px; }
.footer__social-icons a { display: flex; justify-content: center; text-decoration: none; align-items: center; width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); color: #fff; font-size: 1.2rem; transition: all 0.3s ease; }
.footer__social-icons a:hover { background: var(--color-gold-solid); color: var(--bg-deep-black); border-color: var(--color-gold-solid); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(200, 169, 126, 0.2); }

/* Copyright y Trigger Modal */
.footer__copyright { text-align: center; color: var(--color-text-muted); font-size: clamp(0.75rem, 2.5vw, 0.85rem); font-weight: 400; line-height: 1.8; }
.footer__separator { margin: 0 10px; color: var(--color-gold-solid); opacity: 0.5; }
.soditec-trigger { background: transparent; border: none; color: var(--color-gold-solid); font-family: inherit; font-size: inherit; cursor: pointer; padding: 0; font-weight: 600; transition: color 0.3s ease; position: relative; }
.soditec-trigger::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background: var(--color-gold-solid); transition: transform 0.3s ease; transform-origin: right; transform: scaleX(0); }
.soditec-trigger:hover { color: #fff; }
.soditec-trigger:hover::after { transform-origin: left; transform: scaleX(1); background: #fff; }

/* Modal Soditec Estilos (Igual que antes) */
.soditec-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s; }
.soditec-modal.active { opacity: 1; visibility: visible; pointer-events: auto; }
.soditec-modal__overlay { position: absolute; inset: 0; background: rgba(5,5,5,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.soditec-modal__content { position: relative; z-index: 1; background: var(--bg-charcoal); border: 1px solid rgba(255,255,255,0.05); border-top: 3px solid var(--color-gold-solid); padding: 45px 35px; width: 90%; max-width: 420px; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.9); transform: translateY(30px) scale(0.95); transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.soditec-modal.active .soditec-modal__content { transform: translateY(0) scale(1); }
.soditec-modal__close { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.05); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.3s; }
.soditec-modal__close:hover { background: var(--color-gold-solid); color: var(--bg-deep-black); transform: rotate(90deg); }
.soditec-modal__header { text-align: center; margin-bottom: 30px; }
.soditec-modal__header h3 { font-family: var(--font-body); font-size: 1.4rem; color: #fff; margin-bottom: 5px; }
.soditec-modal__header h3 span { color: var(--color-gold-solid); font-weight: 700; }
.soditec-modal__header p { font-size: 0.85rem; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.soditec-modal__contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.soditec-modal__contact a { display: flex; align-items: center; gap: 15px; padding: 16px 20px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); color: #fff; text-decoration: none; border-radius: 4px; font-weight: 500; font-size: 0.95rem; transition: 0.3s ease; }
.soditec-modal__contact i { color: var(--color-gold-solid); font-size: 1.2rem; width: 20px; text-align: center; }
.soditec-modal__contact a:hover { background: rgba(200, 169, 126, 0.08); border-color: rgba(200, 169, 126, 0.3); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* Responsive Footer */
@media(max-width: 1024px) {
    .footer__brand-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

@media (min-width: 993px) {
    .footer__col--links, 
    .footer__col--location, 
    .footer__col--contact {
        /* Calcula: Alto máximo del logo + margen inferior del logo */
        margin-top: calc(clamp(55px, 8vw, 85px) + 25px); 
    }
}
@media(max-width: 992px) { 
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 50px 30px; } 
    .footer__col--brand { grid-column: 1 / -1; } 
    .footer__institutional-text { max-width: 100%; text-align: left; }
    .footer__brand-header { flex-direction: row; align-items: center; }
}
@media(max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr; gap: 45px; }
    .footer__brand-header { flex-direction: column; align-items: flex-start; text-align: left; }
    .footer__institutional-text { text-align: left; }
    .footer__copyright span { display: block; margin-bottom: 8px; }
    .footer__separator { display: none; }
}




/* FLOATING BTNS */
.whatsapp-float, .back-to-top { position: fixed; width: clamp(45px, 10vw, 55px); height: clamp(45px, 10vw, 55px); border-radius: 50%; z-index: 1000; display: flex; justify-content: center; align-items: center; font-size: clamp(1.4rem, 4vw, 1.8rem); transition: 0.3s; border: none; cursor: pointer; text-decoration: none; }
.back-to-top { width: clamp(35px, 8vw, 45px) !important; height: clamp(35px, 8vw, 45px) !important; box-shadow: 0 5px 20px rgba(0,0,0,0.8); }
.whatsapp-float { box-shadow: 0 2px 15px rgb(39 211 103 / 30%); bottom: 20px; right: 15px; background: #25D366; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); }
.back-to-top { bottom: 20px; right: 20px; background: var(--bg-surface); color: #fff; border: 1px solid rgba(255,255,255,0.05); opacity: 0; visibility: hidden; transform: scale(0.5); font-size: 1.2rem; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: scale(1); }
.back-to-top:hover { background: var(--color-gold-solid); color: var(--bg-deep-black); border-color: var(--color-gold-solid); }

/* ANIMACIONES GLOBALES */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* =========================================
   18. RESPONSIVE ESTRUCTURAL (MEDIA QUERIES)
   ========================================= */

/* Desktop to Tablet (1200px) */
@media (max-width: 1200px) {
    .practice-card { padding: 3rem; min-height: 480px; }
}

/* =========================================
   ADAPTACIÓN PARA LAPTOPS (1366x768 / 1440x900)
   ========================================= */
@media (max-width: 1400px) and (max-height: 850px) {
    /* Reducimos el tamaño máximo del título (baja de 6.5rem a 4.5rem) */
    .hero__title {
        font-size: clamp(2rem, 6vw, 4.5rem);
        margin-bottom: 15px;
    }
    
    /* Subtítulo un poco más chico y con menos margen */
    .hero__subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
        max-width: 650px;
    }

    /* Achicamos el cuadro de highlight para que no ocupe tanto alto */
    .hero__highlight {
        padding: 15px 30px;
        margin-bottom: 30px;
    }
    .highlight-lead {
        font-size: 1.15rem;
        margin-bottom: 5px;
    }
    .highlight-body {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    /* Reducimos la altura del rotador de palabras */
    .hero__list-wrapper {
        height: 40px;
        margin-bottom: 30px;
    }
    
    /* Ajustes menores al botón y la info extra */
    .hero__btn {
        min-height: 42px;
        padding: 12px 40px;
        font-size: 0.85rem;
    }
    .hero__extra-info {
        margin-top: 25px;
    }
}

/* Tablet to Mobile (992px) */
@media(max-width: 992px) { 
    .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } 
    .features-container { grid-template-columns: repeat(2, 1fr); } 
    
    .practice-grid { grid-template-columns: 1fr; border: none; background: transparent; gap: 20px; }
    .practice-card { border: 1px solid rgba(255,255,255,0.05); padding: 3rem 2rem; min-height: auto; }
    .success-cases__grid { grid-template-columns: repeat(2, 1fr); } 
    .team__grid { grid-template-columns: repeat(2, 1fr); gap: clamp(10rem, 4vw, 10rem); } 
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; } 
    .footer__col:nth-child(2)::after { display: none; } 
    .footer__col { padding-right: 0; } 
    .footer__col::after { display: none; } 
    .header__cta { display: none !important; }
}

/* Mobile Standard (768px) */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } 
}

/* Small Mobile (576px) */
@media(max-width: 576px) { 
    .hero__content { padding-top: 60px; }
    .authority-grid { grid-template-columns: 1fr; gap: 30px; } 
    .features-container { grid-template-columns: 1fr; } 
    .success-cases__grid { grid-template-columns: 1fr; } 
    .team__grid { grid-template-columns: 1fr; gap: clamp(10rem, 4vw, 10rem); } 
    .footer__grid { grid-template-columns: 1fr; gap: 40px; } 
    .footer { text-align: left; } 
    .footer__contact-list li { align-items: center; }
}

/* =========================================
   19. ULTRA-MOBILE OPTIMIZATION (400px down to 320px)
   ========================================= */

@media (max-width: 400px) {
    .hero__title { font-size: 2.2rem !important; letter-spacing: -0.01em; }
    .hero__title--white { font-size: 1.2rem !important; }
    .hero__highlight { padding: 15px; margin-bottom: 25px; }
    .highlight-lead { font-size: 1.05rem; }
    .hero__list li { width: 100%; max-width: 100%; padding: 10px; white-space: normal; text-align: center; }
    .hero__btn, .btn-solid-gold { width: 100%; padding: 14px 15px; font-size: 0.75rem; }
    .hero__extra-info { flex-direction: column; align-items: center; gap: 8px; }
    
    .section-title { font-size: 1.6rem; }
    .practice-card { padding: 2rem 1.5rem; }
    .success-card__inner, .testimonial-card { padding: 2rem 1.5rem; }
    .footer__copyright span { display: block; margin-bottom: 5px; }
    .footer__separator { display: none; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 2rem !important; }
    .hero__title--white { font-size: 1.1rem !important; }
    .highlight-lead { font-size: 0.95rem; }
    .highlight-body { font-size: 0.85rem; line-height: 1.4; }
    .highlight-action { font-size: 0.7rem; }
    .hero__btn { padding: 12px 15px; font-size: 0.7rem; }
}

@media (max-width: 360px) {
    .hero__title { font-size: 1.8rem !important; letter-spacing: -0.02em; }
    .hero__title--white { font-size: 1rem !important; }
    .hero__subtitle { font-size: 0.8rem; margin-bottom: 20px; line-height: 1.4; }
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .faq-question { font-size: 0.9rem; padding: 15px 0; }
    .faq-answer p { font-size: 0.8rem; padding-right: 15px; }
}

@media (max-width: 320px) {
    .container { padding: 0 10px; }
    .hero__content { padding: 50px 10px 0; }
    .hero__title { font-size: 1.6rem !important; word-break: break-word; }
    .hero__title--white { font-size: 0.9rem !important; }
    .highlight-body { font-size: 0.75rem; }
    .hero__extra-info { font-size: 0.6rem; }
    .hero__list-wrapper { height: 70px; } 
    .hero__list li { font-size: 0.55rem; padding: 6px 8px; gap: 8px; }
    .practice-card__meta { flex-direction: column; align-items: flex-start; gap: 15px; }
    .practice-card__title { font-size: 1.3rem; }
    .practice-card__cta { font-size: 0.65rem; }
}

/* =========================================
   20. REGLAS PARA PÁGINAS INTERNAS (ACCIDENTES)
   ========================================= */

.hero--subpage { height: 70vh; min-height: 500px; display: flex; align-items: center; }

.text-block-premium {
    max-width: 900px; margin: 0 auto; background: rgba(24, 24, 24, 0.4);
    border: 1px solid rgba(255,255,255,0.03); border-left: 3px solid var(--color-gold-solid);
    padding: clamp(30px, 5vw, 50px); border-radius: 2px;
}
.text-block-premium p { color: var(--color-text-secondary); font-size: clamp(0.95rem, 2.5vw, 1.1rem); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.text-block-premium p:last-child { margin-bottom: 0; }

.faq-answer-inner { padding-bottom: 25px; }
.faq-answer-inner p { padding-bottom: 15px; }

.premium-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem 0; }
.premium-list li {
    position: relative; padding-left: 32px; margin-bottom: 16px;
    color: var(--color-text-secondary); line-height: 1.6; font-size: clamp(0.85rem, 2.5vw, 0.95rem); transition: color 0.3s ease;
}
.premium-list li i {
    position: absolute; left: 0; top: 5px; color: var(--color-gold-solid); font-size: 0.9rem;
    opacity: 0.8; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}
.premium-list li:hover { color: #ffffff; }
.premium-list li:hover i { transform: scale(1.15) translateX(3px); opacity: 1; }

.process-timeline--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .process-timeline--5 { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; } }
@media (max-width: 992px) { .process-timeline--5 { grid-template-columns: 1fr; } }

/* =========================================
   INDICADOR DE SCROLL (FLECHAS PREMIUM)
   ========================================= */
.scroll-indicator-position {
    position: absolute;
    bottom: clamp(10px, 12vh, 20px); /* Posición elevada */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.scroll-indicator-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Separación elegante entre texto y flechas */
    text-decoration: none;
    cursor: pointer;
}

.scroll-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

/* Contenedor de las flechas */
.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Diseño de cada flecha individual (Chevron) */
.scroll-arrows span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--color-gold-solid);
    border-right: 2px solid var(--color-gold-solid);
    transform: rotate(45deg);
    margin: -4px 0; /* Las acerca para formar la cascada */
    opacity: 0;
    animation: premiumArrows 2.5s infinite;
}

/* Retraso en la animación para lograr el efecto cascada (caída) */
.scroll-arrows span:nth-child(1) { animation-delay: 0s; }
.scroll-arrows span:nth-child(2) { animation-delay: 0.2s; }
.scroll-arrows span:nth-child(3) { animation-delay: 0.4s; }

/* Animación de destello y movimiento suave */
@keyframes premiumArrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Efectos Hover: Detiene la animación y enciende el color */
.scroll-indicator-wrapper:hover .scroll-text {
    color: var(--color-gold-solid);
}
.scroll-indicator-wrapper:hover .scroll-arrows span {
    animation-play-state: paused;
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
    transition: all 0.3s ease;
}

/* Ocultar en celulares horizontales si ocupa mucho espacio */
@media (max-height: 650px) {
    .scroll-indicator-position {
        display: none;
    }
}