/* ========== RESET Y GLOBALS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: #334155;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fc 25%, #ffffff 50%, #f8f9fc 75%, #ffffff 100%);
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Fondo global animado - cubre toda la página */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(248, 249, 252, 0) 0%,
            rgba(248, 249, 252, 0.5) 20%,
            rgba(255, 255, 255, 0.3) 40%,
            rgba(248, 249, 252, 0.5) 60%,
            rgba(255, 255, 255, 0.3) 80%,
            rgba(248, 249, 252, 0) 100%);
}

/* Contenedor global de animaciones de fondo */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* ========== HEADER STICKY ========== */
.site-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: calc(100% - 3rem);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    top: 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(140%) blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(10, 132, 156, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(10, 132, 156, 0.12);
}

.site-header.scrolled .header-content {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(10, 132, 156, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-right: 1px solid rgba(10, 132, 156, 0.2);
    margin-right: 0.5rem;
    padding-right: 1rem;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    padding: 0.625rem 1.125rem;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #0A849C;
    background: rgba(10, 132, 156, 0.08);
}

.nav-menu a.cta {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    color: #ffffff;
    font-weight: 600;
    margin-left: 0.75rem;
    border: none;
    box-shadow: 0 4px 12px rgba(10, 132, 156, 0.3);
}

.nav-menu a.cta:hover {
    background: linear-gradient(135deg, #18b2d9 0%, #0A849C 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 132, 156, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #475569;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 0.5rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-toggle:hover {
    background: rgba(10, 132, 156, 0.08);
    color: #0A849C;
}

@media (max-width: 900px) {
    .site-header {
        top: 1rem;
        max-width: calc(100% - 2rem);
    }

    .header-content {
        padding: 0.75rem 1.25rem;
        gap: 1rem;
    }

    .logo {
        padding-right: 0.875rem;
        margin-right: 0.375rem;
    }

    .logo img {
        height: 36px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    /* Mobile menu cuando esté abierto */
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 1rem);
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 1.25rem;
        border-radius: 20px;
        border: 1px solid rgba(10, 132, 156, 0.15);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        min-width: 220px;
        gap: 2rem;
    }

    .nav-menu.open a {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .nav-menu.open a.cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 640px) {
    .site-header {
        max-width: calc(100% - 1.5rem);
    }

    .header-content {
        padding: 0.625rem 1rem;
        gap: 0.75rem;
    }

    .logo {
        padding-right: 0.625rem;
        margin-right: 0.25rem;
    }

    .logo img {
        height: 32px;
    }
}

/* ========== ANIMACIONES DE FONDO (COMPARTIDAS) ========== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: blob 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0A849C;
    border-radius: 50%;
    animation: particle-float 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.3;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(10, 132, 156, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 132, 156, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: float 18s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-40px) rotate(10deg);
        opacity: 0.15;
    }
}

/* Líneas diagonales decorativas */
.diagonal-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 132, 156, 0.12) 50%, transparent 100%);
    transform-origin: left;
    z-index: 0;
    opacity: 0.4;
}

.line-1 {
    top: 20%;
    left: -10%;
    width: 120%;
    transform: rotate(-5deg);
}

.line-2 {
    top: 50%;
    left: -10%;
    width: 120%;
    transform: rotate(3deg);
}

.line-3 {
    top: 75%;
    left: -10%;
    width: 120%;
    transform: rotate(-2deg);
}

.line-4 {
    top: 35%;
    left: -10%;
    width: 120%;
    transform: rotate(4deg);
    opacity: 0.25;
}

.line-5 {
    top: 65%;
    left: -10%;
    width: 120%;
    transform: rotate(-3deg);
    opacity: 0.25;
}

/* Degradados radiales decorativos */
.radial-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.gradient-1 {
    top: 15%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(24, 178, 217, 0.3) 0%, transparent 70%);
}

.gradient-2 {
    bottom: 25%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10, 132, 156, 0.25) 0%, transparent 70%);
}

.gradient-3 {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 209, 197, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

/* Ondas circulares expansivas (ripples) */
.ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(10, 132, 156, 0.15);
    pointer-events: none;
    z-index: 0;
    animation: ripple-expand 12s ease-out infinite;
}

@keyframes ripple-expand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.6;
    }

    100% {
        width: 1200px;
        height: 1200px;
        opacity: 0;
    }
}

.ripple-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.ripple-2 {
    top: 60%;
    right: 20%;
    border-color: rgba(24, 178, 217, 0.12);
    animation-delay: 4s;
}

.ripple-3 {
    top: 40%;
    left: 50%;
    border-color: rgba(78, 209, 197, 0.1);
    animation-delay: 8s;
}

.ripple-4 {
    bottom: 20%;
    left: 35%;
    border-color: rgba(10, 132, 156, 0.12);
    animation-delay: 2s;
}

.ripple-5 {
    top: 80%;
    right: 40%;
    border-color: rgba(24, 178, 217, 0.1);
    animation-delay: 6s;
}

.ripple-6 {
    top: 30%;
    right: 15%;
    border-color: rgba(78, 209, 197, 0.12);
    animation-delay: 10s;
}

/* ========== SECCIONES BASE ========== */
section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 0;
    overflow: visible;
    background: transparent;
    width: 100%;
    margin: 0 auto;
}

/* Secciones sin fondos propios - usan el fondo global */
section.white-bg,
section.muted-bg {
    background: transparent;
}

/* Solo contacto y footer mantienen fondo oscuro */
section.dark-bg,
footer {
    background: linear-gradient(135deg, #0f1f4d 0%, #1b2a78 50%, #0f1845 100%);
    color: #ffffff;
}

.section-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .section-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .section-content {
        padding: 0 1rem;
    }
}

/* Blobs, partículas, shapes, etc. - ya no se usan en secciones individuales */
/* Todos los elementos visuales ahora están en el fondo global */
.light-blobs .blob,
.light-blobs .particle,
.light-blobs .shape,
.light-blobs .diagonal-line,
.light-blobs .radial-gradient,
.light-blobs .grid-overlay {
    display: none;
}

/* Blobs oscuros (fondos nocturnos) */
.dark-blobs .blob {
    opacity: 0.15;
    filter: blur(100px);
}

.dark-blobs .blob-1 {
    top: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #18b2d9 0%, #0A849C 100%);
}

.dark-blobs .blob-2 {
    top: 50%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #4ed1c5 0%, #18b2d9 100%);
    animation-delay: 7s;
}

.dark-blobs .blob-3 {
    bottom: -20%;
    left: 30%;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #0A849C 0%, #1b2a78 100%);
    animation-delay: 14s;
}

/* Partículas oscuras */
.dark-particles .particle {
    background: #18b2d9;
    opacity: 0.4;
    box-shadow: 0 0 8px rgba(24, 178, 217, 0.6);
}

/* Shapes */
.shape-1 {
    top: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid #0A849C;
    border-radius: 20px;
    transform: rotate(45deg);
}

.shape-2 {
    top: 60%;
    right: 12%;
    width: 80px;
    height: 80px;
    border: 2px solid #18b2d9;
    border-radius: 50%;
    animation-delay: 6s;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 60px;
    height: 60px;
    border: 2px solid #1b2a78;
    transform: rotate(30deg);
    animation-delay: 12s;
}

.shape-4 {
    top: 35%;
    left: 25%;
    width: 70px;
    height: 70px;
    border: 2px solid #0A849C;
    border-radius: 50%;
    animation-delay: 3s;
}

.shape-5 {
    top: 75%;
    right: 30%;
    width: 90px;
    height: 90px;
    border: 2px solid #18b2d9;
    border-radius: 15px;
    transform: rotate(60deg);
    animation-delay: 9s;
}

.shape-6 {
    top: 45%;
    right: 8%;
    width: 65px;
    height: 65px;
    border: 2px solid #0A849C;
    border-radius: 50%;
    animation-delay: 15s;
}

.shape-7 {
    bottom: 35%;
    left: 5%;
    width: 75px;
    height: 75px;
    border: 2px solid #18b2d9;
    transform: rotate(20deg);
    animation-delay: 5s;
}

.shape-8 {
    top: 25%;
    right: 35%;
    width: 55px;
    height: 55px;
    border: 2px solid #1b2a78;
    border-radius: 50%;
    animation-delay: 11s;
}

.shape-9 {
    bottom: 50%;
    left: 40%;
    width: 85px;
    height: 85px;
    border: 2px solid #0A849C;
    border-radius: 18px;
    transform: rotate(75deg);
    animation-delay: 7s;
}

.shape-10 {
    top: 10%;
    left: 45%;
    width: 50px;
    height: 50px;
    border: 2px solid #18b2d9;
    border-radius: 50%;
    animation-delay: 13s;
}

.shape-11 {
    bottom: 15%;
    right: 20%;
    width: 95px;
    height: 95px;
    border: 2px solid #1b2a78;
    transform: rotate(40deg);
    animation-delay: 2s;
}

.shape-12 {
    top: 80%;
    left: 30%;
    width: 60px;
    height: 60px;
    border: 2px solid #0A849C;
    border-radius: 50%;
    animation-delay: 17s;
}

/* ========== HERO ========== */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.eyebrow {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(10, 132, 156, 0.08);
    border: 1px solid rgba(10, 132, 156, 0.2);
    border-radius: 50px;
    color: #0A849C;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0c1222;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    background: #089cb9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: #334155;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle strong {
    color: #0c1222;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(10, 132, 156, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(10, 132, 156, 0.35);
}

.btn-secondary {
    background: #ffffff;
    color: #18267F;
    border: 2px solid #e0e7ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f8f9fc;
    border-color: #18267F;
}

/* ========== DEFINICIÓN ========== */
#definicion {
    text-align: center;
}

.animation-container {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 50px;
}

/* Animación */
.animation {
    border-radius: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(10, 132, 156, 0.3));
    animation: float-icon 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .icon-3d {
        width: 160px;
    }
}

@media (max-width: 640px) {
    .icon-3d {
        width: 140px;
    }

    .icon-3d-container {
        margin: 2rem auto;
    }
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #0c1222;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.description {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    color: #334155;
    margin: 0 auto 4rem;
    max-width: 800px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 240px;
    border: 1px solid rgba(10, 132, 156, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(10, 132, 156, 0.15);
    border-color: rgba(10, 132, 156, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    transform: scale(1.1);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0A849C;
    transition: stroke 0.3s ease;
}

.card:hover .card-icon svg {
    stroke: #ffffff;
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0c1222;
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* ========== QUIÉNES SOMOS ========== */
#quienes .section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(10, 132, 156, 0.08);
    border: 1px solid rgba(10, 132, 156, 0.2);
    border-radius: 50px;
    color: #0A849C;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

#quienes {
    text-align: center;
}

.tagline {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #0A849C;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
    line-height: 1.7;
    color: #334155;
    max-width: 850px;
    margin: 0 auto 4rem;
}

/* Stats Box */
.stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(10, 132, 156, 0.12);
    box-shadow: 0 10px 40px rgba(10, 132, 156, 0.08);
}

.stat-item {
    text-align: center;
}

.statistic-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========== QUÉ HACEMOS ========== */
#hacemos {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hacemos .section-content {
    text-align: center;
}

#hacemos .eyebrow,
#hacemos h2,
#hacemos .description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 132, 156, 0.15);
}

.pillar-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A849C;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrapper {
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.closing-statement {
    padding: 2rem 2.5rem;
    background: linear-gradient(to right, rgba(10, 132, 156, 0.06), rgba(24, 178, 217, 0.06));
    border-radius: 16px;
    border: 1px solid rgba(10, 132, 156, 0.15);
    max-width: 900px;
    margin: 4rem auto 0;
}

.closing-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1b2a78;
    line-height: 1.65;
}

.closing-text strong {
    color: #0A849C;
    font-weight: 700;
}

.data-hook {
    position: relative;
    overflow: hidden;
}

.data-hook .section-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Layout: Número izquierda, contenido derecha */
.data-hook-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    text-align: left;
}

/* ---- BLOQUE DEL NÚMERO 95% ---- */
.stat-block {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: clamp(7rem, 18vw, 12rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
    background: linear-gradient(150deg,
            #0A849C 0%,
            #18b2d9 40%,
            #1b2a78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: subtle-pulse 4s ease-in-out infinite;
}

.stat-number .percent {
    font-size: 0.4em;
    vertical-align: super;
    letter-spacing: -0.02em;
    margin-left: -0.05em;
}


/* ---- BLOQUE DE CONTENIDO ---- */
.data-hook-content {
    max-width: 600px;
    text-align: center;
}

.data-hook-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0A849C;
    margin-bottom: 1.25rem;
}



.data-hook-headline {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0c1222;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.data-hook-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.75rem;
}

/* Fuente */
.data-hook-source {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    border: 1px solid rgba(10, 132, 156, 0.1);
    transition: all 0.2s ease;
}

.data-hook-source a {
    color: #0A849C;
    text-decoration: none;
    font-weight: 500;
}

.data-hook-source a:hover {
    text-decoration: underline;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .data-hook-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .stat-block {
        order: -1;
    }

    .stat-number {
        font-size: clamp(5rem, 20vw, 8rem);
    }

    .data-hook-content {
        max-width: 100%;
    }

    .data-hook-eyebrow {
        justify-content: center;
    }

    .data-hook-eyebrow::before {
        display: none;
    }

    .insight-box {
        text-align: left;
    }

    .data-hook-source {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .data-hook {
        padding: 4rem 0;
    }

    .data-hook .section-content {
        padding: 0 1.5rem;
    }

    .stat-number {
        font-size: 5rem;
    }

    .data-hook-headline {
        font-size: 1.375rem;
    }

    .data-hook-text {
        font-size: 1rem;
    }

    .insight-box {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .insight-icon {
        margin: 0 auto;
    }
}



/* Divider Line */
.divider-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 132, 156, 0.3) 50%, transparent 100%);
    margin: 4rem auto;
    border-radius: 2px;
}

/* Hacemos Main Content */
.hacemos-main {
    text-align: center;
}

/* Why It Works Box */
.why-works-box {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid rgba(10, 132, 156, 0.2);
    box-shadow: 0 10px 40px rgba(10, 132, 156, 0.12);
    max-width: 1000px;
    margin: 4rem auto 0;
    text-align: left;
    transition: all 0.3s ease;
}

.why-works-box:hover {
    border-color: rgba(10, 132, 156, 0.35);
    box-shadow: 0 16px 48px rgba(10, 132, 156, 0.18);
    transform: translateY(-2px);
}

.why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(10, 132, 156, 0.3);
}

.why-content h3 {
    font-size: 1.5rem;
    color: #0c1222;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.why-content p {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
}

.why-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(10, 132, 156, 0.08) 0%, rgba(24, 178, 217, 0.08) 100%);
    border: 1px solid rgba(10, 132, 156, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A849C;
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(10, 132, 156, 0.15) 0%, rgba(24, 178, 217, 0.15) 100%);
    border-color: rgba(10, 132, 156, 0.35);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
    .data-hook-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .data-hook-content {
        text-align: center;
    }

    .simple-stats {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .image-placeholder {
        max-width: 100%;
    }

    .why-works-box {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }

    .why-content h3 {
        text-align: center;
    }

    .why-features {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .data-hook-grid {
        gap: 2rem;
    }

    .data-hook-title {
        font-size: 1.75rem;
    }

    .data-hook-text {
        font-size: 1rem;
    }

    .simple-stats p {
        font-size: 0.9375rem;
    }

    .simple-stats strong {
        font-size: 1rem;
    }

    .image-placeholder {
        aspect-ratio: 1/1;
    }

    .placeholder-text {
        font-size: 1rem;
    }

    .why-works-box {
        padding: 1.5rem 1rem;
    }

    .why-content h3 {
        font-size: 1.25rem;
    }

    .why-content p {
        font-size: 1rem;
    }
}

/* ========== BUILDING SYSTEM ========== */
.how-to-apply {
    background: linear-gradient(to right, rgba(10, 132, 156, 0.06), rgba(24, 178, 217, 0.06));
    border-radius: 16px;
    border: 1px solid rgba(10, 132, 156, 0.15);
    padding: 2rem 2.5rem;
    max-width: 900px;
    margin: 3rem auto 5rem;
    box-shadow: 0 4px 12px rgba(10, 132, 156, 0.04);
}

.how-to-apply h3 {
    color: #0c1222;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-to-apply p {
    font-size: 1rem;
    color: #1b2a78;
    line-height: 1.65;
    margin: 0.5rem 0;
}

.how-to-apply strong {
    color: #0A849C;
    font-weight: 700;
}

/* Building System with Image */
.building-system-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.building-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto 4rem;
}

.building-system-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(10, 132, 156, 0.2));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.building-system-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 20px 50px rgba(10, 132, 156, 0.3));
}

/* Responsive */
@media (max-width: 980px) {
    .building-image-wrapper {
        margin: 2.5rem auto 3rem;
    }

    .building-system-image {
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .building-image-wrapper {
        margin: 2rem auto 2.5rem;
    }

    .building-system-image {
        max-width: 100%;
    }
}

/* ========== CONTACTO ========== */
#contacto {
    display: flex;
    align-items: center;
}

#contacto .section-content {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: center;
}

.left-content h1 {
    color: #ffffff;
}

.left-content .intro-text {
    color: rgba(255, 255, 255, 0.9);
}

.left-content strong {
    color: #4ed1c5;
}

.value-proposition {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(24, 178, 217, 0.08);
    border-left: 3px solid #18b2d9;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.value-proposition p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0c1222;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 2px solid rgba(10, 132, 156, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #18b2d9;
    box-shadow: 0 0 0 4px rgba(24, 178, 217, 0.1);
}

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

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #64748b;
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0A849C 0%, #18b2d9 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 132, 156, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 132, 156, 0.4);
}


/* ========== FOOTER ========== */
footer {
    position: relative;
    padding: 5rem 2rem 3rem;
    overflow: hidden;
    background: linear-gradient(180deg, #1b2a78 0%, #0f1f4d 50%, #0d1640 100%);
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4ed1c5;
}

.quote-block {
    margin-bottom: 2rem;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 4rem;
    color: rgba(24, 178, 217, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(24, 178, 217, 0.3);
    margin-bottom: 0.75rem;
}

.quote-text.kaiden-quote {
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    border-left-color: #18b2d9;
}

.quote-author {
    font-size: 0.875rem;
    color: #4ed1c5;
    font-weight: 600;
    padding-left: 1.5rem;
}

.footer-nav {
    text-align: right;
}

.footer-nav h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4ed1c5;
    margin-bottom: 1.25rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #4ed1c5;
    transform: translateX(-4px);
    display: inline-block;
}

.footer-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(24, 178, 217, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(24, 178, 217, 0.2);
}

.footer-cta h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ed1c5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    #contacto .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .footer-quotes {
        grid-column: 1 / -1;
    }

    .footer-nav {
        text-align: left;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    #hero {
        padding-top: 6rem;
    }

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

    .timeline-container::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        margin-bottom: 2.5rem;
    }

    .left,
    .right {
        left: 0;
        text-align: left;
    }

    .timeline-item::after,
    .step-icon-wrapper {
        left: 7px;
        right: auto;
    }

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

    .footer-nav {
        text-align: left;
    }
}