:root {
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #f0f4ff;
    --card: #fff;
    --grad: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --border: #e2e8f0;
    --colerico: #ef4444;
    --sanguineo: #f59e0b;
    --melancolico: #8b5cf6;
    --fleumatico: #10b981;
    --header-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

img, svg { max-width: 100%; height: auto; display: block; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(106, 17, 203, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 117, 252, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.site-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 max(16px, env(safe-area-inset-right)) max(48px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    overflow-x: clip;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.site-header-inner {
    max-width: 1080px;
    margin: 0 auto;
    height: var(--header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    flex-shrink: 0;
}

.site-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.site-brand span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.site-nav { justify-self: center; }

.lang-switch { display: flex; gap: 6px; }

.lang-btn {
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    background: #fff;
    transition: all .15s ease;
    cursor: pointer;
}

.lang-btn:hover { border-color: #6a11cb; color: #6a11cb; }
.lang-btn.active { background: var(--grad); color: #fff; border-color: transparent; }

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color .15s, background .15s;
    white-space: nowrap;
}

.site-nav a:hover { color: #6a11cb; background: rgba(106, 17, 203, 0.06); }
.site-nav a.nav-cta {
    background: var(--grad);
    color: #fff !important;
    margin-left: 4px;
}

.site-nav a.nav-cta:hover { opacity: .92; }

@media (max-width: 1024px) {
    .menu-toggle { display: flex; }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        gap: 4px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a { padding: 12px 14px; }
    .site-nav a.nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }
}

/* Hero */
.site-hero {
    padding: 48px 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.site-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.site-hero .lead {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-badge {
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--muted);
}

.hero-badge--accent {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #a7f3d0;
    color: #047857;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: .92rem;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.25);
}

.btn-secondary {
    background: #fff;
    color: #6a11cb;
    border: 2px solid #c4b5fd;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    max-width: 100%;
    overflow: hidden;
}

.hero-orbit {
    position: relative;
    width: 280px;
    height: 280px;
}

.hero-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(106, 17, 203, 0.15);
    animation: orbit-spin 24s linear infinite;
}

.hero-orbit-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 40px rgba(106, 17, 203, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.hero-temp-dot {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-temp-dot--col { background: var(--colerico); top: 0; left: 50%; transform: translateX(-50%); }
.hero-temp-dot--san { background: var(--sanguineo); right: 0; top: 50%; transform: translateY(-50%); }
.hero-temp-dot--mel { background: var(--melancolico); bottom: 0; left: 50%; transform: translateX(-50%); }
.hero-temp-dot--fle { background: var(--fleumatico); left: 0; top: 50%; transform: translateY(-50%); }

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .site-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 32px;
    }
    .site-hero .lead { margin-left: auto; margin-right: auto; }
    .hero-badges, .hero-ctas { justify-content: center; }
    .hero-visual { order: -1; min-height: 220px; }
    .hero-orbit { width: 220px; height: 220px; }
}

/* Sections */
.site-section {
    padding: 48px 0;
}

.site-section h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.site-section .section-lead {
    text-align: center;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: .95rem;
}

.site-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

/* Temperaments grid */
.temp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.temp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.temp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.temp-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.temp-card--col .temp-icon { background: #fef2f2; color: var(--colerico); }
.temp-card--san .temp-icon { background: #fffbeb; color: var(--sanguineo); }
.temp-card--mel .temp-icon { background: #f5f3ff; color: var(--melancolico); }
.temp-card--fle .temp-icon { background: #ecfdf5; color: var(--fleumatico); }

.temp-name {
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 4px;
}

.temp-card--col .temp-name { color: var(--colerico); }
.temp-card--san .temp-name { color: var(--sanguineo); }
.temp-card--mel .temp-name { color: var(--melancolico); }
.temp-card--fle .temp-name { color: var(--fleumatico); }

.temp-tag {
    font-size: .68rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.temp-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .temp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .temp-grid { grid-template-columns: 1fr; }
}

/* Discover */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.discover-card {
    background: linear-gradient(135deg, #faf5ff, #eff6ff);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
}

.discover-card h3 {
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.discover-card p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5;
}

.discover-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .discover-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .discover-grid { grid-template-columns: 1fr; }
    .discover-card { padding: 18px 14px; }
}

/* How steps */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}

.how-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.how-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 14px;
}

.how-step p {
    font-size: .88rem;
    color: var(--muted);
}

@media (max-width: 640px) {
    .how-steps { grid-template-columns: 1fr; }
}

/* Compare table */
.compare-wrap { overflow: hidden; }

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.compare-table th,
.compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.compare-table th {
    background: linear-gradient(135deg, #faf5ff, #eff6ff);
    font-weight: 800;
    font-size: .82rem;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.compare-table .yes { color: #047857; font-weight: 700; }
.compare-table .no { color: #cbd5e1; }

.compare-table th.compare-col--paid,
.compare-table td:nth-child(3) {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.compare-table th.compare-col--paid {
    color: #c2410c;
}

@media (max-width: 640px) {
    .compare-table thead { display: none; }
    .compare-table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }
    .compare-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        border-bottom: 1px solid #f1f5f9;
    }
    .compare-table td:last-child { border-bottom: none; }
    .compare-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--muted);
        text-align: left;
        margin-right: 12px;
        flex-shrink: 0;
    }
    .compare-table td:first-child {
        background: linear-gradient(135deg, #faf5ff, #eff6ff);
        font-weight: 800;
        justify-content: center;
    }
    .compare-table td:first-child::before { display: none; }
}

/* CTA blocks */
.cta-block {
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    margin-bottom: 20px;
}

.cta-block--free {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
}

.cta-block--paid {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
    border: 2px solid #fdba74;
    box-shadow: 0 12px 36px rgba(234, 88, 12, 0.12);
}

.cta-block--hero {
    padding: 40px 28px;
}

.cta-block--hero h3 {
    font-size: clamp(1.35rem, 4vw, 1.6rem);
}

.cta-block--free.cta-block--subtle {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 24px 20px;
    margin-bottom: 20px;
}

.cta-block--free.cta-block--subtle h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
}

.cta-block--free.cta-block--subtle p {
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.cta-block h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-block p {
    color: var(--muted);
    font-size: .9rem;
    max-width: 480px;
    margin: 0 auto 20px;
}

.cta-note {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 12px;
}

.site-disclaimer {
    text-align: center;
    font-size: .72rem;
    color: #94a3b8;
    padding: 24px 0 8px;
}

/* Privacy page */
.privacy-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0 48px;
}

.privacy-page h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.privacy-updated {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.privacy-intro {
    font-size: .95rem;
    color: var(--muted);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.privacy-section {
    margin-bottom: 28px;
}

.privacy-section h2 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: left;
}

.privacy-section p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
}

.privacy-section a { color: #6a11cb; }

.privacy-back {
    display: inline-flex;
    margin-top: 32px;
    font-weight: 700;
    font-size: .88rem;
    color: #6a11cb;
    text-decoration: none;
}

.privacy-back:hover { text-decoration: underline; }

/* Footer */
.site-footer {
    text-align: center;
    padding: 32px 16px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
}

.site-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.site-footer-links a {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
}

.site-footer-links a:hover { color: #6a11cb; }

.site-footer-copy {
    font-size: .72rem;
    color: #94a3b8;
}

.site-footer-publisher {
    font-size: .74rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.editorial-card h2,
.contact-card h2 {
    text-align: left;
    margin-bottom: 12px;
}

.editorial-p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.editorial-p a { color: #6a11cb; font-weight: 600; }

.articles-hub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.articles-hub-card {
    display: block;
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.articles-hub-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.articles-hub-card--col { border-left: 4px solid var(--colerico); }
.articles-hub-card--san { border-left: 4px solid var(--sanguineo); }
.articles-hub-card--mel { border-left: 4px solid var(--melancolico); }
.articles-hub-card--fle { border-left: 4px solid var(--fleumatico); }

.articles-hub-all {
    text-align: center;
    margin-top: 20px;
}

.faq-list {
    padding: 8px 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
}

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: .9rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
    margin-top: 10px;
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
}

.faq-item a { color: #6a11cb; font-weight: 600; }

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: rgba(15, 23, 42, .96);
    color: #e2e8f0;
    transform: translateY(110%);
    transition: transform .35s ease;
}

.cookie-consent.is-open { transform: translateY(0); }

.cookie-consent__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.cookie-consent__title {
    font-weight: 800;
    font-size: .92rem;
}

.cookie-consent__text {
    font-size: .8rem;
    line-height: 1.55;
    color: #cbd5e1;
}

.cookie-consent__text a { color: #93c5fd; font-weight: 700; }

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent .btn {
    padding: 10px 18px;
    font-size: .82rem;
}

body.cookie-banner-open { padding-bottom: 120px; }

@media (max-width: 640px) {
    .articles-hub { grid-template-columns: 1fr; }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-orbit-ring { animation: none; }
    .btn:hover { transform: none; }
}

/* Home landing — conversão + responsivo */
body.home-landing {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

.hero-trust-line {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 10px;
}

.hero-subcta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 14px;
    font-weight: 500;
}

.btn-hero {
    min-width: min(100%, 280px);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 0 8px;
}

.stat-box {
    text-align: center;
    padding: 14px 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.stat-box .stat-n {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .stat-l {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.3;
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

.testimonials-block h2 {
    margin-bottom: 0;
}

.testimonials-head {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-head .section-lead {
    margin-bottom: 0;
}

.testimonials-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.testimonial-card {
    padding: 18px 16px;
    background: linear-gradient(135deg, #faf5ff, #eff6ff);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.15);
}

.testimonial-head .testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-quote {
    font-size: 0.86rem;
    line-height: 1.55;
    flex: 1;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    font-size: 0.7rem;
}

.testimonial-head .testimonial-temp {
    margin-left: 0;
}

.testimonial-name { font-weight: 700; }

.testimonial-local { color: var(--muted); }

.testimonial-temp {
    font-weight: 700;
    margin-left: auto;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    white-space: nowrap;
}

.home-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
}

.home-sticky-cta .btn {
    width: 100%;
    max-width: 420px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn { flex: 1 1 100%; }
    .site-section { padding: 36px 0; }
}

@media (max-width: 520px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-box { padding: 12px 6px; }
    .stat-box .stat-n { font-size: 1.05rem; }
    .testimonial-meta { flex-direction: column; align-items: flex-start; }
    .testimonial-temp { margin-left: 0; }
}

@media (min-width: 769px) {
    body.home-landing { padding-bottom: 0; }
    .home-sticky-cta { display: none; }
}

/* ── Home vendas: layout editorial (menos cards redondos) ── */
:root {
    --cta-sales-grad: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ea580c 100%);
    --cta-sales-shadow: rgba(234, 88, 12, 0.35);
    --home-radius: 4px;
}

.home-landing .btn { border-radius: var(--home-radius); }

.btn-cta-paid {
    background: var(--cta-sales-grad) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px var(--cta-sales-shadow);
    border: none;
}

.btn-cta-paid:hover {
    box-shadow: 0 8px 22px rgba(234, 88, 12, 0.4);
    filter: brightness(1.03);
}

.link-free-test {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.link-free-test:hover { color: #64748b; }
.link-free-test--block { margin-top: 0; }

.site-hero--sales {
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.hero-points {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-points li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
}

.hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 2px;
    background: #ea580c;
}

.hero-price-inline {
    margin: 0 0 18px;
    font-size: 0.84rem;
    color: var(--muted);
}

.hero-price-amount {
    margin: 0 6px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #c2410c;
}

.hero-price-installments {
    margin: -10px 0 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

.hero-ctas--sales {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hero-visual--flat { min-height: auto; align-items: stretch; }

.hero-temp-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    width: 100%;
    max-width: 380px;
    background: var(--border);
    border: 1px solid var(--border);
}

.hero-temp-bar {
    background: #fff;
    padding: 18px 16px;
    border-left: 3px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-temp-bar--col { border-left-color: var(--colerico); }
.hero-temp-bar--san { border-left-color: var(--sanguineo); }
.hero-temp-bar--mel { border-left-color: var(--melancolico); }
.hero-temp-bar--fle { border-left-color: var(--fleumatico); }

.hero-temp-bar__name { font-size: 0.92rem; font-weight: 800; }
.hero-temp-bar__tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-landing .stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    border: 1px solid var(--border);
    background: #fff;
}

.home-landing .stat-box {
    flex: 1 1 25%;
    min-width: 120px;
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--border);
    box-shadow: none;
}

.home-landing .stat-box:last-child { border-right: none; }

.home-landing .stat-box .stat-n {
    -webkit-text-fill-color: #c2410c;
    color: #c2410c;
    background: none;
}

.map-product-section { padding: 40px 0; }

.map-product-inner { max-width: 820px; margin: 0 auto; }

.map-product-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0f172a;
}

.map-product-head h2 { text-align: left; }

.map-product-lead { text-align: left; margin: 0; max-width: none; }

.map-product-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ea580c;
}

.map-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
}

.map-benefit-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.map-benefit-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.map-benefit-text {
    margin: 0;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}

.map-product-cta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.map-product-trust {
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

.home-landing .discover-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--border);
}

.home-landing .discover-card {
    background: #fff;
    border: none;
    border-radius: 0;
    text-align: left;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 14px;
    row-gap: 4px;
}

.home-landing .discover-icon {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: var(--home-radius);
}

.home-landing .discover-card h3 { margin: 0; font-size: 0.9rem; }
.home-landing .discover-card p { grid-column: 2; margin: 0; }

.home-landing .temp-grid {
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.home-landing .temp-card {
    border-radius: 0;
    border: none;
    text-align: left;
}

.home-landing .temp-icon {
    border-radius: var(--home-radius);
    margin: 0 0 10px;
    width: 40px;
    height: 40px;
}

.home-landing .site-card,
.home-landing .testimonial-card,
.home-landing .compare-wrap {
    border-radius: var(--home-radius);
    box-shadow: none;
}

.cta-block { border-radius: var(--home-radius); }

.cta-block--paid {
    background: #fff;
    border: 2px solid #0f172a;
    box-shadow: none;
}

.cta-block--free.cta-block--subtle {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    padding: 20px 0 0;
    text-align: center;
}

.section-cta--sales {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.home-sticky-cta .btn-cta-paid {
    width: 100%;
    max-width: 420px;
}

@media (max-width: 768px) {
    .hero-ctas--sales { align-items: stretch; width: 100%; }
    .hero-temp-strip { max-width: none; }
    .home-landing .discover-grid { grid-template-columns: 1fr; }
    .home-landing .stat-box { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
    .home-landing .stat-box:nth-child(2n) { border-right: none; }
}

@media (max-width: 520px) {
    .home-landing .temp-grid { grid-template-columns: 1fr; }
}

/* Fallback: landing premium visível mesmo se site-premium.css não carregar */
body.home-sales.home-premium,
body.home-premium {
    background: #f7f9fc;
    color: #0f172a;
}

body.home-premium .reveal:not(.is-animated) {
    opacity: 1;
    transform: none;
}

/* ── Home vendas (estrutura enxuta) ── */
body.home-sales:not(.home-premium) {
    background: #f8fafc;
}

.site-wrap--sales {
    max-width: 720px;
    padding-top: 8px;
}

.site-header--sales .site-nav--sales {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-header--sales .site-nav--sales a {
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    white-space: nowrap;
}

.site-header--sales .site-nav--sales a:hover {
    color: #0f172a;
    background: transparent;
}

.site-header--sales .nav-link-free {
    color: #94a3b8;
    font-weight: 600;
}

.site-header--sales .nav-link-free:hover { color: #64748b; }

.sales-hero {
    padding: 28px 0 36px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.sales-trust {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 14px;
}

.sales-hero h1 {
    font-size: clamp(1.45rem, 4.5vw, 2rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
}

.sales-lead {
    font-size: 0.95rem;
    color: #334155;
    max-width: 52ch;
    margin: 0 auto 18px;
    line-height: 1.65;
}

.sales-checklist {
    list-style: none;
    margin: 0 auto 22px;
    padding: 0;
    max-width: 380px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sales-checklist li {
    position: relative;
    padding-left: 22px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
}

.sales-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ea580c;
    font-weight: 800;
}

.sales-price-block {
    margin-bottom: 20px;
}

.sales-price-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.sales-price-value {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 800;
    color: #c2410c;
    line-height: 1.1;
    margin-bottom: 4px;
}

.sales-price-note {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

.sales-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 18px 0 12px;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 340px);
    padding: 14px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

.btn-cta-main--large {
    min-width: min(100%, 380px);
    padding: 16px 28px;
    font-size: 0.98rem;
}

.sales-cta-price {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

.sales-trust-bottom {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 500;
    max-width: 42ch;
    margin: 0 auto;
    line-height: 1.5;
}

.sales-free-link {
    margin-top: 16px;
    font-size: 0.78rem;
}

.sales-free-link .link-free-test {
    margin-top: 0;
    font-size: inherit;
}

.sales-free-link--footer { margin-top: 20px; }

.sales-section {
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.sales-section h2 {
    font-size: clamp(1.15rem, 3.5vw, 1.45rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-align: center;
}

.sales-compare .sales-compare-free,
.sales-compare-paid-label {
    font-size: 0.9rem;
    color: #334155;
    text-align: center;
    max-width: 52ch;
    margin: 0 auto 14px;
}

.sales-compare-list {
    list-style: none;
    margin: 0 auto 20px;
    padding: 16px 18px;
    max-width: 420px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sales-compare-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

.sales-compare-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 800;
}

.sales-preview-lead {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--muted);
}

.sales-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.preview-mock {
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
}

.preview-mock figcaption {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #64748b;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.preview-mock__body {
    padding: 14px 12px;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 56px;
    margin-bottom: 8px;
}

.preview-bars span {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(180deg, #fb923c, #ea580c);
    border-radius: 2px 2px 0 0;
    opacity: 0.85;
}

.preview-labels {
    display: flex;
    gap: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #94a3b8;
    text-align: center;
}

.preview-labels span { flex: 1; }

.preview-profile-main {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.preview-profile-sub {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

.preview-lines {
    gap: 8px;
}

.preview-lines span {
    display: block;
    height: 8px;
    background: #e2e8f0;
    border-radius: 2px;
}

.preview-lines span:nth-child(1) { width: 92%; }
.preview-lines span:nth-child(2) { width: 78%; }
.preview-lines span:nth-child(3) { width: 65%; }

.preview-checklist {
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #16a34a;
}

.preview-compat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.preview-compat span {
    height: 28px;
    background: #f1f5f9;
    border-radius: 2px;
}

.sales-benefits-compact {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sales-benefit-item {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.sales-benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sales-benefit-item strong {
    display: block;
    color: #0f172a;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.sales-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.sales-area-card {
    background: #fff;
    padding: 18px 16px;
}

.sales-area-card h3 {
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.sales-area-card p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.sales-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.sales-testimonial {
    background: #fff;
    border: 1px solid var(--border);
    padding: 16px;
}

.sales-testimonial .testimonial-head {
    margin-bottom: 10px;
}

.sales-testimonial .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.sales-testimonial-quote {
    font-size: 0.84rem;
    color: #334155;
    line-height: 1.55;
    margin: 0;
    font-style: normal;
}

.testimonial-temp-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--temp-color) 12%, #fff);
    color: var(--temp-color);
    border: 1px solid color-mix(in srgb, var(--temp-color) 25%, transparent);
}

.sales-steps {
    margin: 0;
    padding: 0 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.sales-steps li {
    font-size: 0.88rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
}

.sales-how-note {
    margin-top: 16px;
    font-size: 0.76rem;
    color: #94a3b8;
    text-align: center;
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.sales-guarantee-box {
    text-align: center;
    padding: 20px 16px;
    background: #fff;
    border: 1px solid var(--border);
}

.sales-guarantee-box h2 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.sales-guarantee-box p {
    font-size: 0.84rem;
    color: #64748b;
    max-width: 44ch;
    margin: 0 auto;
}

.sales-final {
    text-align: center;
    border-bottom: none;
}

.sales-final-lead {
    font-size: 0.9rem;
    color: #475569;
    max-width: 48ch;
    margin: 0 auto 8px;
}

.site-disclaimer {
    margin-top: 24px;
    font-size: 0.72rem;
    color: #94a3b8;
}

.site-footer-articles {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
    text-align: center;
}

.site-footer-articles a {
    color: #475569;
    font-weight: 600;
}

@media (max-width: 768px) {
    .site-header--sales .site-nav--sales {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
        z-index: 99;
    }

    .site-header--sales .site-nav--sales.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-header--sales .menu-toggle { display: flex; }

    .sales-preview-grid { grid-template-columns: 1fr; }
    .sales-areas-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
    .sales-testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}
