﻿
/* ============================================
        SISTEMA DE COLOR — mismo que landing EE.UU. v6_14
        ============================================ */
:root {
    --azul-deep: #0F2454;
    --azul-dollarize: #034EA2;
    --azul-mid: #2E5BBA;
    --azul-simi-pale: #EBF1F8;
    --azul-simi-medio: #5C8BC4;
    --azul-pale: #F4F8FD;
    --rojo-simi: #CE2F4D;
    --rojo-simi-deep: #A82038;
    --rojo-simi-soft: #FDE5EA;
    --amarillo: #FFC93C;
    --amarillo-deep: #F5B400;
    --amarillo-glow: rgba(255, 201, 60, 0.4);
    --crema: #FBF8F1;
    --blanco: #FFFFFF;
    --gris-borde: #E5EAF2;
    --gris-texto: #4A5568;
    --gris-claro: #8A92A3;
    --negro: #0A1429;
    --azul-soft: #E8F0FA;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-card: 0 4px 20px rgba(15, 36, 84, 0.06);
    --shadow-card-hover: 0 30px 70px rgba(15, 36, 84, 0.3);
    --radius-xl: 32px;
    --verde-whatsapp: #25D366;
    --verde-whatsapp-hover: #1EBE57;
}

/* Reset y tipografía base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--azul-deep);
    line-height: 1.5;
    background: var(--azul-deep);
    overflow-x: hidden;
}

/* ============================================
        TOGGLE PAÍS (MX activo)
        ============================================ */
.toggle-pais {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 100;
    display: flex;
    background: var(--blanco);
    border-radius: var(--radius-pill);
    padding: 5px;
    box-shadow: 0 8px 32px rgba(15, 36, 84, 0.12);
    border: 1px solid var(--gris-borde);
}

    .toggle-pais a {
        padding: 8px 18px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        color: var(--azul-dollarize);
        border-radius: var(--radius-pill);
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .toggle-pais a.active {
            background: var(--azul-dollarize);
            color: var(--blanco);
        }

        .toggle-pais a:not(.active):hover {
            background: var(--azul-pale);
        }

/* ============================================
        HERO con video de cielo
        ============================================ */
.hero {
    background-color: var(--azul-deep);
    padding: 28px 24px 60px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 36, 84, 0.10) 0%, rgba(15, 36, 84, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* === Columna izquierda del hero === */
.hero-left {
    display: flex;
    flex-direction: column;
}

/* Logo Klu Dr. Simi (HTML/CSS) */
.logo-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 52px;
}

.klu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 90px;
}





.klu-logo-face {
    height: 38px;
    width: auto;
}

/* App identity — contenedor pill semi-transparente (igual EE.UU.) */
.app-identity {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 6px 16px 6px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.app-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.app-identity-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--blanco);
    text-align: left;
}

.app-identity-name {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.2px;
    line-height: 1.1;
}

.app-identity-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Hero text — exactamente igual a EE.UU. */
.hero-text {
    color: var(--blanco);
}

    .hero-text h1 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(40px, 5.5vw, 64px);
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: -2.5px;
        margin-bottom: 28px;
    }

        .hero-text h1 em {
            font-style: italic;
            font-weight: 600;
            color: var(--amarillo);
            position: relative;
            display: inline-block;
        }

            .hero-text h1 em::after {
                content: '';
                position: absolute;
                bottom: 4px;
                left: -4px;
                right: -4px;
                height: 12px;
                background: var(--amarillo);
                opacity: 0.2;
                z-index: -1;
                border-radius: 4px;
            }

    .hero-text .subtitle {
        font-size: 19px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.55;
        margin-bottom: 36px;
        max-width: 540px;
    }

/* Badges store */
.badges-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.badge-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

    .badge-btn:hover {
        transform: translateY(-2px);
    }

.badge-img {
    height: 56px;
    width: auto;
    display: block;
}

/* === Columna derecha — Video card === */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.video-card {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

.video-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.video-meta-top {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 500;
}

.video-play-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--amarillo);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 201, 60, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(255, 201, 60, 0.5);
    }

    50% {
        box-shadow: 0 8px 50px rgba(255, 201, 60, 0.8);
    }

    100% {
        box-shadow: 0 8px 30px rgba(255, 201, 60, 0.5);
    }
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--azul-deep);
    margin-left: 4px;
}

.video-info {
    color: white;
}

.video-info-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}

.video-info-meta {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 4px;
}

    .video-info-meta::before {
        content: '⏱';
        font-size: 12px;
    }

/* ============================================
        RESPONSIVE
        ============================================ */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .klu-logo-face {
        height: 38px;
    }

    .video-card {
        max-width: 380px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 24px 20px 80px;
    }

    .toggle-pais {
        top: 14px;
        right: 14px;
    }

        .toggle-pais a {
            padding: 6px 12px;
            font-size: 12px;
        }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .badge-img {
        height: 48px;
    }
}

/* ============================================
        SECCIÓN ACTIVA TU CUENTA
        ============================================ */
.activa-section {
    padding: 64px 24px;
    background: var(--crema);
    position: relative;
    overflow: hidden;
}

.activa-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

/* Decoración de fondo sutil (círculo amarillo suave) */
.activa-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 201, 60, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--rojo-simi);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--rojo-simi-soft);
    border-radius: var(--radius-pill);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--azul-deep);
    margin: 0;
}

    .section-title em {
        font-style: italic;
        color: var(--azul-dollarize);
        font-weight: 600;
    }

/* Imagen tarjeta Klu */
.tarjeta-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.tarjeta-klu-img {
    max-width: 240px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(15, 36, 84, 0.18));
    transform: rotate(-4deg);
    transition: transform 0.5s ease;
    border-radius: 18px;
    background: transparent;
}

.tarjeta-hero:hover .tarjeta-klu-img {
    transform: rotate(-2deg) scale(1.04);
}

/* Grid de pasos horizontales */
.pasos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

/* Cada paso */
.paso {
    position: relative;
    text-align: center;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Número grande */
.paso-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: var(--azul-dollarize);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--azul-dollarize) 0%, var(--azul-mid) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}

/* Título del paso */
.paso-titulo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--azul-deep);
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Texto del paso */
.paso-texto {
    font-size: 14px;
    color: var(--gris-texto);
    line-height: 1.5;
    max-width: 220px;
}

/* Flecha conectora entre pasos (solo desktop) */
.paso:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--gris-borde);
}

.paso:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 32px;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--gris-borde);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Bloque CTA: badges + tagline */
.cta-block {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gris-claro);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.badges-row {
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: start; /* agregado */
    justify-content: flex-start;
    display: flex;
}

.activa-section .badges-row {
    flex-wrap: nowrap; /* fuerza una sola línea en desktop/tablet */
    justify-content: center;
    display: flex;
}

.badge-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

    .badge-btn:hover {
        transform: translateY(-2px);
    }

.badge-img {
    height: 56px;
    width: auto;
    display: block;
}

/* Disclaimer: ¿Aún no tienes tu tarjeta? */
.disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--gris-texto);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    display: inline-block;
    max-width: 100%;
}

.disclaimer-wrap {
    text-align: center;
}

.disclaimer a {
    color: var(--rojo-simi);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .disclaimer a:hover {
        color: var(--rojo-simi-deep);
        text-decoration: underline;
    }

/* ============================================
        RESPONSIVE
        ============================================ */
@media (max-width: 960px) {
    .pasos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    /* Quitar flecha del paso 2 (último de la primera fila) */
    .paso:nth-child(2)::after,
    .paso:nth-child(2)::before {
        display: none;
    }

    .paso-num {
        font-size: 60px;
    }
}

@media (max-width: 600px) {
    .activa-section {
        padding: 64px 20px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Quitar todas las flechas en mobile */
    .paso::after,
    .paso::before {
        display: none;
    }

    .tarjeta-klu-img {
        max-width: 180px;
    }

    .section-title {
        font-size: 28px;
    }

    .paso-num {
        font-size: 56px;
    }

    .paso-titulo {
        font-size: 17px;
    }
}

/* ============================================
        SECCIÓN COMPARTIR EE.UU.
        ============================================ */
.compartir-section {
    padding: 100px 24px;
    background: var(--azul-deep);
    position: relative;
    overflow: hidden;
}

    /* Decoración: círculos amarillos sutiles de fondo */
    .compartir-section::before {
        content: '';
        position: absolute;
        top: -200px;
        left: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 201, 60, 0.08) 0%, transparent 70%);
        z-index: 0;
        pointer-events: none;
    }

    .compartir-section::after {
        content: '';
        position: absolute;
        bottom: -250px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(37, 211, 102, 0.06) 0%, transparent 70%);
        z-index: 0;
        pointer-events: none;
    }

.compartir-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Eyebrow */
.compartir-eyebrow {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--amarillo);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(255, 201, 60, 0.12);
    border: 1px solid rgba(255, 201, 60, 0.25);
    border-radius: var(--radius-pill);
}

/* Título */
.compartir-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--blanco);
    margin-bottom: 20px;
}

    .compartir-title em {
        font-style: italic;
        color: var(--amarillo);
        font-weight: 600;
    }

/* Subtítulo */
.compartir-subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Botón principal WhatsApp */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--verde-whatsapp);
    color: var(--blanco);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
    margin-bottom: 24px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .btn-whatsapp:hover {
        background: var(--verde-whatsapp-hover);
        transform: translateY(-3px);
        box-shadow: 0 16px 44px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .btn-whatsapp:active {
        transform: translateY(-1px);
    }

    .btn-whatsapp svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

/* Pulse ring decorativo alrededor del botón */
.btn-whatsapp-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

    .btn-whatsapp-wrap::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: var(--radius-pill);
        border: 2px solid var(--verde-whatsapp);
        transform: translate(-50%, -50%);
        opacity: 0.6;
        animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        pointer-events: none;
    }

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }
}

/* Botones secundarios */
.botones-secundarios {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--blanco);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.25s ease;
    cursor: pointer;
}

    .btn-secundario:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
    }

    .btn-secundario svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    /* Estado "copiado" del botón */
    .btn-secundario.copiado {
        background: var(--amarillo);
        color: var(--azul-deep);
        border-color: var(--amarillo);
    }

        .btn-secundario.copiado:hover {
            background: var(--amarillo);
            transform: translateY(0);
        }

/* ============================================
        RESPONSIVE
        ============================================ */
@media (max-width: 600px) {
    .compartir-section {
        padding: 64px 20px;
    }

    .compartir-title {
        font-size: 30px;
    }

    .compartir-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .btn-whatsapp {
        padding: 18px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 360px;
    }

        .btn-whatsapp svg {
            width: 24px;
            height: 24px;
        }

    .botones-secundarios {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-secundario {
        justify-content: center;
    }
}


/* ============================================
        SECCIÓN FICHAS — heredado de EE.UU. v6_14
        ============================================ */
.fichas-section {
    padding: 100px 24px 120px;
    background: var(--azul-simi-pale);
    position: relative;
}

/* Header */
.fichas-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.fichas-eyebrow {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--azul-dollarize);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--azul-soft);
    border-radius: var(--radius-pill);
}

.fichas-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--azul-deep);
    margin-bottom: 16px;
}

    .fichas-title em {
        font-style: italic;
        color: var(--azul-dollarize);
        font-weight: 600;
    }

.fichas-subtitle {
    font-size: 18px;
    color: var(--gris-texto);
    line-height: 1.55;
}

/* Grid de fichas: 2 columnas x 3 filas */
.fichas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Ficha base: gradiente azul Dollarize -> azul deep */
.ficha {
    background: linear-gradient(160deg, #034EA2 0%, #0F2454 100%);
    border-radius: var(--radius-xl);
    padding: 40px 36px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--blanco);
    text-align: center;
    min-height: 600px;
}

    .ficha::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 201, 60, 0.12) 0%, transparent 60%);
        pointer-events: none;
    }

    .ficha:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-card-hover);
    }

/* Stage central donde va el mockup + decoraciones */
.ficha-stage {
    position: relative;
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    min-height: 380px;
    z-index: 2;
}

/* El mockup del teléfono */
.phone-mock {
    height: 380px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* Decoraciones flotantes - clases generales */
.deco {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

/* ============== FICHA 1: Tu cuenta Klu Dr. Simi ============== */
/* Tarjeta Klu real flotando a la izquierda + mockup */
.ficha-1 .deco-tarjeta {
    width: 170px;
    height: auto;
    bottom: 20px;
    left: -10px;
    z-index: 4;
    transform: rotate(-8deg);
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
    border-radius: 14px;
    background: transparent;
}

/* ============== FICHA 2: Recibe dólares al instante ============== */
/* Banderas a la derecha */
.ficha-2 .deco-flag-us {
    width: 95px;
    height: 95px;
    bottom: 60px;
    right: 25px;
    z-index: 4;
}

.ficha-2 .deco-flag-mx {
    width: 85px;
    height: 85px;
    bottom: 25px;
    right: -10px;
    z-index: 3;
}

/* ============== FICHA 3: Sin comisión ============== */
/* Badge amarillo "$0 comisión" flotante */
.ficha-3 .badge-cero {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: var(--amarillo);
    color: var(--azul-deep);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 22px;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 5;
    box-shadow: 0 12px 28px rgba(255, 201, 60, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(-10deg);
    text-align: center;
}

    .ficha-3 .badge-cero .big {
        font-size: 32px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 2px;
    }

    .ficha-3 .badge-cero .small {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

/* ============== FICHA 4: Úsalo donde quieras ============== */
/* Bolsa Similares a la izquierda */
.ficha-4 .deco-bag {
    width: 165px;
    height: auto;
    bottom: 10px;
    left: -10px;
    z-index: 4;
}

/* ============== FICHA 5: Transfiere a cualquier banco ============== */
/* Bank y cash a la derecha */
.ficha-5 .deco-bank {
    width: 110px;
    height: auto;
    top: 20%;
    right: 5px;
    z-index: 4;
}

.ficha-5 .deco-cash {
    width: 100px;
    height: auto;
    bottom: 20%;
    right: 10px;
    z-index: 4;
}

/* ============== FICHA 6: Todo en una sola app ============== */
/* Solo mockup, sin decoraciones extra */
/* (vacío intencional, mockup centrado) */

/* Texto debajo del stage */
.ficha-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ficha h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.ficha p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    max-width: 340px;
    margin: 0 auto;
}

/* ============================================
        RESPONSIVE
        ============================================ */
@media (max-width: 960px) {
    .fichas-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 540px;
    }

    .ficha {
        padding: 32px 24px;
        min-height: 560px;
    }

    .phone-mock {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .fichas-section {
        padding: 80px 20px;
    }

    .fichas-title {
        font-size: 28px;
    }

    .ficha h3 {
        font-size: 22px;
    }

    .phone-mock {
        height: 300px;
    }

    .ficha-1 .deco-tarjeta {
        width: 130px;
        bottom: 15px;
        left: -5px;
    }

    .ficha-2 .deco-flag-us,
    .ficha-2 .deco-flag-mx {
        width: 70px;
        height: 70px;
    }

    .ficha-3 .badge-cero {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

        .ficha-3 .badge-cero .big {
            font-size: 24px;
        }

        .ficha-3 .badge-cero .small {
            font-size: 9px;
        }

    .ficha-4 .deco-bag {
        width: 120px;
    }

    .ficha-5 .deco-bank,
    .ficha-5 .deco-cash {
        width: 80px;
    }
}

/* ============================================
        SECCIÓN FAQS — heredado de EE.UU. v6_13
        (clases con prefijo .faqs- para evitar colisiones con .section-*)
        ============================================ */
.faqs-section {
    padding: 100px 24px;
    background: var(--azul-pale);
}

.faqs-container {
    max-width: 900px; /* antes 1240px */
    margin: 0 auto;
}

.faqs-header {
    text-align: center;
    margin-bottom: 48px;
}

.faqs-eyebrow {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--azul-dollarize);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--azul-soft);
    border-radius: var(--radius-pill);
}

.faqs-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--azul-deep);
    margin: 0;
}

    .faqs-title em {
        font-style: italic;
        color: var(--azul-dollarize);
        font-weight: 600;
    }

.faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--blanco);
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-2px);
    }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--azul-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.faq-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--azul-pale);
    color: var(--azul-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 800;
}

.faq-item.open .faq-chevron {
    background: var(--rojo-simi);
    color: var(--blanco);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
    font-size: 15px;
    color: var(--gris-texto);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding: 0 26px 24px;
}

/* ============================================
        SECCIÓN MANIFIESTO — heredado de EE.UU. v6_13
        (em en amarillo, no azul como EE.UU.)
        ============================================ */
.manifiesto-section {
    background: #fbf8f1;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

    .manifiesto-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, var(--amarillo-glow) 0%, transparent 60%);
        pointer-events: none;
        opacity: 0;
    }

.manifiesto-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.manifiesto-text {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.8px;
    color: var(--azul-deep);
    margin: 0;
}

    .manifiesto-text em {
        font-style: italic;
        font-weight: 600;
        color: var(--amarillo);
    }

/* ============================================
        SECCIÓN CTA FINAL — heredado de EE.UU. v6_13
        ============================================ */
.cta-final {
    background: var(--azul-deep);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-final::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--amarillo-glow) 0%, transparent 60%);
        pointer-events: none;
    }

.cta-final-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    z-index: 1;
}

.cta-final h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--blanco);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.05;
}

    .cta-final h2 em {
        font-style: italic;
        color: var(--amarillo);
        font-weight: 600;
    }

.cta-final p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-final .stores-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-final .badge-img {
    height: 56px;
}

/* ============================================
        FOOTER — heredado de EE.UU. v6_13
        ============================================ */
.site-footer {
    background: var(--negro);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 24px 40px;
    font-size: 12px;
    line-height: 1.7;
}

    .site-footer .footer-container {
        max-width: 1240px;
        margin: 0 auto;
    }

        .site-footer .footer-container a,
        .site-footer .footer-container a:hover,
        .site-footer .footer-container a:link,
        .site-footer .footer-containera:visited {
            color: white;
        }

    .site-footer .footer-logo {
        margin-bottom: 36px;
        padding-bottom: 36px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .site-footer .footer-logo img {
            height: 40px;
            width: auto;
        }

    .site-footer h4 {
        color: var(--blanco);
        font-size: 13px;
        margin: 20px 0 10px;
        font-weight: 700;
        font-family: 'Bricolage Grotesque', sans-serif;
    }

    .site-footer p {
        margin-bottom: 14px;
    }

/* ============================================
        RESPONSIVE para las nuevas secciones
        ============================================ */
@media (max-width: 960px) {
    .faqs-section {
        padding: 72px 20px;
    }

    .manifiesto-section {
        padding: 72px 20px;
    }

    .manifiesto-text {
        font-size: 22px;
        line-height: 1.4;
    }

    .cta-final {
        padding: 72px 20px;
    }

        .cta-final .badge-img {
            height: 50px;
        }
}

@media (max-width: 600px) {
    .faqs-section {
        padding: 56px 16px;
    }

    .faqs-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px;
    }

    .manifiesto-section {
        padding: 56px 16px;
    }

    .manifiesto-text {
        font-size: 20px;
    }

    .cta-final {
        padding: 56px 16px;
    }

        .cta-final h2 {
            font-size: 30px;
        }

        .cta-final p {
            font-size: 16px;
        }

        .cta-final .badge-img {
            height: 44px;
        }

    .site-footer {
        padding: 48px 16px 32px;
    }
}


/* ============================================================
        SECCIÓN KLU + SIMI — card dentro del footer
        ============================================================ */
.footer-klu-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--azul-deep);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 48px;
}

.footer-klu-text {
    flex: 1;
}

.footer-klu-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blanco);
    margin: 0 0 8px;
    line-height: 1.3;
}

    .footer-klu-title span {
        color: #4caf82;
    }

.footer-klu-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.55;
    max-width: 560px;
}

    .footer-klu-sub a, 
    .footer-klu-sub a:hover, 
    .footer-klu-sub a:link, 
    .footer-klu-sub a:visited {
        color: white;
    }

.footer-klu-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffc857;
    color: var(--azul-deep);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

    .footer-klu-cta:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }

.footer-klu-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}

@media (max-width: 600px) {
    .footer-klu-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }

    .footer-klu-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .badges-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        display: flex;
    }

    .badge-img {
        height: 50px; /* reducir ligeramente en mobile */
    }
}

/* K7 — Badges en una sola línea en sección "Activa tu cuenta" */
.activa-section .badges-row {
    flex-wrap: nowrap; /* fuerza una sola línea en desktop/tablet */
    justify-content: center;
    display: flex;
}

@media (max-width: 480px) {
    .activa-section .badges-row {
        flex-wrap: wrap; /* permite dos renglones en mobile pequeño */
        justify-content: center;
        display: flex;
    }
}

.divulgaciones-link {
    font-size: 13px;
    display: inline-block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
}

