/* ==========================================================================
   LANDING PAGE LUXURY THEME SYSTEM (CALCULA HOF)
   ========================================================================== */

:root {
    --bg-dark: #faf6ef;
    --bg-card: #ffffff;
    --bg-cream-deep: #f1e8db;
    --glass: rgba(255, 255, 255, 0.62);
    --glass-strong: rgba(255, 255, 255, 0.88);
    --text-primary: #211d18;
    --text-secondary: #5f594f;
    /* #6f675b passa WCAG AA (>=4.5:1) sobre --bg-dark e --bg-card — ver
       leitura de contraste no histórico do projeto antes de trocar este tom. */
    --text-muted: #6f675b;
    /* Só para uso decorativo (ícones, numerais grandes, traços de SVG) — não
       passa AA como texto de leitura (~3:1). Nunca usar em texto pequeno. */
    --text-faint: #948d80;
    --rose-gold: #c48990;
    --rose-gold-gradient: linear-gradient(135deg, #e5b3b7 0%, #c48990 100%);
    /* Variante escurecida de --rose-gold só para uso como cor de texto — a
       original (2.87:1) reprova WCAG AA; #8b4a52 passa (6.56:1). Não usar
       --rose-gold em texto novo, usar esta. */
    --rose-gold-text: #8b4a52;
    /* --champagne (2.96:1) reprova WCAG AA como cor de texto (título/preço do
       plano Anual) — usar só decorativamente (ícones, fundo). Para texto,
       usar esta variante escurecida (5.05:1). */
    --champagne-text: #8a6a17;
    --champagne: #b8911c;
    --champagne-gradient: linear-gradient(160deg, #d9b23d 0%, #b8911c 100%);
    --accent: #b8911c;
    --good: #2f7a4f;
    --border-color: rgba(151, 105, 66, 0.16);
    --border-hover: rgba(151, 105, 66, 0.3);
    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-serif: 'Newsreader', Georgia, serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: var(--font-serif);
    font-weight: 500;
}
h1 em, h2 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, var(--rose-gold-text) 0%, var(--champagne-text) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fundo ambiente — substitui os antigos .glow-bg (blobs sólidos) por um
   gradiente sutil + grade de linhas, sempre fixo atrás do conteúdo. */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(60% 40% at 85% 0%, rgba(184, 145, 28, 0.10), transparent 65%),
        radial-gradient(50% 45% at 8% 15%, rgba(196, 137, 144, 0.12), transparent 65%),
        var(--bg-dark);
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(151, 105, 66, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(151, 105, 66, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 55%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 55%);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient-rose {
    background: var(--rose-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: var(--champagne-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--champagne-gradient);
    color: #2a1d02;
    box-shadow: 0 10px 24px -8px rgba(184, 145, 28, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(184, 145, 28, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}
.btn-secondary:hover {
    border-color: var(--rose-gold);
    background: rgba(196, 137, 144, 0.06);
    transform: translateY(-2px);
}

/* Header */
.header {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(250, 246, 239, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.nav-links {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    list-style: none;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: 0 8px 20px -12px rgba(93, 62, 33, 0.25);
}
.nav-links a {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.75);
}
.nav-login {
    font-weight: 600;
    color: var(--text-primary);
}
.nav-links .nav-cta {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
}
.nav-links .nav-cta:hover {
    transform: none;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 3.5rem 0 4rem;
    position: relative;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
}
.hero-copy { max-width: 34rem; }
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    background: rgba(184, 145, 28, 0.1);
    border: 1px solid rgba(184, 145, 28, 0.3);
    color: var(--champagne-text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}
.badge-hero::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--champagne);
    animation: pulse-dot 2.2s ease-out infinite;
}
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(184, 145, 28, 0.5); }
    70% { box-shadow: 0 0 0 7px rgba(184, 145, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 145, 28, 0); }
}
.hero h1 {
    font-size: clamp(2.1rem, 3.6vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 1.4rem;
    text-wrap: balance;
}
.hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.65;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.3rem;
    border-top: 1px solid var(--border-color);
}
.hero-trust .lbl {
    width: 100%;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.hero-trust-item svg {
    color: var(--champagne-text);
    flex-shrink: 0;
}

/* Hero product mockup — dashboard replica com leve profundidade 3D */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1700px;
}
.dash {
    width: 100%;
    max-width: 460px;
    transform: rotateX(6deg) rotateY(-9deg);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    position: relative;
    z-index: 2;
}
.dash-inner {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    box-shadow: 0 30px 60px -20px rgba(93, 62, 33, 0.3), 0 10px 24px -12px rgba(184, 145, 28, 0.16);
}
.dash-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1rem;
    background: var(--bg-cream-deep);
    border-bottom: 1px solid var(--border-color);
}
.dash-bar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dash-bar .dot:nth-child(1) { background: #f0a6a6; }
.dash-bar .dot:nth-child(2) { background: #f3cf8a; }
.dash-bar .dot:nth-child(3) { background: #a9d3ae; }
.dash-url {
    margin-left: 0.4rem;
    font-size: 0.68rem;
    color: var(--text-faint);
    font-family: ui-monospace, "SF Mono", monospace;
}
.dash-body {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dash-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 11px;
    padding: 1.1rem;
    box-shadow: 0 4px 16px rgba(93, 62, 33, 0.04);
}
.dash-panel h4 {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rose-gold-text);
    margin-bottom: 0.7rem;
}
.dash-field-row { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; }
.dash-field { flex: 1; }
.dash-field label { display: block; font-size: 0.62rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.dash-field .val {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    font-size: 0.74rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.dash-callout {
    background: rgba(184, 145, 28, 0.06);
    border: 1px dashed rgba(184, 145, 28, 0.35);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
}
.dash-callout strong { color: var(--champagne-text); font-variant-numeric: tabular-nums; }
.dash-price-big {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--good);
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.3rem;
}
.dash-margin-line { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 0.8rem; }
.dash-margin-line strong { color: var(--text-primary); }
.dash-bar-meter {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
}
.dash-bar-meter span { display: block; height: 100%; }

.dash-chip {
    position: absolute;
    z-index: 3;
    background: var(--glass-strong);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-hover);
    border-radius: 13px;
    padding: 0.75rem 0.95rem;
    box-shadow: 0 18px 34px -16px rgba(93, 62, 33, 0.35);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.dash-chip-head { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.4rem; }
.dash-chip-num {
    width: 18px; height: 18px; border-radius: 5px;
    background: var(--bg-cream-deep); color: var(--text-faint);
    font-size: 0.58rem; font-weight: 800; display: grid; place-items: center;
}
.dash-chip-label { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-primary); }
.dash-chip .amt { font-weight: 800; font-size: 0.92rem; font-family: var(--font-serif); }
.dash-chip-1 { top: -1.6rem; left: -2rem; transform: rotate(-3deg); }
.dash-chip-2 { bottom: -1.4rem; right: -1.6rem; text-align: right; transform: rotate(3deg); }
.dash-chip-1 .amt { color: var(--good); }
.dash-chip-2 .amt { color: var(--champagne-text); }
.dash-chip-badge {
    display: inline-block;
    margin-top: 0.3rem;
    background: var(--good);
    color: #fff;
    font-size: 0.56rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.18rem 0.45rem;
    border-radius: 5px;
}
@media (max-width: 700px) { .dash-chip { display: none; } }

/* Pain Points Section */
.pain-points { padding: 5.5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 1rem; text-wrap: balance; }
.section-header p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.pain-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}
.pain-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 14px 30px rgba(93, 62, 33, 0.08);
}
.pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(196, 137, 144, 0.12);
    color: var(--rose-gold-text);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.05rem;
}
.pain-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text-primary); font-family: var(--font-sans); font-weight: 700; }
.pain-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Features Section */
.features { padding: 5.5rem 0; }
.features-grid { display: flex; flex-direction: column; gap: 5.5rem; }
.feature-row { display: flex; align-items: center; gap: 4rem; }
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-content { flex: 1; }
.feature-preview-box {
    flex: 1.2;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(93, 62, 33, 0.06);
}
.feature-tag {
    display: inline-block;
    color: var(--champagne-text);
    background: rgba(184, 145, 28, 0.09);
    border: 1px solid rgba(184, 145, 28, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.feature-content h3 { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.2; text-wrap: balance; }
.feature-content p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.feature-list { list-style: none; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.feature-list li svg { color: var(--champagne-text); flex-shrink: 0; }

/* Testimonials */
.testimonials { padding: 5.5rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.2rem;
    position: relative;
}
.testimonial-card p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}
.testimonial-user { display: flex; align-items: center; gap: 1rem; }
.avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #3a1f14;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.user-info h4 { font-size: 0.95rem; font-weight: 700; font-family: var(--font-sans); }
.user-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Pricing Section */
.pricing { padding: 5.5rem 0; }
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
}
.pricing-price span { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.guarantee-badge svg { color: var(--champagne); flex-shrink: 0; }
.pricing-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    transition: var(--transition);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.pricing-card.popular {
    background: rgba(184, 145, 28, 0.07);
    border: 2px solid var(--champagne);
    box-shadow: 0 20px 45px -20px rgba(184, 145, 28, 0.35);
    transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
@media (max-width: 900px) {
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
}

/* FAQ Section */
.faq { padding: 5.5rem 0; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
}
.faq-item h3 { font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--text-primary); font-family: var(--font-sans); font-weight: 700; }
.faq-item p { font-size: 0.9rem; color: var(--text-secondary); }

/* CTA Footer Block */
.cta-block {
    margin: 0 auto 3rem;
    max-width: 1160px;
    border-radius: 28px;
    padding: 4.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f6ecd9 0%, #f4e2e2 100%);
    border: 1px solid var(--border-color);
}
.cta-block h2 { font-size: clamp(1.8rem, 3.2vw, 2.35rem); margin-bottom: 1rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.cta-block p { color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; }

/* Footer */
.footer {
    padding: 2.5rem 0 6rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer p { margin-bottom: 0.5rem; }
.footer a { color: var(--text-secondary); }

/* Responsive / Mobile optimizations */
.mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mockup-content { padding: 2rem; background: var(--bg-dark); text-align: left; }
.preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: left;
}

@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; text-align: center; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-trust .lbl { text-align: center; }
    .hero-visual { margin-top: 1rem; }
}

@media (max-width: 768px) {
    .header { padding: 0.8rem 0; }
    .header .logo img { height: 44px !important; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .feature-row, .feature-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        margin-top: 0.6rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-card);
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(93, 62, 33, 0.12);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: var(--transition);
        padding: 0 1.25rem;
    }
    .nav-links.open {
        max-height: 24rem;
        opacity: 1;
        padding: 0.5rem 1.25rem 1.1rem;
    }
    .nav-links li { display: block; width: 100%; padding: 0.65rem 0; border-bottom: 1px solid var(--border-color); }
    .nav-links li:last-child { border-bottom: none; padding-top: 0.85rem; }
    .nav-links a { display: block; padding: 0.4rem 0; border-radius: 0; }
    .nav-links a:hover { background: none; }
    .nav-links .btn { width: 100%; }
    .mockup-grid { grid-template-columns: 1fr; gap: 1rem; }
    .mockup-content { padding: 1rem; }
    .preview-card { padding: 1rem; }
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 768px) {
    .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
}

/* LEGAL PAGES (Termos / Privacidade) */
.legal-page { padding: 6rem 0 5rem; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-page .legal-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal-page h2 { font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem; margin: 2.5rem 0 1rem; color: var(--text-primary); }
.legal-page h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; color: var(--text-primary); }
.legal-page p, .legal-page li { color: var(--text-secondary); margin-bottom: 0.9rem; }
.legal-page ul, .legal-page ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-page a { color: var(--accent); }
.legal-page strong { color: var(--text-primary); }
.legal-placeholder {
    background: #fff7e6;
    border: 1px dashed var(--accent);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

@media (prefers-reduced-motion: reduce) {
    .dash, .dash-chip, .badge-hero::before { animation: none !important; transition: none !important; }
}
