    /* ===== IMPORTS ===== */
    /* @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap'); */

    /* ===== VARIABLES ===== */
    :root {
        --azul-principal:    #0062CC;
        --azul-oscuro:       #00419A;
        --azul-muy-claro:    #EBF3FF;
        --azul-acento:       #4DA8FF;
        --verde-check:       #00C97F;
        --gris-texto:        #1A2233;
        --gris-suave:        #64748B;
        --blanco:            #FFFFFF;
        --crema:             #F7F9FC;
        --shadow-sm:         0 2px 8px rgba(0,98,204,.08);
        --shadow-md:         0 8px 24px rgba(0,98,204,.14);
        --shadow-lg:         0 20px 50px rgba(0,98,204,.18);
        --transition:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        --font-display: 'Syne', sans-serif;
        --font-body:    'DM Sans', sans-serif;
    }

    /* ===== RESET DE FUENTES ===== */
    .hero, .hero * {
        font-family: var(--font-body);
    }

    /* ===== HERO SECTION ===== */
    .hero {
        position: relative;
        background-color: var(--crema);
        overflow: hidden;
        padding: 5rem 0 7rem;
        min-height: 92vh;
        display: flex;
        align-items: center;
    }

    /* Fondo con textura de puntos */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(0,98,204,0.07) 1px, transparent 1px);
        background-size: 32px 32px;
        pointer-events: none;
        z-index: 0;
    }

    /* Mancha de color difusa */
    .hero::after {
        content: '';
        position: absolute;
        top: -120px;
        right: -80px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle at center,
            rgba(0,98,204,0.10) 0%,
            rgba(77,168,255,0.06) 45%,
            transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    /* ===== HERO CONTAINER ===== */
    .hero-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* ===== HERO CONTENT ===== */
    .hero-content {
        animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* Badge */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, rgba(0,98,204,0.10), rgba(0,98,204,0.04));
        border: 1px solid rgba(0,98,204,0.18);
        padding: 0.45rem 1rem 0.45rem 0.6rem;
        border-radius: 100px;
        margin-bottom: 1.75rem;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--azul-principal);
        letter-spacing: 0.01em;
    }

    .hero-badge .badge-dot {
        width: 22px;
        height: 22px;
        background-color: var(--azul-principal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hero-badge .badge-dot i {
        font-size: 0.65rem;
        color: var(--blanco);
    }

    /* Título */
    .hero-title {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.03em;
        margin-bottom: 1.5rem;
        color: var(--gris-texto);
    }

    .hero-title .highlight {
        color: var(--azul-principal);
        position: relative;
        display: inline-block;
        white-space: nowrap;
    }

    /* Subrayado decorativo animado */
    .hero-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, rgba(77,168,255,0.35), rgba(0,98,204,0.2));
        z-index: -1;
        border-radius: 3px;
        transform-origin: left;
        animation: underlineGrow 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* Descripción */
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--gris-suave);
        margin-bottom: 2.25rem;
        max-width: 88%;
        font-weight: 400;
    }

    /* Botones */
    .hero-buttons {
        display: flex;
        gap: 0.875rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        font-family: var(--font-body);
        font-weight: 500;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        cursor: pointer;
        text-decoration: none;
        transition: var(--transition);
        letter-spacing: 0.01em;
    }

    /* Botón primario – WhatsApp verde */
    .btn-primary {
        background: linear-gradient(135deg, #25D366, #1aad54);
        color: var(--blanco);
        box-shadow: 0 4px 14px rgba(37,211,102,0.35);
        border: none;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(37,211,102,0.45);
        filter: brightness(1.06);
    }

    .btn-primary i { font-size: 1.15rem; }

    /* Botón secundario */
    .btn-secondary {
        background: var(--blanco);
        color: var(--azul-principal);
        border: 1.5px solid rgba(0,98,204,0.25);
        box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
        background: var(--azul-principal);
        color: var(--blanco);
        border-color: var(--azul-principal);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    /* ===== TRUST PILLS ===== */
    .hero-trust {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

    .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--gris-suave);
        background: var(--blanco);
        border: 1px solid rgba(0,0,0,0.07);
        padding: 0.3rem 0.75rem;
        border-radius: 100px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .trust-pill i {
        color: var(--verde-check);
        font-size: 0.7rem;
    }

    /* ===== ESTADÍSTICAS ===== */
    .hero-stats {
        display: flex;
        gap: 0;
        border-top: 1px solid rgba(26,34,51,0.08);
        padding-top: 2rem;
    }

    .stat-item {
        text-align: left;
        padding-right: 2rem;
        position: relative;
    }

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 15%;
        height: 70%;
        width: 1px;
        background: rgba(26,34,51,0.10);
    }

    .stat-number {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 800;
        color: var(--azul-principal);
        line-height: 1.1;
        letter-spacing: -0.03em;
    }

    .stat-label {
        font-size: 0.78rem;
        color: var(--gris-suave);
        margin-top: 0.2rem;
        font-weight: 400;
    }

    /* ===== HERO IMAGE ===== */
    .hero-image {
        position: relative;
        animation: heroFadeRight 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* Marco decorativo detrás de la imagen */
    .hero-image::before {
        content: '';
        position: absolute;
        inset: -12px -12px -12px 12px;
        border: 2px solid rgba(0,98,204,0.12);
        border-radius: 28px;
        z-index: 0;
        pointer-events: none;
    }

    .hero-image-wrapper {
        position: relative;
        border-radius: 24px;
        overflow: visible;
        z-index: 1;
    }

    .hero-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 24px;
        object-fit: cover;
        box-shadow: var(--shadow-lg);
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-image-wrapper:hover .hero-img {
        transform: scale(1.03) translateY(-4px);
    }

    /* ===== TARJETAS FLOTANTES ===== */
    .floating-card {
        position: absolute;
        background: rgba(255,255,255,0.97);
        padding: 0.85rem 1.1rem;
        border-radius: 16px;
        box-shadow: 0 8px 28px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        backdrop-filter: blur(12px);
        z-index: 10;
        border: 1px solid rgba(255,255,255,0.9);
        transition: var(--transition);
        cursor: default;
    }

    .floating-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    }

    .floating-card .card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--azul-muy-claro);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .floating-card .card-icon i {
        font-size: 1rem;
        color: var(--azul-principal);
    }

    .card-1 .card-icon { background: rgba(0,201,127,0.1); }
    .card-1 .card-icon i { color: var(--verde-check); }

    .card-content strong {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--gris-texto);
        display: block;
        line-height: 1.3;
    }

    .card-content span {
        font-size: 0.7rem;
        color: var(--gris-suave);
        line-height: 1.3;
    }

    .card-1 {
        top: 24px;
        left: -28px;
        animation: floatCard 4s ease-in-out infinite;
    }

    .card-2 {
        bottom: 32px;
        right: -28px;
        animation: floatCard 4s ease-in-out infinite 2s;
    }

    /* Chip de rating */
    .rating-chip {
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--blanco);
        border-radius: 100px;
        padding: 0.45rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.10);
        border: 1px solid rgba(0,0,0,0.06);
        z-index: 10;
        white-space: nowrap;
        animation: floatCard 4s ease-in-out infinite 1s;
    }

    .rating-chip .stars {
        display: flex;
        gap: 1px;
    }

    .rating-chip .stars i {
        font-size: 0.65rem;
        color: #F59E0B;
    }

    .rating-chip span {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--gris-texto);
    }

    .rating-chip small {
        font-size: 0.68rem;
        color: var(--gris-suave);
    }

    /* ===== ONDA DECORATIVA ===== */
    .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 1;
    }

    .hero-wave svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 72px;
    }

    .hero-wave .shape-fill { fill: var(--blanco); }

    /* ===== ANIMACIONES ===== */
    @keyframes heroFadeUp {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes heroFadeRight {
        from { opacity: 0; transform: translateX(28px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes underlineGrow {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }

    @keyframes floatCard {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-8px); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
        .hero-container { gap: 3rem; }
        .hero-description { max-width: 100%; }
    }

    @media (max-width: 900px) {
        .hero-image::before { display: none; }
        .hero-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .hero-description { margin-left: auto; margin-right: auto; }

        .hero-buttons { justify-content: center; }

        .hero-trust  { justify-content: center; }

        .hero-stats  {
            justify-content: center;
            gap: 0;
        }

        .stat-item { text-align: center; }

        .hero-image {
            order: -1;
            max-width: 480px;
            margin: 0 auto;
        }

        .card-1 { left: 0; }
        .card-2 { right: 0; }
    }

    @media (max-width: 600px) {
        .hero { padding: 2.5rem 0 4rem; }

        .hero-title { letter-spacing: -0.025em; }

        .hero-title .highlight::after { bottom: 2px; height: 7px; }

        .hero-stats { flex-wrap: wrap; gap: 1.25rem; }

        .stat-item::after { display: none; }
        .stat-item { padding-right: 1.5rem; }
    }

    @media (max-width: 480px) {
        .btn-large { width: 100%; justify-content: center; }
        .hero-buttons { flex-direction: column; }

        .hero-trust { flex-direction: column; align-items: center; }

        .floating-card { display: none; }
        .rating-chip { display: none; }
    }   


    /* ===== CLIENTS STRIP ===== */
.clients-strip {
    background: var(--blanco);
    border-top: 1px solid rgba(26,34,51,0.07);
    border-bottom: 1px solid rgba(26,34,51,0.07);
    padding: 2.25rem 0;
}

.clients-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.clients-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris-suave);
    white-space: nowrap;
    flex-shrink: 0;
}

.clients-divider {
    width: 1px;
    height: 36px;
    background: rgba(26,34,51,0.10);
    flex-shrink: 0;
}

.clients-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.65;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.client-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.client-logo:hover .client-logo-img {
    filter: grayscale(0);
}

.client-logo-name {
    font-size: 0.7rem;
    color: var(--gris-suave);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 700px) {
    .clients-divider { display: none; }
    .clients-inner { gap: 1.5rem; }
}