/* landing.css - Estilos hiper-optimizados para conversión SaaS */
:root {
    --primary-orange: #ff730d;
    --dark-corporate: #231f34;
    --whatsapp-green: #25D366;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.landing-page {
    font-family: 'Kanit', sans-serif;
    color: var(--dark-corporate);
    background-color: #fbfbfb;
    line-height: 1.5;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* Header */
.top-header {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logo {
    height: 28px;
}

.advisor-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 50px;
}

.avatar-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.advisor-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.advisor-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-corporate);
}

.advisor-status {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #00A884;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 132, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 168, 132, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 132, 0);
    }
}

/* Hero */
.section-hero {
    padding: 40px 0 100px;
    /* Menos padding superior, más inferior para la flecha */
    background: #ffffff;
    color: var(--dark-corporate);
    position: relative;
    min-height: calc(100vh - 80px);
    /* Altura full view restando cabecera */
    display: flex;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 115, 13, 0.1);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 15px;
    letter-spacing: -1.2px;
    color: var(--dark-corporate);
}

.highlight-orange {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 40px;
}

.perks-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--dark-corporate);
    font-size: 1rem;
}

.cta-wrapper {
    margin-top: 20px;
}

.btn-whatsapp-massive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 168, 132, 0.3);
    transition: transform 0.2s;
}

.btn-whatsapp-massive:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 168, 132, 0.4);
}

.cta-microcopy {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
    font-weight: 500;
}

.cta-micro-demo {
    display: none;
    /* Quitamos bloque demo interno para no recargar visualmente */
}

/* Animación y diseño Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid #aaa;
    border-radius: 20px;
    position: relative;
}

.mouse-icon::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}

/* Hero Google Badge (Micro-widget) */
.hero-google-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    gap: 12px;
    border: 1px solid #efefef;
}

.hgb-logo {
    display: flex;
    align-items: center;
}

.hgb-stars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    position: relative;
    top: -1px;
}

.hgb-stars svg {
    display: block;
}

.hgb-text {
    font-size: 0.45rem;
    font-weight: 800;
    color: #5f6368;
    letter-spacing: 0.3px;
    width: 100%;
    margin-top: 2px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.hgb-separator {
    width: 1px;
    height: 24px;
    background: #dadce0;
}

.hgb-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: #202124;
    font-family: Arial, sans-serif;
    line-height: 1;
}

/* 3.5. GARANTÍAS B2B (ESCROW, ENVÍO, MEDIDA) */
/* 3.5. GARANTÍAS B2B (ACORDEÓN) */
.section-garantias {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.faq-item[open] {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-orange);
}

.faq-pregunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-corporate);
    user-select: none;
    list-style: none;
    /* Elimina flecha default en Webkit */
}

/* Ocultar flecha default en summary (estándar) */
.faq-pregunta::-webkit-details-marker {
    display: none;
}

.faq-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-arrow {
    font-size: 0.9rem;
    color: #888;
    transition: transform 0.3s;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.faq-respuesta {
    padding: 0 25px 25px 25px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid transparent;
    animation: fadeInDown 0.3s ease-in-out;
}

.faq-item[open] .faq-respuesta {
    border-top-color: rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3.5. MEDIA MENTIONS (MENCIONES EN PRENSA) */
.section-media-mentions {
    background-color: var(--dark-corporate);
    padding: 20px 20px 60px;
    color: white;
    overflow: hidden;
}

.media-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
}

.media-carousel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    /* Suaviza los bordes para la entrada y salida de los logos */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.media-carousel-track {
    display: flex;
    width: max-content;
    animation: scrollMedia 25s linear infinite;
}

.media-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMedia {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.media-item {
    text-align: center;
    width: 350px;
    /* Alrededor de 3 a la vez visible (350 x 3 = 1050) dentro de max-width 1100px */
    padding: 0 20px;
    flex-shrink: 0;
}

.media-logo-text {
    font-size: 2.8rem;
    /* Tamaño aumentado como solicitado */
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    line-height: 1;
}

.media-logo-huff {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1.5px;
}

.media-logo-huff .huff-bar {
    color: #0bd3a0;
    font-style: normal;
    margin: 0 6px;
}

.media-logo-eco {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.media-logo-eco .eco-e {
    color: #ff730d;
}

.media-logo-eco .eco-es {
    font-size: 0.5em;
    color: #bcc3c7;
    text-transform: lowercase;
}

.media-logo-abc {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.4em;
}

.media-logo-forbes {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.4em;
}

.media-quote {
    font-size: 1rem;
    /* Texto de la cita ligeramente más pequeño en contraste con el logo */
    line-height: 1.5;
    color: #e2e8f0;
    font-weight: 400;
    padding: 0 15px;
    font-style: italic;
}



@media (max-width: 900px) {
    .media-item {
        width: 300px;
    }
}

@media (max-width: 500px) {
    .media-item {
        width: 260px;
    }
}

/* 4. PRUEBA SOCIAL - DISEÑO CLARO/CONTRASTE */
.section-social-proof {
    padding: 30px 20px;
    background: #fbfbfb;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.sp-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 800;
    margin-bottom: 15px;
}

.sp-rating-box {
    margin-bottom: 10px;
}

.sp-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.sp-stars svg {
    width: 20px;
    height: 20px;
}

.sp-score {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-left: 8px;
}

.sp-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.sp-link {
    font-size: 0.85rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-orange);
    transition: all 0.2s;
    display: inline-block;
    margin-bottom: 10px;
}

.sp-link:hover {
    color: #e66a0c;
    border-bottom-style: solid;
}

.sp-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
    border-top: none;
    /* Removed border */
    padding-top: 0;
}

.sp-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 600;
    background: transparent;
    padding: 0;
    border: none;
}

.sp-indicator svg {
    color: #0bd3a0;
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .sp-trust-indicators {
        flex-direction: column;
        gap: 12px;
    }

    .sp-indicator {
        width: 100%;
        justify-content: center;
    }
}

/* Diferenciador */
.section-diferenciador {
    padding: 100px 0;
    background: #fafafa;
}

.card-dif {
    background: white;
    border-radius: 20px;
    padding: 80px 70px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    max-width: 1200px;
    margin: 0 auto;
}

.dif-header {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dif-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--dark-corporate);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.dif-texto-breve {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 50px;
    line-height: 1.6;
}

.dif-texto-breve p {
    margin-bottom: 24px;
    position: relative;
    padding-left: 35px;
}

.dif-texto-breve p::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--whatsapp-green);
    font-weight: 900;
    font-size: 1.25rem;
}

.dif-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.dif-left-col {
    padding-right: 0;
}

.dif-left-col .dif-texto-breve {
    margin-bottom: 0;
}

.dif-puntos-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dif-punto-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 25px 30px;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dif-punto-row:hover {
    transform: translateX(8px);
    border-color: rgba(255, 115, 13, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.dif-punto-row .dif-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(255, 115, 13, 0.2);
}

.dif-punto-row .dif-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.dif-punto-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-corporate);
    margin-bottom: 6px;
    margin-top: 0;
}

.dif-punto-text p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Pasos */
.section-pasos {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Animación y Flechas para Cómo Funciona */
.title-animated .highlight-orange {
    display: inline-block;
    animation: bounce-small 2s infinite ease-in-out;
}

@keyframes bounce-small {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animated-flow {
    position: relative;
}

.animated-flow .paso-card {
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    .animated-flow .paso-card:not(:last-child)::after {
        content: '\2192';
        /* Flecha gruesa derecha */
        position: absolute;
        top: 25%;
        right: -30px;
        transform: translateY(-50%);
        font-size: 2.2rem;
        color: var(--primary-orange);
        opacity: 0.6;
        z-index: 10;
        animation: slide-right 1.5s infinite;
        pointer-events: none;
    }
}

@keyframes slide-right {
    0% {
        transform: translate(-5px, -50%);
        opacity: 0.3;
    }

    50% {
        transform: translate(5px, -50%);
        opacity: 0.8;
    }

    100% {
        transform: translate(-5px, -50%);
        opacity: 0.3;
    }
}

.paso-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: #fbfbfb;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.hover-anim:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 115, 13, 0.3);
}

.paso-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 12px 25px rgba(255, 115, 13, 0.3);
    transition: all 0.3s ease;
}

.paso-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pulse-soft {
    animation: pulseSoft 3s infinite;
}

@keyframes pulseSoft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.circle-orange {
    background: var(--primary-orange);
}

.circle-dark {
    background: var(--dark-corporate);
}

.circle-green {
    background: var(--whatsapp-green);
}

.paso-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.paso-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Tabs Component - How it works */
.tabs-container {
    max-width: 1000px;
    margin: 40px auto 20px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    padding: 6px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn:hover {
    color: var(--dark-corporate);
}

/* Base style for active tab - orange corporate */
.tab-btn.active {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 115, 13, 0.25);
    transform: translateY(-1px);
}

.tab-body {
    position: relative;
}

.tab-content {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tab-text {
    padding-right: 20px;
}

.tab-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-corporate);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tab-desc {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tab-list {
    list-style: none;
    padding: 0;
}

.tab-list li {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.tab-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-mockup {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mockup-header {
    background: var(--dark-corporate);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.mockup-header::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
    margin-right: 45px;
    box-shadow: 16px 0 0 #ffbd2e, 32px 0 0 #27c93f;
}

.mockup-body {
    background: #f8fafc;
    padding: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup-message {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--whatsapp-green);
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #475569;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.mockup-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    align-self: flex-start;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #64748b;
}

.price-row.highlight {
    background: #fff8eb;
    color: var(--primary-orange);
    border: 1px solid #fed7aa;
}

.price-row.highlight strong {
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .tabs-header {
        flex-wrap: wrap;
        border-radius: 15px;
        width: 100%;
    }

    .tab-btn {
        flex: 1 1 calc(33.333% - 10px);
        padding: 10px;
        font-size: 0.9rem;
    }

    .tab-title {
        font-size: 1.6rem;
    }
}

/* Comparativa */
.section-comparativa {
    padding: 80px 0 100px;
    background: #fafafa;
}

.vs-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.vs-col {
    padding: 50px 40px;
}

.vs-bad {
    background: white;
}

.vs-good {
    background: var(--dark-corporate);
    color: white;
}

.vs-head {
    text-align: center;
    margin-bottom: 30px;
}

.vs-head h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.vs-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bad-badge {
    background: #ffebeb;
    color: #d32f2f;
}

.good-badge {
    background: rgba(0, 168, 132, 0.2);
    color: #00e6b8;
}

.vs-lista {
    list-style: none;
}

.vs-lista li {
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.vs-lista li span {
    font-size: 1.2rem;
}

.vs-good .vs-lista li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-lista li:last-child {
    border-bottom: none;
}

/* CTA Final - Herramienta (High CTR) Compacto */
.section-cta-final {
    padding: 60px 20px 80px;
    background: #0a0a0f;
}

.cta-banner {
    background: linear-gradient(135deg, #181524 0%, #151221 100%);
    border-radius: 24px;
    padding: 50px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 115, 13, 0.25) 0%, rgba(255, 115, 13, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-eyebrow {
    display: none;
    /* Quitamos eyebrow para compactar */
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-micro-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    /* Fondo muy sutil */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Borde semitransparente */
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e0e0e0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-giant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff8c3a 0%, var(--primary-orange) 100%);
    color: white;
    text-decoration: none;
    padding: 24px 60px;
    border-radius: 50px;
    font-size: 1.45rem;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(255, 115, 13, 0.3), inset 0 -4px 0 rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    border: none;
}

.btn-cta-giant:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 45px rgba(255, 115, 13, 0.4), inset 0 -4px 0 rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffa25c 0%, #ff730d 100%);
}

.cta-micro-white {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 25px;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.cta-micro-demo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.demo-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.demo-country {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.dest-row {
    background: rgba(255, 115, 13, 0.15);
    border: 1px solid rgba(255, 115, 13, 0.3);
}

.dest-price {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 900;
}

.demo-footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Footer */
.landing-footer-minimal {
    padding: 30px 0;
    background: white;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
}

/* WhatsApp flotante */
.wa-flotante {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp-green);
    color: #ffffff;
    height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(0, 168, 132, 0.35);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-flotante:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 168, 132, 0.4);
}

.wa-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.wa-modal.is-active {
    display: flex;
}

.wa-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.wa-modal__dialog {
    position: relative;
    width: min(92vw, 520px);
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 26px 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    text-align: center;
    z-index: 1;
}

.wa-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 1.3rem;
    cursor: pointer;
}

.wa-modal__title {
    font-size: 1.5rem;
    margin: 6px 0 8px;
    color: #0f172a;
}

.wa-modal__text {
    font-size: 1rem;
    color: #475569;
    margin: 0 auto 18px;
}

.wa-modal__qr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    background: #f8fafc;
    border-radius: 16px;
    margin: 0 auto 16px;
}

.wa-modal__qr img {
    width: 220px;
    height: 220px;
}

.wa-modal__note {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 18px;
}

.wa-modal__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #0f172a;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wa-modal__secondary:hover {
    background: #0f172a;
    color: #ffffff;
}

.wa-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .perks-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .dif-title {
        font-size: 2rem;
    }

    .dif-texto-breve p {
        font-size: 1.1rem;
    }

    .dif-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dif-punto-row {
        padding: 20px;
    }

    .dif-left-col .dif-texto-breve {
        margin-bottom: 30px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
    }

    .vs-table {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .card-dif {
        padding: 30px 20px;
    }

    .hero-grid-landing {
        grid-template-columns: 1fr;
    }

    .hero-visual-landing {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
}

/* Smartphone UI added for Landing */
.hero-grid-landing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.hero-visual-landing {
    display: flex;
    justify-content: flex-end;
}

.perks-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.smartphone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: none;
    position: relative;
    padding: 14px;
}

.smartphone-container::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 640px;
    border-radius: 44px;
    background: radial-gradient(circle at 50% 35%, rgba(37, 211, 102, 0.18), rgba(10, 143, 122, 0.08) 45%, rgba(255, 115, 13, 0.08) 75%, transparent 100%);
    filter: blur(10px);
    z-index: 0;
}

.smartphone-frame {
    width: 290px;
    height: 600px;
    background: #000;
    border: 10px solid #1a1a1a;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 115, 13, 0.1);
    overflow: hidden;
    transform: none !important;
    transition: all 0.5s ease;
    animation: phoneFloat 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.smartphone-frame:hover {
    transform: scale(1.02) translateY(0);
}

.smartphone-frame::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 50px;
    background: #252525;
    left: -13px;
    top: 120px;
    border-radius: 2px;
    box-shadow: 0 60px 0 #252525;
}

.smartphone-frame::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 40px;
    background: #252525;
    right: -13px;
    top: 160px;
    border-radius: 2px;
}

.smartphone-notch {
    width: 150px;
    height: 28px;
    background: #050505;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    z-index: 30;
    width: 120px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

/* Nuevos Indicadores de Confianza Bajo el Mockup */
.mockup-indicators {
    margin-top: 30px;
    text-align: center;
    color: #444;
}

.mockup-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.mockup-checks span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
}

.check-icon {
    width: 16px;
    height: 16px;
    stroke: #00e676;
    /* Verde validación */
}

.mockup-last-query {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.mockup-last-query {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Chat UI Dark Mode Custom */
.mobile-screen {
    width: 100%;
    height: 100%;
    background: #e5ddd5;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
}

.chat-header {
    background: #0a8f7a;
    padding: 35px 15px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d7d7d7;
}

.chat-status {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-status strong {
    font-size: 1rem;
    font-weight: 600;
}

.status-online {
    font-size: 0.8rem;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 168, 132, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 168, 132, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 168, 132, 0);
    }
}

.chat-actions {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #e5ddd5;
    background-image: none;
}

/* Modificamos Scrollbar */
.chat-body::-webkit-scrollbar {
    width: 4px;
}

.chat-body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.chat-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: bottom left;
    opacity: 0;
    transform: scale(0.9);
}

.chat-msg strong {
    font-weight: 700;
}

.msg-user {
    background: #dcf8c6;
    color: #303030;
    align-self: flex-end;
    border-top-right-radius: 0;
    transform-origin: bottom right;
}

.msg-bot {
    background: #ffffff;
    color: #303030;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Nuevos Estilos System (Mockup) */
.msg-system-action {
    background: transparent;
    color: rgba(48, 48, 48, 0.7);
    font-style: italic;
    font-size: 0.85rem;
    box-shadow: none;
    padding: 0;
    align-self: center;
    border-radius: 0;
}

.msg-system-time {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(48, 48, 48, 0.75);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    align-self: center;
    text-align: center;
    box-shadow: none;
}

.msg-price-bold {
    font-size: 1.15rem;
    font-weight: 700;
}

.msg-price-dest {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.msg-ahorro {
    background: rgba(0, 168, 132, 0.1);
    border: 1px solid rgba(0, 168, 132, 0.2);
    color: #00e6b8;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.msg-ahorro-box {
    margin-top: 15px;
    padding: 10px 12px;
    background: rgba(0, 168, 132, 0.1);
    border: 1px solid rgba(0, 168, 132, 0.2);
    border-radius: 6px;
    font-size: 0.95rem;
    color: #00e6b8;
    font-weight: 700;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.typing-indicator {
    font-style: italic;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.typing-indicator::after {
    content: '...';
    display: inline-block;
    width: 20px;
    animation: blinkDots 1.5s infinite;
}

@keyframes blinkDots {
    0% {
        content: '.';
    }

    33% {
        content: '..';
    }

    66% {
        content: '...';
    }
}

.chat-input-sim {
    background: #efefef;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-placeholder {
    flex-grow: 1;
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 18px;
    color: #8a8a8a;
    font-size: 0.8rem;
}

.send-circle {
    width: 32px;
    height: 32px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* =========================================
   RESPONSIVE DESIGN (OVERRIDES GLOBALES)
   ========================================= */
@media (max-width: 900px) {

    /* Hero Section */
    .hero-grid-landing {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto;
        font-size: 1.15rem;
    }

    .perks-col {
        align-items: center;
        margin: 0 auto 30px;
    }

    .perk-item {
        justify-content: center;
    }

    .hero-visual-landing {
        justify-content: center;
        margin-top: 10px;
        transform: scale(0.9);
        transform-origin: top center;
    }

    /* Diferenciador */
    .card-dif {
        padding: 40px 25px;
        text-align: center;
    }

    .dif-title {
        font-size: 2.1rem;
    }

    .dif-texto-breve p {
        justify-content: center;
    }

    .dif-puntos {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Hero Google Badge*/
    .hero-google-badge {
        margin: 15px auto 0;
    }

    /* Pasos / Cómo funciona */
    .pasos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .paso-card {
        padding: 30px 20px;
    }

    /* Comparativa */
    .vs-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA Final */
    .section-cta-final {
        padding: 40px 15px 80px;
    }

    .cta-banner {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .btn-dark-massive {
        padding: 18px 30px;
        font-size: 1.2rem;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}