﻿/* ============================================================
   DBSOFT – Hoja de estilos principal
   Proyecto: MVC 4.8 · Archivo: Content/dbsoft.css
   ============================================================ */

:root {
    --navy: #0D2D5E;
    --navy-dark: #081A3A;
    --cyan: #00B4D8;
    --cyan-light: #90E0EF;
    --white: #FFFFFF;
    --gray-bg: #F4F8FC;
    --gray-mid: #E2EBF5;
    --gray-text: #4A5568;
    --dark-bg: #0A1628;
    --card-border: rgba(0,180,216,0.18);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1A202C;
    background: var(--white);
    overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.03em;
}

    .topbar a {
        color: var(--cyan-light);
        text-decoration: none;
        font-weight: 600;
    }

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-mid);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .logo-icon::after {
        content: '';
        width: 14px;
        height: 14px;
        border: 3px solid white;
        border-radius: 50%;
        position: absolute;
    }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--gray-text);
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--navy);
        }

.nav-cta {
    background: var(--cyan);
    color: var(--navy-dark) !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: #0096b7 !important;
    }

/* ── HERO ── */
.hero {
    min-height: 88vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #0D4A7A 100%);
    display: flex;
    align-items: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
        bottom: -80px;
        left: 10%;
        pointer-events: none;
    }

.hero-content {
    max-width: 640px;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(0,180,216,0.15);
    border: 1px solid rgba(0,180,216,0.4);
    color: var(--cyan-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}

    .hero h1 span {
        color: var(--cyan);
    }

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--cyan);
    color: var(--navy-dark);
    padding: 14px 30px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-block;
}

    .btn-primary:hover {
        background: #00c8f0;
        transform: translateY(-1px);
    }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    padding: 13px 28px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--cyan);
        color: var(--cyan);
    }

.hero-stats {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    z-index: 1;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,180,216,0.2);
    border-radius: 12px;
    padding: 22px 24px;
    backdrop-filter: blur(8px);
    min-width: 160px;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* ── SECTIONS BASE ── */
section {
    padding: 90px 5%;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

    .section-title.light {
        color: var(--white);
    }

.section-sub {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 56px;
}

    .section-sub.light {
        color: rgba(255,255,255,0.65);
    }

/* ── PROBLEMA ── */
.section-dark {
    background: var(--dark-bg);
    padding: 90px 5%;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.problem-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
    background: rgba(255,255,255,0.03);
    transition: border-color 0.3s;
}

    .problem-card:hover {
        border-color: rgba(0,180,216,0.3);
    }

.problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,180,216,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.problem-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

.problem-card .result {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--cyan);
    font-weight: 600;
}

/* ── PLATAFORMA SICS ── */
.platform-section {
    background: var(--gray-bg);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.platform-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 14px;
    padding: 32px 28px;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

    .platform-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--cyan);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .platform-card:hover::before {
        opacity: 1;
    }

    .platform-card:hover {
        box-shadow: 0 12px 40px rgba(13,45,94,0.1);
        transform: translateY(-3px);
    }

    .platform-card h3 {
        font-family: 'Syne', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
        margin-top: 16px;
    }

    .platform-card .sub {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--cyan);
        margin-bottom: 12px;
    }

    .platform-card p {
        font-size: 0.87rem;
        color: var(--gray-text);
        line-height: 1.6;
    }

.p-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* ── RESULTADOS ── */
.results-section {
    background: var(--navy);
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.result-item {
    background: rgba(13,45,94,0.9);
    padding: 40px 24px;
    text-align: center;
    transition: background 0.3s;
}

    .result-item:hover {
        background: rgba(0,180,216,0.12);
    }

.result-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ── CICLO 360 ── */
.workflow-section {
    background: var(--white);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--gray-mid);
    border-radius: 16px;
    overflow: hidden;
}

.workflow-step {
    padding: 28px 24px;
    border-right: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
}

    .workflow-step:nth-child(3n) {
        border-right: none;
    }

    .workflow-step:nth-child(n+7) {
        border-bottom: none;
    }

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-mid);
    line-height: 1;
    margin-bottom: 12px;
}

.workflow-step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 0.83rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ── AGENTES IA ── */
.ai-section {
    background: #080F1E;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

    .ai-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(0,180,216,0.07) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(100,0,255,0.05) 0%, transparent 50%);
        pointer-events: none;
    }

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,216,0.1);
    border: 1px solid rgba(0,180,216,0.3);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

    .ai-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--cyan);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.ai-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 64px;
}

    .ai-header h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.1;
    }

        .ai-header h2 em {
            font-style: normal;
            color: var(--cyan);
        }

    .ai-header p {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.75;
        margin-top: 16px;
    }

.ai-right p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    padding-top: 8px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.agent-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
}

    .agent-card:hover {
        border-color: rgba(0,180,216,0.35);
        background: rgba(0,180,216,0.04);
    }

    .agent-card.featured {
        border-color: rgba(0,180,216,0.4);
        background: rgba(0,180,216,0.05);
        grid-column: span 2;
    }

.agent-status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 100px;
}

.status-live {
    background: rgba(0,230,118,0.12);
    color: #00E676;
    border: 1px solid rgba(0,230,118,0.3);
}

.status-beta {
    background: rgba(255,193,7,0.1);
    color: #FFC107;
    border: 1px solid rgba(255,193,7,0.25);
}

.agent-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(0,180,216,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: rgba(0,180,216,0.06);
}

.agent-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.agent-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 18px;
}

.agent-cycle {
    margin-top: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cycle-step {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .cycle-step.done {
        color: rgba(0,230,118,0.7);
        border-color: rgba(0,230,118,0.2);
    }

    .cycle-step.active {
        color: var(--cyan);
        border-color: rgba(0,180,216,0.3);
    }

/* ── COMPARATIVA ── */
.compare-section {
    background: var(--gray-bg);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,45,94,0.07);
}

    .compare-table th {
        background: var(--navy);
        color: white;
        padding: 16px 20px;
        text-align: center;
        font-family: 'Syne', sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

        .compare-table th:first-child {
            text-align: left;
        }

        .compare-table th.highlight {
            background: var(--cyan);
            color: var(--navy-dark);
        }

    .compare-table td {
        padding: 14px 20px;
        text-align: center;
        font-size: 0.87rem;
        border-bottom: 1px solid var(--gray-mid);
        color: var(--gray-text);
    }

        .compare-table td:first-child {
            text-align: left;
            font-weight: 500;
            color: var(--navy);
        }

    .compare-table tr:last-child td {
        border-bottom: none;
    }

    .compare-table tr:nth-child(even) td {
        background: rgba(244,248,252,0.7);
    }

.check {
    color: #00B04F;
    font-size: 1.1rem;
}

.partial {
    color: #F59E0B;
    font-size: 1.1rem;
}

.cross {
    color: #E53E3E;
    font-size: 1.1rem;
}

/* ── ACTIVACIÓN INMEDIATA ── */
.activation-section {
    background: var(--white);
}

.activation-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 20px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
}

    .activation-hero::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.activation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,230,118,0.12);
    border: 1px solid rgba(0,230,118,0.3);
    color: #00E676;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

    .activation-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #00E676;
        animation: pulse 2s infinite;
    }

.activation-hero h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

    .activation-hero h3 span {
        color: var(--cyan);
    }

.activation-hero p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.activation-steps-inline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.act-inline-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.act-inline-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy-dark);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.act-inline-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

    .act-inline-text strong {
        color: var(--white);
    }

.videos-label {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.videos-sub {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.video-card {
    border: 1px solid var(--gray-mid);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
}

    .video-card:hover {
        box-shadow: 0 10px 32px rgba(13,45,94,0.1);
        transform: translateY(-3px);
    }

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .video-thumb::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 40% 40%, rgba(0,180,216,0.2) 0%, transparent 65%);
    }

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.2s, background 0.2s;
}

.video-card:hover .play-btn {
    background: var(--cyan);
    transform: scale(1.1);
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 13px;
    border-color: transparent transparent transparent var(--navy);
    margin-left: 3px;
}

.video-card:hover .play-btn::after {
    border-color: transparent transparent transparent white;
}

.video-module {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.video-info {
    padding: 16px;
}

    .video-info h4 {
        font-family: 'Syne', sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .video-info p {
        font-size: 0.77rem;
        color: var(--gray-text);
        line-height: 1.5;
        margin-bottom: 10px;
    }

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-duration {
    font-size: 0.72rem;
    color: var(--cyan);
    font-weight: 600;
}

.video-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--gray-bg);
    color: var(--gray-text);
    font-weight: 500;
}

.support-strip {
    margin-top: 40px;
    background: var(--gray-bg);
    border: 1px solid var(--gray-mid);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.support-strip-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.support-strip-left h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.support-strip-left p {
    font-size: 0.83rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.support-strip-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.support-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 500;
}

/* ── PRECIOS ── */
.pricing-section {
    background: var(--gray-bg);
    padding: 90px 5%;
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 16px;
    gap: 4px;
}

.ptoggle-btn {
    padding: 10px 28px;
    border-radius: 7px;
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--gray-text);
    transition: all 0.2s;
}

    .ptoggle-btn.active {
        background: var(--navy);
        color: var(--white);
    }

.currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 10px;
    padding: 4px 8px;
}

.ctoggle-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--gray-text);
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

    .ctoggle-btn.active {
        background: var(--cyan);
        color: var(--navy-dark);
    }

.pricing-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 18px;
    padding: 36px 32px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(13,45,94,0.07);
    text-align: left;
}

.pricing-qty {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.pricing-qty-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.qty-badge {
    font-size: 0.75rem;
    background: rgba(0,180,216,0.1);
    color: var(--cyan);
    border: 1px solid rgba(0,180,216,0.25);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray-mid);
    background: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .qty-btn:hover {
        background: var(--gray-bg);
        border-color: var(--cyan);
    }

.qty-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    min-width: 32px;
    text-align: center;
}

.colombia-note {
    background: rgba(0,180,216,0.06);
    border: 1px solid rgba(0,180,216,0.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-display {
    margin-bottom: 8px;
}

.price-main {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.price-period {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-left: 6px;
}

.price-breakdown {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 24px;
}

    .price-breakdown span {
        color: var(--cyan);
        font-weight: 700;
    }

.pricing-features {
    border-top: 1px solid var(--gray-mid);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.87rem;
}

.pf-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
}

.pf-icon {
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
}

.pf-value {
    font-weight: 600;
    color: var(--navy);
}

    .pf-value.included {
        color: #00A650;
    }

    .pf-value.not-included {
        color: #A0AEC0;
        font-weight: 400;
    }

    .pf-value.unlimited {
        background: rgba(0,180,216,0.1);
        color: var(--cyan);
        padding: 2px 10px;
        border-radius: 100px;
        font-size: 0.78rem;
        font-weight: 700;
    }

.unlock-note {
    background: #FFF8E6;
    border: 1px solid #F6C90E33;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: #8A6A00;
    margin-bottom: 20px;
    line-height: 1.5;
}

    .unlock-note strong {
        color: #6A4F00;
    }

.pricing-cta-btn {
    display: block;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 9px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 10px;
}

    .pricing-cta-btn:hover {
        background: var(--cyan);
        color: var(--navy-dark);
    }

.pricing-wa-btn {
    display: block;
    width: 100%;
    border: 1px solid var(--gray-mid);
    color: var(--gray-text);
    text-align: center;
    padding: 12px;
    border-radius: 9px;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
}

    .pricing-wa-btn:hover {
        border-color: var(--cyan);
        color: var(--cyan);
    }

.pricing-footer-note {
    font-size: 0.75rem;
    color: var(--gray-text);
    text-align: center;
    margin-top: 14px;
}

/* ── CLIENTES ── */
.clients-section {
    background: var(--gray-bg);
    text-align: center;
    padding: 70px 5%;
}

.clients-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 36px;
    margin-bottom: 50px;
}

.client-logo {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 8px;
    padding: 12px 22px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-text);
    letter-spacing: 0.04em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}

.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 14px;
    padding: 32px;
    position: relative;
}

    .testimonial::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 24px;
        font-family: 'Syne', sans-serif;
        font-size: 4rem;
        color: var(--cyan);
        line-height: 1;
        opacity: 0.3;
    }

    .testimonial p {
        font-size: 0.93rem;
        color: var(--gray-text);
        line-height: 1.7;
        padding-top: 24px;
        margin-bottom: 20px;
    }

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* ── COMPLIANCE ── */
.compliance-section {
    background: var(--navy);
    padding: 80px 5%;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.compliance-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 24px 22px;
    background: rgba(255,255,255,0.03);
}

    .compliance-item h4 {
        font-family: 'Syne', sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--cyan);
        margin-bottom: 8px;
    }

    .compliance-item p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.6;
    }

/* ── CTA FINAL ── */
.cta-section {
    background: linear-gradient(135deg, #00B4D8 0%, #0096b7 50%, var(--navy) 100%);
    padding: 80px 5%;
    text-align: center;
}

    .cta-section h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 16px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
        margin-bottom: 36px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--navy-dark);
    padding: 14px 30px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

    .btn-white:hover {
        background: var(--gray-bg);
        transform: translateY(-1px);
    }

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    padding: 50px 5% 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}

.footer-brand p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
}

.footer-col h5 {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.footer-col a {
    display: block;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--cyan);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-stats {
        display: none;
    }

    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agents-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agent-card.featured {
        grid-column: span 1;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .activation-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .compliance-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .compare-table {
        font-size: 0.78rem;
    }

    .ai-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .workflow-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agents-grid {
        grid-template-columns: 1fr;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }
}
