/* ── Horyzon Clínicas — Landing tech + consultório ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Escala tonal — slate azulado (tom sobre tom) */
    --tone-0: #fafbfd;
    --tone-50: #f3f5f9;
    --tone-100: #e9edf3;
    --tone-150: #dfe4ec;
    --tone-200: #d2d9e4;
    --tone-300: #b3bdc9;
    --tone-400: #8b96a8;
    --tone-500: #667085;
    --tone-600: #4f5969;
    --tone-700: #3a4352;
    --tone-800: #28303c;
    --tone-900: #1a2029;

    /* Marca — índigo mais vivo */
    --brand: #5166d6;
    --brand-hover: #4358c4;
    --brand-soft: #e8ecff;
    --brand-softer: #f2f4ff;
    --brand-border: #b8c4f0;
    --brand-muted: #7b8fd4;

    /* Acento — teal mais presente */
    --accent: #15a390;
    --accent-hover: #0f8577;
    --accent-soft: #dff7f3;
    --accent-border: #8fd9cc;
    --accent-muted: #4db8a8;

    /* Cores extras para cards */
    --violet: #7c6fcf;
    --violet-soft: #f0ecff;
    --violet-border: #cfc8f5;
    --sky: #3b9fd4;
    --sky-soft: #e3f4fc;
    --sky-border: #a8d8f0;
    --amber: #e8983a;
    --amber-soft: #fff4e5;
    --amber-border: #f5d4a8;

    /* Semânticas */
    --success: #22a06b;
    --success-soft: #e3f7ed;
    --danger: #d47474;
    --danger-soft: #fceeee;
    --danger-border: #f0c8c8;
    --wpp: #25c06a;
    --wpp-hover: #1fad5c;
    --wpp-soft: #e5f9ee;
    --wpp-border: #a8e8c4;

    /* Aliases */
    --bg: var(--tone-50);
    --bg-subtle: var(--tone-100);
    --bg-elevated: var(--tone-0);
    --bg-card: var(--tone-0);
    --border: var(--tone-150);
    --border-hover: var(--tone-200);
    --text: var(--tone-800);
    --text-muted: var(--tone-500);
    --primary: var(--brand);
    --primary-light: var(--brand-muted);
    --teal: var(--accent);
    --teal-dim: var(--accent-soft);
    --gradient: linear-gradient(135deg, #5166d6 0%, #15a390 100%);
    --gradient-soft: linear-gradient(135deg, #e8ecff 0%, #dff7f3 100%);

    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(40, 48, 60, 0.04), 0 8px 24px rgba(40, 48, 60, 0.05);
    --shadow-lg: 0 16px 48px rgba(40, 48, 60, 0.07);
    --glass: none;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(81, 102, 214, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(21, 163, 144, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--tone-50) 0%, var(--tone-100) 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.text-accent { color: var(--teal); }

/* Background — clean, sem orbs */
.bg-orbs { display: none; }

.glass {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* ── Nav ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 251, 253, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
}

.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; display: flex; flex-direction: column; line-height: 1.1; }
.logo-sub { font-size: 0.65rem; font-weight: 600; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 2px 12px rgba(81, 102, 214, 0.28);
}
.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #4358c4 0%, #0f8577 100%);
    box-shadow: 0 4px 16px rgba(81, 102, 214, 0.35);
}

.btn-ghost {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-subtle); border-color: var(--border-hover); }

.btn-cta {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: 16px;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(81, 102, 214, 0.25);
    margin-top: 12px;
}
.btn-cta:hover { background: linear-gradient(135deg, #4358c4 0%, #0f8577 100%); }

.btn-pix { background: var(--success); color: white; flex: 1; }
.btn-card { background: var(--primary); color: white; flex: 1; }

/* ── Tags ── */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.section-tag.tag-red {
    color: var(--danger);
    background: var(--danger-soft);
    border-color: var(--danger-border);
}
.section-tag.tag-teal { color: var(--accent); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 20px;
    padding: 8px 16px 8px 10px;
    background: var(--teal-dim);
    border: 1px solid var(--accent-border);
    border-radius: 999px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(90, 143, 138, 0.35);
    animation: pulse 2s infinite;
}
.pulse-dot.sm { width: 6px; height: 6px; display: inline-block; vertical-align: middle; margin-right: 4px; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(90, 143, 138, 0.3); }
    70% { box-shadow: 0 0 0 6px rgba(90, 143, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 143, 138, 0); }
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero shell (fundo com imagem) ── */
.hero-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 48%;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg,
            rgba(243, 245, 249, 0.86) 0%,
            rgba(233, 237, 243, 0.58) 36%,
            rgba(243, 245, 249, 0.22) 58%,
            rgba(250, 251, 253, 0.08) 100%);
}

.hero-shell > .nav,
.hero-shell > .hero {
    position: relative;
    z-index: 1;
}

.nav-hero {
    background: rgba(250, 251, 253, 0.42);
    border-bottom-color: rgba(223, 228, 236, 0.45);
}

.hero-copy {
    padding: 28px 32px;
    margin: -12px 0;
    background: rgba(250, 251, 253, 0.78);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(223, 228, 236, 0.55);
    box-shadow: var(--shadow);
}

/* ── Hero ── */
.hero { padding: 56px 0 64px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(250, 251, 253, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-item span { font-size: 0.78rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

/* Phone mock */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 20px 0; }

.phone-mock {
    position: relative;
    width: 100%;
    max-width: 320px;
    background: linear-gradient(180deg, var(--tone-200) 0%, var(--tone-150) 100%);
    border: 1px solid var(--tone-300);
    border-radius: 32px;
    padding: 12px 14px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.phone-notch {
    width: 80px;
    height: 6px;
    background: var(--tone-300);
    border-radius: 3px;
    margin: 4px auto 16px;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--tone-0);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.phone-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.phone-header strong { display: block; font-size: 0.85rem; }
.phone-header span { font-size: 0.7rem; color: var(--teal); }

.phone-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 8px;
    background: var(--tone-0);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.bubble {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.78rem;
    line-height: 1.45;
    animation: slideUp 0.5s ease backwards;
}

.bubble:nth-child(1) { animation-delay: 0.1s; }
.bubble:nth-child(2) { animation-delay: 0.25s; }
.bubble:nth-child(3) { animation-delay: 0.4s; }
.bubble:nth-child(4) { animation-delay: 0.55s; }
.bubble:nth-child(5) { animation-delay: 0.7s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bubble.bot {
    align-self: flex-start;
    background: var(--tone-100);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    color: var(--text);
}

.bubble.user {
    align-self: flex-end;
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
    border-bottom-right-radius: 4px;
    color: var(--text);
}

.bubble.confirm {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--accent-hover);
}

.phone-glow { display: none; }

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(250, 251, 253, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    animation: floatBadge 5s ease-in-out infinite;
}

.float-badge strong { display: block; font-size: 0.82rem; }
.float-badge small { font-size: 0.72rem; color: var(--text-muted); }
.fb-icon { font-size: 1.2rem; }

.float-1 { top: 10%; right: -8%; animation-delay: 0s; }
.float-2 { bottom: 15%; left: -10%; animation-delay: -2s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Marquee / integrações ── */
.marquee-section {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, var(--brand-softer) 0%, var(--accent-soft) 50%, var(--brand-softer) 100%);
}

.marquee-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.integration-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 12px;
    background: var(--tone-0);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--tone-700);
    flex-shrink: 0;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.chip-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1;
}

.integration-chip:nth-child(6n+1) .chip-icon { background: var(--brand-soft); border-color: var(--brand-border); }
.integration-chip:nth-child(6n+2) .chip-icon { background: var(--accent-soft); border-color: var(--accent-border); }
.integration-chip:nth-child(6n+3) .chip-icon { background: var(--sky-soft); border-color: var(--sky-border); }
.integration-chip:nth-child(6n+4) .chip-icon { background: var(--violet-soft); border-color: var(--violet-border); }
.integration-chip:nth-child(6n+5) .chip-icon { background: var(--success-soft); border-color: var(--accent-border); }
.integration-chip:nth-child(6n+6) .chip-icon { background: var(--amber-soft); border-color: var(--amber-border); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Clientes ── */
.clientes {
    padding: 44px 0 52px;
    background: var(--tone-0);
}

.clientes-header {
    margin-bottom: 28px;
}

.clientes-header h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.clientes-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 32px;
    list-style: none;
    margin: 0 auto;
    padding: 18px 36px;
    max-width: 820px;
    background: linear-gradient(90deg, var(--brand-softer) 0%, var(--tone-50) 50%, var(--brand-softer) 100%);
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.cliente-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 52px;
    overflow: hidden;
}

.clientes-strip img,
.cliente-item img {
    display: block;
    width: 96px;
    height: 52px;
    max-width: 96px;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.cliente-item:hover img {
    opacity: 1;
}

/* ── Pain section ── */
.pain-section { padding: 72px 0; }

.pain-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.pain-block {
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pain-before { background: var(--danger-soft); border-color: var(--danger-border); }
.pain-after { background: var(--accent-soft); border-color: var(--accent-border); }

.pain-block h3 { font-size: 1.2rem; margin-bottom: 20px; }
.pain-block ul { list-style: none; }
.pain-block li {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.pain-block li:last-child { border-bottom: none; }
.pain-before li::before { content: '✕ '; color: var(--danger); font-weight: 700; }
.pain-after li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

.pain-arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--teal);
    opacity: 0.6;
}

/* ── Sections ── */
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; line-height: 1.15; }
.section-header p { color: var(--text-muted); font-size: 1.02rem; max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── Resultados ── */
.resultados { padding: 80px 0 40px; }

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.result-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.25s, box-shadow 0.25s;
    box-shadow: var(--shadow);
}

.result-card:hover {
    border-color: var(--brand-border);
    box-shadow: 0 12px 32px rgba(81, 102, 214, 0.1);
}

.result-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.result-card:nth-child(1) .result-icon { background: var(--brand-soft); border-color: var(--brand-border); }
.result-card:nth-child(2) .result-icon { background: var(--accent-soft); border-color: var(--accent-border); }
.result-card:nth-child(3) .result-icon { background: var(--sky-soft); border-color: var(--sky-border); }
.result-card:nth-child(4) .result-icon { background: var(--violet-soft); border-color: var(--violet-border); }
.result-card:nth-child(5) .result-icon { background: var(--amber-soft); border-color: var(--amber-border); }
.result-card:nth-child(6) .result-icon { background: var(--success-soft); border-color: var(--accent-border); }

.result-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.result-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

/* ── Como funciona ── */
.como-funciona {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--brand-softer) 0%, var(--tone-100) 100%);
}

.como-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.como-visual {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--tone-0);
}

.como-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 20%;
}

.como-showcase-copy h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.como-showcase-copy > p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.como-showcase-list {
    list-style: none;
}

.como-showcase-list li {
    position: relative;
    padding: 10px 0 10px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.como-showcase-list li:last-child { border-bottom: none; }

.como-showcase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.flow-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 16px;
}

.flow-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.flow-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.flow-step p { font-size: 0.88rem; color: var(--text-muted); }

.flow-line {
    width: 60px;
    height: 2px;
    background: var(--gradient);
    margin-top: 28px;
    flex-shrink: 0;
    opacity: 0.45;
}

/* ── Solução adaptada ── */
.solucoes { padding: 80px 0; }

.adapted-solution {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 36px;
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--tone-0) 100%);
    box-shadow: 0 8px 32px rgba(21, 163, 144, 0.12);
    text-align: center;
}

.adapted-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0 0 32px;
    text-align: left;
}

.adapted-features li {
    position: relative;
    padding-left: 28px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
}

.adapted-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 800;
}

.adapted-solution .btn {
    width: 100%;
    max-width: 360px;
}

.rec-next-copy {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

/* ── Discover / Chat ── */
.discover {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.discover-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.discover-intro h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.discover-intro p { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; }

.discover-benefits { list-style: none; margin-bottom: 24px; }
.discover-benefits li {
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 8px 0 8px 24px;
    position: relative;
}
.discover-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

.discover-tech { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-chip {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    background: var(--gradient-soft);
    border: 1px solid var(--brand-border);
    border-radius: 999px;
    color: var(--primary);
}

.chat-widget {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    height: 500px;
    background: var(--bg-card);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.chat-header strong { display: block; font-size: 0.92rem; }
.chat-header span { font-size: 0.75rem; color: var(--teal); display: flex; align-items: center; gap: 4px; }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg { display: flex; }
.msg-bot { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }

.msg-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.msg-bot .msg-bubble {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    color: var(--text);
}

.msg-user .msg-bubble {
    background: var(--brand-soft);
    border: 1px solid var(--brand-border);
    border-bottom-right-radius: 4px;
    color: var(--text);
}

.chat-input-area { padding: 16px 18px; border-top: 1px solid var(--border); background: var(--bg-subtle); }
.chat-options { display: flex; flex-direction: column; gap: 8px; }

.chat-opt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.86rem;
    text-align: left;
    font-family: inherit;
    transition: all 0.2s;
}
.chat-opt:hover {
    border-color: var(--primary);
    background: var(--gradient-soft);
}

/* ── Recommendation ── */
.recommendation { padding: 48px 0; }

.recommendation-card {
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-border);
}

.rec-header h2 { font-size: 1.6rem; margin-top: 8px; font-weight: 800; }
.rec-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 28px; }
.rec-solution h3 { font-size: 1.25rem; margin-bottom: 8px; }
.rec-solution p { color: var(--text-muted); margin-bottom: 16px; }
.rec-solution ul { list-style: none; }
.rec-solution li { padding: 6px 0; font-size: 0.9rem; }
.rec-solution li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

.rec-investment h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.rec-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.rec-row strong { font-size: 1.08rem; font-family: var(--font-display); }
.rec-row.rec-note { border-bottom: none; padding-top: 0; }
.rec-row.rec-note small { color: var(--text-muted); font-size: 0.78rem; }

.price-disclaimer { font-size: 0.76rem; color: var(--text-muted); margin: 12px 0; line-height: 1.45; }

/* ── Configurator ── */
.montar { padding: 80px 0; background: linear-gradient(180deg, var(--accent-soft) 0%, var(--tone-100) 100%); }

.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.configurator { border-radius: var(--radius); padding: 32px; }

.steps-indicator { display: flex; gap: 6px; margin-bottom: 28px; }
.step-dot { flex: 1; height: 3px; background: var(--border); border-radius: 2px; transition: background 0.3s; }
.step-dot.active { background: var(--brand); }
.step-dot.done { background: var(--accent); }

.step-panel { display: none; animation: fadeIn 0.35s ease; }
.step-panel.active { display: block; }
.step-panel h3 { font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; font-family: var(--font-display); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.solutions-picker { display: flex; flex-direction: column; gap: 10px; }
.objective-card { cursor: pointer; }
.objective-card input { display: none; }
.objective-face {
    padding: 18px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.objective-card input:checked + .objective-face {
    border-color: var(--primary);
    background: var(--gradient-soft);
}
.objective-face strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.objective-face span { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.objective-face small { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

.radio-cards { display: flex; flex-direction: column; gap: 8px; }
.toggle-group { display: flex; flex-direction: column; gap: 10px; }

.toggle-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s;
}
.toggle-card input { display: none; }
.toggle-card:has(input:checked) { border-color: var(--primary); background: var(--gradient-soft); }
.toggle-card span { font-weight: 600; font-size: 0.92rem; }
.toggle-card small { color: var(--text-muted); font-size: 0.8rem; }
.radio-inline { flex-direction: row; align-items: center; }
.radio-inline span { font-weight: 500; }

.integrations-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.integration-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.integration-check:has(input:checked) { border-color: var(--primary); background: var(--gradient-soft); }
.integration-check input { accent-color: var(--primary); }

.hint { color: var(--text-muted); font-size: 0.8rem; margin-top: 14px; line-height: 1.5; }

.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

/* Investment panel */
.investment-panel {
    position: sticky;
    top: 88px;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.panel-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 4px;
}

.investment-panel h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.solution-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; color: var(--text-muted); }
.solution-features { list-style: none; margin-bottom: 18px; }
.solution-features li { font-size: 0.84rem; padding: 4px 0; color: var(--text-muted); }
.solution-features li::before { content: '✓ '; color: var(--teal); }

.investment-totals { border-top: 1px solid var(--border); padding-top: 14px; }
.total-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; }
.total-row strong { font-family: var(--font-display); font-size: 1.05rem; }
.total-row.highlight { background: var(--bg-subtle); margin: 0 -12px; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); }
.total-row.highlight strong { color: var(--teal); }
.total-row.prazo strong { color: var(--primary); font-size: 0.95rem; }
.panel-note { text-align: center; font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; }

/* ── Testimonials ── */
.testimonials { padding: 80px 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial {
    padding: 28px;
    border-radius: var(--radius);
    margin: 0;
}

.testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-soft);
    border: 1px solid var(--brand-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
}

.testimonial footer strong { display: block; font-size: 0.88rem; }
.testimonial footer span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Suporte humano ── */
.suporte {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.suporte-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.suporte-copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.suporte-copy > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.suporte-list {
    list-style: none;
    margin-bottom: 20px;
}

.suporte-list li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.suporte-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.suporte-horario {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.suporte-card {
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--wpp-border);
    background: var(--wpp-soft);
}

.suporte-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.suporte-avatar {
    width: 48px;
    height: 48px;
    background: var(--tone-0);
    border: 1px solid var(--wpp-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.suporte-card-header strong { display: block; font-size: 1rem; }
.suporte-online {
    font-size: 0.78rem;
    color: var(--wpp);
    display: flex;
    align-items: center;
    gap: 4px;
}

.suporte-card-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.55;
}

.btn-whatsapp {
    width: 100%;
    background: var(--wpp);
    color: white;
    box-shadow: 0 4px 20px rgba(72, 168, 114, 0.25);
}

.btn-whatsapp:hover {
    background: var(--wpp-hover);
    box-shadow: 0 8px 28px rgba(72, 168, 114, 0.32);
}

.suporte-alt {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.suporte-alt a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.suporte-alt a:hover { text-decoration: underline; }

.footer-wpp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wpp);
    text-decoration: none;
    margin: 4px 0 2px;
}

.footer-wpp:hover { text-decoration: underline; }

/* Botão flutuante WhatsApp */
.wpp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px 14px 16px;
    background: var(--wpp);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(72, 168, 114, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: none;
}

.wpp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(72, 168, 114, 0.38);
    color: white;
}

.wpp-float-label {
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-display);
}

@keyframes wppPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(72, 168, 114, 0.28); }
    50% { box-shadow: 0 4px 16px rgba(72, 168, 114, 0.28), 0 0 0 6px rgba(72, 168, 114, 0.1); }
}

@media (max-width: 540px) {
    .wpp-float-label { display: none; }
    .wpp-float { padding: 14px; border-radius: 50%; }
}

/* ── FAQ ── */
.faq { padding: 80px 0; }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.faq-intro h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.faq-intro p { color: var(--text-muted); margin-bottom: 24px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--teal); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 22px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── CTA Final ── */
.cta-final { padding: 40px 0 80px; }

.cta-final-inner {
    position: relative;
    text-align: center;
    padding: 64px 40px;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    background: var(--gradient);
    color: white;
    box-shadow: 0 16px 48px rgba(81, 102, 214, 0.25);
}

.cta-final-inner.glass {
    background: var(--gradient);
    border: none;
}

.cta-final-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    color: white;
}

.cta-final-inner p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    position: relative;
    font-size: 1.05rem;
}

.cta-final-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-final-actions .btn-primary {
    background: white;
    color: var(--brand);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cta-final-actions .btn-primary:hover {
    background: var(--brand-softer);
    color: var(--brand-hover);
}

.cta-final-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
}

.cta-final-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 0;
    background: var(--bg-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; max-width: 280px; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.footer-label-spaced { margin-top: 16px; }
.footer-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--brand); margin: 4px 0; }
.footer-small { font-size: 0.78rem; color: var(--text-muted); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
.copy { font-size: 0.78rem; color: var(--text-muted); }

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(40, 48, 60, 0.35);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
    border-radius: var(--radius);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow: auto;
    box-shadow: var(--shadow);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-family: var(--font-display); font-weight: 700; }

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body { padding: 24px; }
.checkout-solution h4 { font-size: 1.05rem; margin-bottom: 12px; font-family: var(--font-display); }
.checkout-solution ul { list-style: none; margin-bottom: 18px; }
.checkout-solution li { font-size: 0.86rem; padding: 4px 0; color: var(--text-muted); }
.checkout-solution li::before { content: '✓ '; color: var(--teal); }
.checkout-totals { border-top: 1px solid var(--border); padding-top: 14px; }

.modal-footer { padding: 22px 24px; border-top: 1px solid var(--border); }
.payment-buttons { display: flex; gap: 10px; margin-bottom: 12px; }
.payment-buttons .btn { flex: 1; padding: 14px; }
.checkout-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; }

.modal-success { text-align: center; padding: 48px 32px; }
.success-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-dim);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 1px solid var(--accent-border);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .hero-bg img {
        object-position: 58% 45%;
    }
    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(243, 245, 249, 0.35) 0%,
            rgba(233, 237, 243, 0.22) 40%,
            rgba(243, 245, 249, 0.55) 100%);
    }
    .hero-copy {
        margin: 0 auto;
        max-width: 560px;
    }
    .hero { padding: 32px 0 48px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .float-1 { right: 0; }
    .float-2 { left: 0; }
    .marquee-wrap {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: visible;
    }
    .marquee-track {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        animation: none;
        gap: 10px;
    }
    .marquee-track .integration-chip[aria-hidden="true"] {
        display: none;
    }
    .clientes-strip {
        flex-wrap: wrap;
        gap: 16px 22px;
        padding: 16px 20px;
        border-radius: 20px;
        max-width: 100%;
    }

    .cliente-item,
    .clientes-strip img,
    .cliente-item img {
        width: 84px;
        height: 46px;
        max-width: 84px;
        max-height: 46px;
    }

    .pain-grid { grid-template-columns: 1fr; }
    .pain-arrow { transform: rotate(90deg); justify-content: center; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .adapted-features { grid-template-columns: 1fr; }
    .discover-layout { grid-template-columns: 1fr; }
    .steps-flow { flex-direction: column; align-items: center; }
    .flow-line { width: 2px; height: 40px; margin: 0; }
    .rec-body { grid-template-columns: 1fr; }
    .main-layout { grid-template-columns: 1fr; }
    .investment-panel { position: static; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .suporte-layout { grid-template-columns: 1fr; }
    .como-showcase { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 540px) {
    .results-grid { grid-template-columns: 1fr; }
    .trust-divider { display: none; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
}
