:root {
    --navy: #081b33;
    --navy-deep: #041427;
    --navy-light: #102b4d;
    --navy-mid: #13345d;
    --gold: #c8a96b;
    --gold-light: #d7b77b;
    --gold-pale: #e8d5a8;
    --white: #ffffff;
    --light: #f5f7fa;
    --blue-soft: #e8eef6;
    --blue-mid: #c8d9ef;
    --blue-card: #0c2444;
    --blue-surface: #f0f5fb;
    --text: #475467;
    --title: #101828;
    --border: #e4e7ec;

    --shadow-sm: 0 10px 30px rgba(16, 24, 40, 0.05);
    --shadow-md: 0 20px 50px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 35px 80px rgba(16, 24, 40, 0.12);
    --shadow-gold: 0 12px 40px rgba(200, 169, 107, 0.25);

    --radius: 20px;
    --radius-lg: 28px;
    --transition: 0.35s ease;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--navy-deep);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

/* ─── HEADER ─── */

.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    z-index: 9999;
    background: rgba(8, 27, 51, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.site-header.scrolled {
    background: rgba(8, 27, 51, 0.97);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.nav-actions a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 10001;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
}

.menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 20, 39, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ─── HERO ─── */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    padding: 140px 0 72px;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #041427 0%, #072345 50%, #0a2d52 100%);
    background-size: 200% 200%;
    animation: heroGradient 18s ease infinite;
}

.hero-bg-grid {
    position: absolute;
    inset: -1px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 15%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 15%, transparent 72%);
    animation: gridDrift 30s linear infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.5);
    box-shadow: 0 0 8px rgba(200, 169, 107, 0.4);
    animation: particleFloat var(--dur, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.hero-particles span:nth-child(1) { top: 18%; left: 12%; --dur: 9s; --delay: 0s; }
.hero-particles span:nth-child(2) { top: 65%; left: 8%; --dur: 11s; --delay: 1s; }
.hero-particles span:nth-child(3) { top: 30%; left: 78%; --dur: 10s; --delay: 2s; }
.hero-particles span:nth-child(4) { top: 72%; left: 85%; --dur: 12s; --delay: 0.5s; }
.hero-particles span:nth-child(5) { top: 45%; left: 55%; --dur: 8s; --delay: 1.5s; }
.hero-particles span:nth-child(6) { top: 85%; left: 42%; --dur: 13s; --delay: 3s; }
.hero-particles span:nth-child(7) { top: 12%; left: 62%; --dur: 9s; --delay: 2.5s; }
.hero-particles span:nth-child(8) { top: 55%; left: 28%; --dur: 10s; --delay: 0.8s; }

.hero-bg-glow {
    position: absolute;
    width: min(900px, 90vw);
    height: 480px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(200, 169, 107, 0.14) 0%, transparent 65%);
    filter: blur(40px);
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -280px;
    right: -200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
    animation: float1 12s ease-in-out infinite;
    will-change: transform;
}

.hero-bg-circle-2 {
    width: 450px;
    height: 450px;
    left: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.14), transparent 70%);
    animation: float2 14s ease-in-out infinite;
    will-change: transform;
}

.hero-bg-circle-3 {
    width: 300px;
    height: 300px;
    top: 35%;
    right: 8%;
    background: radial-gradient(circle, rgba(100, 180, 255, 0.06), transparent 70%);
    animation: float3 10s ease-in-out infinite;
    will-change: transform;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: heroFadeUp 0.8s ease both;
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: badgeShine 5s ease-in-out infinite;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(200, 169, 107, 0.7);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(1.9rem, 3.8vw, 2.85rem);
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 20px;
    animation: heroFadeUp 0.8s ease 0.12s both;
}

.hero-title-accent {
    display: block;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 55%, var(--gold-pale) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 7s ease-in-out infinite;
}

.hero-content p {
    max-width: 680px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    animation: heroFadeUp 0.8s ease 0.24s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s ease 0.36s both;
}

.hero-trust--static {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-trust-marquee {
    display: none;
    margin-top: 36px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.hero-trust-marquee .trust-item {
    flex-shrink: 0;
    animation: none;
    white-space: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: trustFadeUp 0.7s ease calc(0.5s + var(--i) * 0.08s) both;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 169, 107, 0.3);
}

.trust-item i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* ─── BOTONES ─── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #a8894f);
    background-size: 200% 200%;
    color: var(--navy-deep);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
}

.btn-primary:hover::after {
    transform: translateX(130%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(200, 169, 107, 0.4);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(200, 169, 107, 0.4);
    transform: translateY(-3px);
}

/* ─── SECCIONES GLOBALES ─── */

section {
    padding: 96px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading span {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    position: relative;
}

.section-heading span::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.section-heading.visible span::after,
.section-heading.reveal.visible span::after {
    transform: scaleX(1);
}

.mobile-section-label {
    display: none;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    padding-left: 4px;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    color: var(--title);
    line-height: 1.25;
    font-weight: 700;
    max-width: 720px;
    margin: 0 auto;
}

.section-heading.light span {
    color: var(--gold-light);
}

.section-heading.light h2 {
    color: var(--white);
}

.section-text {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text);
}

/* ─── INTRO ─── */

.intro-section {
    background: var(--white);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ─── STATS ─── */

.stats-section {
    background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);;
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200, 169, 107, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 107, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.12), rgba(200, 169, 107, 0.04));
    border: 1px solid rgba(200, 169, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background var(--transition);
    animation: iconBob 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.4s);
}

.stat-card:hover .stat-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.2), rgba(200, 169, 107, 0.08));
}

.stat-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ─── ÁREAS ─── */

.areas-section {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    padding-top: rem;   /* ← Espacio para que el número no tape el contenido */
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;   /* ← Permitir que el número sobresalga */
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.area-card:hover::before {
    opacity: 1;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 107, 0.25);
}


.area-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.area-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background var(--transition), transform var(--transition);
}

.area-card:hover .area-icon {
    background: linear-gradient(135deg, var(--gold), #a8894f);
    color: var(--navy-deep);
    transform: scale(1.05);
}

.area-number {
    position: absolute;
    top: 0.6rem;       
    left: 92%;
    transform: translateX(-50%);
    color: #a8894f;
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1;
    
    z-index: 5;
}

.area-card h3 {
    color: var(--navy);
    margin-bottom: 14px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
}

.area-card p {
    margin-bottom: 24px;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.7;
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.92rem;
    transition: gap 0.3s, color 0.3s;
}

.area-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.area-card:hover .area-link {
    color: var(--navy);
}

.area-card:hover .area-link i {
    transform: translateX(4px);
}

/* ─── DIFERENCIALES ─── */

.advantages {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.advantages-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(200, 169, 107, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.advantages .container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 26px;
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.4), transparent, rgba(200, 169, 107, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 169, 107, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 18px;
    transition: background var(--transition), transform var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: rgba(200, 169, 107, 0.22);
    transform: scale(1.06);
}

.advantage-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ─── CTA ─── */

.cta-section {
    text-align: center;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200, 169, 107, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 20%, rgba(8, 27, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    animation: ctaPulse 5s ease-in-out infinite;
}

.cta-section h2 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.25;
}

.cta-section p {
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    color: var(--text);
}

/* ─── FOOTER ─── */

.site-footer {
    background: #061321;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.8;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.site-footer h4 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.site-footer h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin-top: 10px;
}

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.site-footer a:hover {
    color: var(--gold);
    transform: scale(1.07) translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.site-footer li i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 30px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link-small {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link-small:hover {
    color: var(--gold) !important;
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* ─── SCROLL REVEAL ─── */

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(4px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s ease;
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-left {
    transform: translateX(-40px) scale(0.97);
}

.reveal-left.visible {
    transform: translateX(0) scale(1);
}

.reveal-right {
    transform: translateX(40px) scale(0.97);
}

.reveal-right.visible {
    transform: translateX(0) scale(1);
}

/* ─── ANIMACIONES HERO ─── */

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(0.5); opacity: 0; }
    20% { opacity: 0.8; }
    50% { transform: translate(20px, -30px) scale(1); opacity: 0.6; }
    80% { opacity: 0.4; }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes btnGlow {
    0%, 100% { background-position: 0% 50%; box-shadow: 0 8px 30px rgba(200, 169, 107, 0.3); }
    50% { background-position: 100% 50%; box-shadow: 0 12px 40px rgba(200, 169, 107, 0.45); }
}

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: 0 24px 60px rgba(200, 169, 107, 0.15), var(--shadow-md); }
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -20px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 18px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(-10px, 15px); opacity: 0.75; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes trustFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes badgeShine {
    0%, 75%, 100% { transform: translateX(-120%); }
    90% { transform: translateX(120%); }
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(200, 169, 107, 0.5); }
    50% { box-shadow: 0 0 14px rgba(200, 169, 107, 0.9); }
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ─── ACCESIBILIDAD ─── */

@media (prefers-reduced-motion: reduce) {
    .hero-bg::before,
    .hero-bg-grid,
    .hero-bg-glow,
    .hero-bg-circle,
    .hero-particles span,
    .hero-badge,
    .hero-badge-dot,
    .hero-badge::after,
    .hero-title-accent,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .trust-item,
    .marquee-track,
    .btn-primary,
    .stat-icon,
    .cta-inner,
    .reveal {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* ─── TABLET ─── */

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid .area-card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── MOBILE NAV + TABLET ─── */

@media (max-width: 991px) {
    .site-header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .header-inner {
        height: 68px;
    }

    .logo img {
        height: 48px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        inset: 0;
        left: auto;
        right: 0;
        width: min(340px, 88vw);
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 36px 48px;
        border-radius: 0;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
        z-index: 10000;
        gap: 40px;
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav a {
        display: block;
        padding: 18px 0;
        font-size: 1.05rem;
        font-weight: 600;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a.active {
        color: var(--gold);
        padding-left: 12px;
        border-left: 3px solid var(--gold);
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
    }

    .nav-actions a {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .site-header.scrolled {
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    }

    /* Hero tablet/mobile */
    .hero {
        padding: 108px 0 56px;
        text-align: left;
    }

    .hero-content {
        text-align: left;
        max-width: none;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 16px;
        letter-spacing: 0.3px;
    }

    .hero-content h1 {
        font-size: clamp(1.65rem, 6vw, 2.2rem);
    }

    .hero-title-accent {
        display: inline;
    }

    .hero-content p {
        margin-left: 0;
        margin-right: 0;
        font-size: 0.98rem;
    }

    .hero-buttons {
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust--static {
        display: none;
    }

    .hero-trust-marquee {
        display: block;
    }

    /* Horizontal scroll sections */
    .mobile-section-label {
        display: block;
    }

    .scroll-row {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 4px 4px 20px;
        margin: 0 -4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .scroll-row::-webkit-scrollbar {
        display: none;
    }

    .scroll-row::after {
        content: '';
        flex: 0 0 4px;
    }

    .stats-grid.scroll-row .stat-card {
        flex: 0 0 min(78vw, 280px);
        scroll-snap-align: start;
        text-align: left;
        padding: 28px 24px;
    }

    .stats-grid.scroll-row .stat-icon {
        margin: 0 0 16px;
    }

    .areas-grid.scroll-row {
        grid-template-columns: unset !important;
    }

    .areas-grid.scroll-row .area-card {
        flex: 0 0 min(85vw, 320px);
        scroll-snap-align: start;
    }

    .areas-grid.scroll-row .area-card:last-child {
        grid-column: unset;
        max-width: none;
        margin: 0;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading span::after {
        margin: 10px 0 0;
    }

    .section-heading h2 {
        margin: 0;
        text-align: left;
    }

    .section-text {
        text-align: left;
    }

    .intro-section::before {
        left: 0;
        transform: none;
    }
}

/* ─── MOBILE ─── */

@media (max-width: 768px) {
    .container {
        width: min(1280px, 90%);
    }

    section {
        padding: 64px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2 {
        font-size: 1.55rem;
    }

    .section-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .stats-section,
    .areas-section {
        padding-bottom: 48px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantage-card {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 20px;
    }

    .advantage-icon {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 42px;
        height: 42px;
    }

    .advantage-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .advantage-card p {
        font-size: 0.88rem;
    }

    .cta-section {
        padding: 48px 0;
    }

    .cta-inner {
        padding: 36px 24px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .cta-section .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
        text-align: center;
    }

    .footer-brand p {
        margin: 16px auto 0;
    }

    .footer-grid h4 {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 48px;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .area-card {
        padding: 28px 24px;
    }

    .area-number {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════
   PÁGINAS INTERNAS
   ═══════════════════════════════════════════ */

.inner-page {
    background: var(--blue-surface);
}

.inner-page main {
    overflow-x: hidden;
}

/* ─── Page Banner ─── */

.page-banner {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    padding: 130px 0 64px;
    isolation: isolate;
}

.page-banner--short {
    padding-bottom: 48px;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.page-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #041427 0%, #072345 55%, #0a2d52 100%);
    background-size: 200% 200%;
    animation: heroGradient 18s ease infinite;
}

.page-banner-bg .hero-bg-grid {
    animation: gridDrift 35s linear infinite;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    font-size: 0.6rem;
    opacity: 0.5;
}

.breadcrumb span {
    color: var(--gold);
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-banner p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ─── Page Sections ─── */

.page-section {
    padding: 80px 0;
}

.page-section--soft {
    background: linear-gradient(180deg, var(--blue-surface) 0%, var(--blue-soft) 100%);
}

.page-section--navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.page-section--navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 80%, rgba(200, 169, 107, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.page-section--navy .container {
    position: relative;
    z-index: 1;
}

.page-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ─── Split Block (Nosotros) ─── */

.split-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.split-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.split-content p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.75;
}

.check-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}

.check-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.check-list--light li {
    color: rgba(255, 255, 255, 0.88);
}

.visual-card {
    background: linear-gradient(145deg, var(--navy) 0%, var(--blue-card) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(8, 27, 51, 0.25);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.15), transparent 70%);
    animation: glowPulse 6s ease-in-out infinite;
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 70px rgba(8, 27, 51, 0.35);
}

.visual-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(200, 169, 107, 0.15);
    border: 1px solid rgba(200, 169, 107, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 22px;
    animation: iconBob 3s ease-in-out infinite;
}

.visual-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.visual-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ─── Highlight Panel ─── */

.highlight-panel {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 52px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 24px 48px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.highlight-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.highlight-panel:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin-top: 4px;
    animation: iconBob 3s ease-in-out infinite;
}

.highlight-panel h2 {
    font-family: var(--font-display);
    color: #1a1a2e;
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.highlight-panel p {
    color: #4a4a5a;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.highlight-panel p:last-child {
    margin-bottom: 0;
}

.highlight-panel strong {
    color: #1a1a2e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .highlight-panel {
        flex-direction: column;
        gap: 20px;
        padding: 32px 28px;
        border-radius: 20px;
    }
    .highlight-icon {
        margin-top: 0;
    }
    .highlight-panel h2 {
        font-size: 1.4rem;
    }
    .highlight-panel p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .highlight-panel {
        padding: 28px 22px;
        border-radius: 16px;
    }
    .highlight-panel h2 {
        font-size: 1.25rem;
    }
    .highlight-panel p {
        font-size: 0.9rem;
    }
}

/* ─── MVV Cards ─── */

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mvv-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--blue-card) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
}

.mvv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(8, 27, 51, 0.35);
    border-color: rgba(200, 169, 107, 0.25);
}

.mvv-card:hover::after {
    transform: scaleX(1);
}

.mvv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: transform 0.4s, background 0.4s;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(200, 169, 107, 0.22);
}

.mvv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mvv-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.65;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-list li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.value-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

/* ─── Accordion (Áreas) ─── */

.area-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.area-pill {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(8, 27, 51, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.area-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 169, 107, 0.4);
}

.area-pill.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(8, 27, 51, 0.25);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 238, 246, 0.9) 100%);
    border: 1px solid rgba(8, 27, 51, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    scroll-margin-top: 110px;
    transition: box-shadow 0.4s, border-color 0.4s;
}

.accordion-item.open {
    box-shadow: 0 16px 40px rgba(8, 27, 51, 0.12);
    border-color: rgba(200, 169, 107, 0.25);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(8, 27, 51, 0.03);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.accordion-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.4s, background 0.4s;
    flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
    background: linear-gradient(135deg, var(--gold), #a8894f);
    color: var(--navy-deep);
    transform: scale(1.05);
}

.accordion-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.accordion-chevron {
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item.open .accordion-body {
    max-height: 600px;
}

.accordion-body-inner {
    padding: 0 26px 26px 84px;
}

.accordion-body-inner p {
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 18px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--navy);
    line-height: 1.5;
}

.feature-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ─── Service Models ─── */

.service-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-model-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--blue-card) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.service-model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200, 169, 107, 0.1), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-model-card:hover::before {
    opacity: 1;
}

.service-model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(8, 27, 51, 0.35);
}

.service-model-card--featured {
    border-color: rgba(200, 169, 107, 0.35);
    box-shadow: 0 20px 50px rgba(8, 27, 51, 0.3);
}

.service-model-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-model-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 22px;
    animation: iconBob 3.5s ease-in-out infinite;
}

.service-model-card h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.service-model-card > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 22px;
}

.service-model-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.92rem;
    margin-top: 8px;
    transition: gap 0.3s;
}

.service-model-link:hover {
    gap: 14px;
}

.service-model-link i {
    transition: transform 0.3s;
}

.service-model-link:hover i {
    transform: translateX(4px);
}

/* ─── Process Steps ─── */

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s, border-color 0.4s;
}

.process-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 169, 107, 0.25);
}

.process-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.15);
    border: 1px solid rgba(200, 169, 107, 0.3);
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.4s, background 0.4s;
}

.process-step:hover .process-num {
    transform: scale(1.12);
    background: rgba(200, 169, 107, 0.25);
}

.process-step h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.55;
}

.process-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ─── Team ─── */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--blue-card) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(8, 27, 51, 0.35);
}

.team-photo {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.08) 0%, rgba(8, 27, 51, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(200, 169, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    transition: transform 0.4s;
}

.team-card:hover .team-avatar {
    transform: scale(1.08);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 20, 39, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s, transform 0.3s, color 0.3s;
}

.team-overlay a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.team-info {
    padding: 22px 20px;
}

.team-info h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.team-spec {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.45;
}

/* ─── Impact Stats (contadores animados) ─── */

.impact-section {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    overflow: hidden;
}

.impact-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 169, 107, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(100, 180, 255, 0.05) 0%, transparent 40%);
}

.impact-section .container {
    position: relative;
    z-index: 1;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-stat {
    text-align: center;
    padding: 32px 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s, box-shadow 0.4s, background 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200, 169, 107, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.impact-stat:hover::before {
    opacity: 1;
}

.impact-stat:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(200, 169, 107, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.impact-stat.counted {
    border-color: rgba(200, 169, 107, 0.25);
}

.impact-stat.counted .impact-stat-number {
    animation: statPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-stat-visual {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
}

.impact-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.impact-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 6;
}

.impact-ring-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 327;
    stroke-dashoffset: 327;
    transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(0 0 6px rgba(200, 169, 107, 0.4));
}

.impact-stat.counted .impact-ring-fill {
    stroke-dashoffset: calc(327 - (327 * var(--progress, 100) / 100));
}

.impact-stat-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.4s;
}

.impact-stat:hover .impact-stat-icon {
    transform: scale(1.12);
}

.impact-stat-icon--spin {
    animation: globeSpin 8s linear infinite;
}

.impact-stat.counted .impact-stat-icon--spin {
    animation: globeSpin 4s linear infinite;
}

.impact-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    min-height: 1.1em;
}

.impact-stat-number .counter {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-stat-number .counter--text {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-stat.counted .counter--text {
    opacity: 1;
    transform: translateY(0);
    -webkit-text-fill-color: transparent;
}

.impact-stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 16px;
}

.impact-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.impact-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 999px;
    transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px rgba(200, 169, 107, 0.5);
}

.impact-stat.counted .impact-progress-fill {
    width: 100%;
}

@keyframes statPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes globeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* legacy alias */
.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-stat {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: transform 0.4s, border-color 0.4s;
}

.team-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 107, 0.25);
}

.team-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.team-stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* ─── Contact ─── */

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: start;
}

.contact-info-panel h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.25;
}

.contact-info-panel > p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-card) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

a.contact-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(8, 27, 51, 0.25);
    border-color: rgba(200, 169, 107, 0.25);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-card span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

#contactForm {
    scroll-margin-top: 130px;
}

.contact-form-panel {
    background: linear-gradient(160deg, var(--navy) 0%, var(--blue-card) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(8, 27, 51, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(200, 169, 107, 0.5);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.12);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c8a96b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-feedback {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    display: none;
}

.form-feedback.show {
    display: block;
    animation: heroFadeUp 0.5s ease;
}

.form-feedback.success {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.form-feedback.error {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

/* ─── Inner CTA ─── */

.inner-cta {
    padding: 64px 0;
    background: var(--blue-soft);
}

.inner-cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 52px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.inner-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(200, 169, 107, 0.12), transparent);
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.inner-cta-box h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 12px;
    position: relative;
}

.inner-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 28px;
    position: relative;
}

.inner-cta-box .btn {
    position: relative;
}

/* ─── Inner Pages Responsive ─── */

@media (max-width: 1100px) {
    .split-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .service-models {
        grid-template-columns: 1fr;
    }

    .process-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .page-banner {
        padding: 108px 0 48px;
    }

    .page-banner h1 {
        font-size: clamp(1.75rem, 5vw, 2.4rem);
    }

    .page-section {
        padding: 64px 0;
    }

    .accordion-body-inner {
        padding: 0 22px 22px 22px;
    }

    .highlight-panel {
        flex-direction: column;
        padding: 28px 24px;
    }

    .area-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .area-pills::-webkit-scrollbar {
        display: none;
    }

    .area-pill {
        flex-shrink: 0;
    }

    .team-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-card {
        flex: 0 0 min(75vw, 280px);
        scroll-snap-align: start;
    }

    .team-overlay {
        opacity: 1;
        background: rgba(4, 20, 39, 0.5);
    }

    .process-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .process-track::-webkit-scrollbar {
        display: none;
    }

    .process-step {
        flex: 0 0 min(70vw, 260px);
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .impact-stat {
        padding: 28px 22px 24px;
    }

    .impact-stat-visual {
        width: 88px;
        height: 88px;
    }

    .inner-cta-box {
        padding: 36px 24px;
    }

    .inner-cta-box .btn {
        width: 100%;
    }

    .contact-form-panel {
        padding: 28px 22px;
    }

    .service-model-card {
        padding: 32px 26px;
    }
}

/* ─── Mercado Público Highlight ─── */

.procurement-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 940px;
    margin: 0 auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.procurement-badge {
    width: 80px;
    height: 80px;
    background: var(--blue-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--navy);
    flex-shrink: 0;
    border: 1px solid var(--blue-mid);
}

.procurement-card h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.procurement-card p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .procurement-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 20px;
        padding: 30px 20px;
        gap: 16px;
    }

    .procurement-badge {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        border-radius: 16px;
    }

    .procurement-card h3 {
        font-size: 1.2rem;
    }

    .procurement-card p {
        font-size: 0.92rem;
        line-height: 1.6;
    }
}

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */

body.preloader-active {
    overflow: hidden;
}

html.skip-preloader #preloader {
    display: none !important;
}

html.skip-preloader body.preloader-active {
    overflow: auto !important;
}

body.preloader-active .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.85s;
}

.preloader--exit {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader--exit .preloader-inner {
    transform: scale(1.08);
    opacity: 0;
    filter: blur(6px);
}

.preloader-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.preloader-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #041427 0%, #072345 50%, #0a2d52 100%);
    background-size: 200% 200%;
    animation: heroGradient 12s ease infinite;
}

.preloader-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
    animation: gridDrift 20s linear infinite;
}

.preloader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: preloaderOrb 6s ease-in-out infinite;
}

.preloader-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: rgba(200, 169, 107, 0.12);
}

.preloader-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -60px;
    background: rgba(100, 180, 255, 0.08);
    animation-delay: -3s;
}

.preloader-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s, filter 0.85s;
    animation: preloaderEnter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preloader-logo-stage {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preloader-ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 2;
}

.preloader-ring-progress {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 578;
    stroke-dashoffset: 578;
    animation: preloaderRingDraw 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    filter: drop-shadow(0 0 8px rgba(200, 169, 107, 0.5));
}

.preloader--exit .preloader-ring-progress {
    stroke-dashoffset: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.preloader-orbit {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px dashed rgba(200, 169, 107, 0.2);
    animation: preloaderOrbitSpin 8s linear infinite;
}

.preloader-orbit::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(200, 169, 107, 0.8);
}

.preloader-logo {
    width: 110px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: preloaderLogoIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
}

.preloader-shine {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

.preloader-shine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
    animation: preloaderShine 2.5s ease-in-out infinite;
}

.preloader-progress {
    width: min(220px, 60vw);
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.preloader-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(200, 169, 107, 0.6);
    animation: preloaderBar 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader--done .preloader-progress-fill {
    width: 100% !important;
    animation: none;
    transition: width 0.3s ease;
}

.preloader-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    animation: preloaderTextIn 1s ease 0.6s both;
}

@keyframes preloaderEnter {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes preloaderLogoIn {
    from { opacity: 0; transform: scale(0.5); filter: blur(8px) drop-shadow(0 8px 30px rgba(0,0,0,0.3)); }
    to { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 8px 30px rgba(0,0,0,0.3)); }
}

@keyframes preloaderRingDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes preloaderOrbitSpin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderShine {
    0%, 70%, 100% { transform: translateX(-120%); }
    85% { transform: translateX(120%); }
}

@keyframes preloaderBar {
    0% { width: 0; }
    40% { width: 45%; }
    70% { width: 78%; }
    100% { width: 92%; }
}

@keyframes preloaderTextIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(15px, -15px) scale(1.1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .preloader-grid,
    .preloader-orb,
    .preloader-orbit,
    .preloader-shine::after,
    .preloader-bg::before {
        animation: none !important;
    }

    .preloader-ring-progress {
        animation-duration: 0.5s;
    }

    .preloader-progress-fill {
        animation-duration: 0.5s;
    }
}

/* ─── WhatsApp flotante ─── */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s ease, opacity 0.5s ease;
}

.whatsapp-float-pulse {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    animation: whatsappPulse 2.8s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float-icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25d366 0%, #1da851 100%);
    color: #fff;
    font-size: 1.55rem;
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.35),
        0 2px 8px rgba(8, 27, 51, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.whatsapp-float-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(8, 27, 51, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(8, 27, 51, 0.2);
    transition: max-width 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, padding 0.45s ease;
}

.whatsapp-float:hover {
    gap: 12px;
    transform: translateY(-3px);
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: scale(1.06);
    box-shadow:
        0 12px 36px rgba(37, 211, 102, 0.45),
        0 4px 12px rgba(8, 27, 51, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover .whatsapp-float-label {
    max-width: 140px;
    opacity: 1;
    padding: 10px 18px 10px 4px;
}

.whatsapp-float:hover .whatsapp-float-pulse {
    animation: none;
    opacity: 0;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 22px;
        right: 18px;
    }

    .whatsapp-float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.45rem;
    }

    .whatsapp-float-pulse {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float:hover {
        gap: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float-pulse {
        animation: none;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .scroll-row,
    .process-track,
    .team-grid {
        scroll-behavior: smooth;
    }
}
