﻿:root {
    --bg: #07111D;
    --bg-strong: #0B1828;
    --surface: #0B1828;
    --surface-strong: #0E1F31;
    --text: #F5F7FB;
    --muted: #9FB3CD;
    --line: rgba(99, 229, 208, 0.12);
    --primary: #63E5D0;
    --primary-dark: #3DBFAA;
    --accent: #63E5D0;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(99, 229, 208, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 229, 208, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    padding: 22px 0 48px;
    position: relative;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 56px;
    padding: 0 max(20px, calc((100vw - 1180px) / 2));
    background: #07111D;
    border: none;
    border-bottom: 1px solid rgba(99, 229, 208, 0.1);
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(99, 229, 208, 0.06);
    box-sizing: border-box;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    color: #F5F7FB;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: #0B1828;
    box-shadow: 0 0 0 1px rgba(99, 229, 208, 0.3);
    border: none;
    overflow: hidden;
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.brand-text {
    letter-spacing: -0.04em;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #F5E642 40%, #3CB043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #9FB3CD;
}

.topnav a:hover {
    color: #63E5D0;
}

.section {
    padding: 56px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 38px;
    align-items: center;
    padding-top: 52px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(99, 229, 208, 0.25);
    background: rgba(99, 229, 208, 0.08);
    color: #63E5D0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.spotlight h2,
.cta-panel h2 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin: 18px 0;
}

.hero h1 {
    font-size: clamp(3.3rem, 7vw, 6.2rem);
    max-width: 11ch;
}

.hero-text,
.section-heading p,
.info-card p,
.timeline-step p,
.audience-card p,
.spotlight p,
.cta-panel p {
    color: #9FB3CD;
    line-height: 1.7;
    font-size: 1.03rem;
}

.hero-actions,
.cta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    cursor: pointer;
}

.button:hover,
.cta-strip button:hover {
    transform: translateY(-1px);
}

.button-cta {
    background: #63E5D0;
    color: #07120E;
    box-shadow: 0 8px 28px rgba(99, 229, 208, 0.28);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.button-cta:hover,
.button-primary:hover,
.cta-strip button:hover {
    background: #4CCFBC;
    transform: translateY(-2px);
}

.button-primary,
.cta-strip button {
    background: #63E5D0;
    color: #07120E;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(99, 229, 208, 0.28);
}

.button-secondary {
    background: #14283B;
    color: #E6EEF9;
    border: 1px solid #2B4D67;
}

.button-ghost {
    background: #14283B;
    color: #E6EEF9;
    border: 1px solid #2B4D67;
}

.button-full {
    width: 100%;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points li,
.status-pill,
.metrics article,
.timeline-step,
.info-card,
.audience-card,
.spotlight,
.cta-panel {
    border: 1px solid #213A56;
    background: #0B1828;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-points li {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
}

/* ── VoxIA App Shell (hero replica) ──────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.vox-shell {
    width: 100%;
    max-width: 420px;
    padding: 12px;
    border-radius: 30px;
    background: #07131F;
    border: 1px solid #315A76;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* titlebar */
.vox-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 4px 10px;
}

.vox-brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 21px;
    background: #0B1828;
    border: 1px solid #8EF2E1;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.vox-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.vox-brand-name {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #F5F7FB;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.vox-brand-sub {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #F5E642 40%, #3CB043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vox-win-btns {
    display: flex;
    gap: 4px;
    align-items: center;
}

.vox-wbtn {
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    cursor: default;
    border: 1px solid #2D516B;
    background: #112537;
    color: #E6EEF9;
    line-height: 1;
}

.vox-wbtn-close {
    background: #2A1620;
    color: #FFD8DE;
    border-color: #7A3145;
}

.vox-wbtn-icon,
.vox-wbtn-panel {
    font-size: 10px;
    padding: 0 7px;
}

.vox-wbtn-icon { color: #63E5D0; }

/* status card */
.vox-status-card {
    background: #0A1B2B;
    border: 1px solid #16344C;
    border-radius: 22px;
    padding: 14px 16px;
    margin: 0 0 10px;
}

.vox-status-main {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: #F5F7FB;
    margin-bottom: 5px;
}

.vox-hint {
    font-size: 0.72rem;
    color: #A7BDD9;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vox-rec-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
}

.vox-rec-badge {
    background: #183042;
    border: 1px solid #28506A;
    border-radius: 10px;
    padding: 4px 9px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #A7BDD9;
    white-space: nowrap;
    transition: background 300ms, color 300ms, border-color 300ms;
}

.vox-rec-badge.active {
    background: #0E3020;
    border-color: #2A7A4A;
    color: #63E5D0;
}

.vox-meter-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vox-meter-track {
    height: 8px;
    border-radius: 4px;
    background: #102334;
    border: 1px solid #1C3E58;
    overflow: hidden;
}

.vox-meter-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: #4FDCC5;
    transition: width 120ms ease-out;
}

.vox-meter-label {
    font-size: 0.62rem;
    color: #8FB0C9;
}

/* main button */
.vox-main-btn {
    width: 100%;
    height: 54px;
    background: #55E2CA;
    color: #07120E;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 200ms, transform 100ms;
}

.vox-main-btn:hover { background: #3DCCB5; }
.vox-main-btn:active { transform: scale(0.98); }

.vox-main-btn.recording {
    background: #1E3A52;
    color: #E6EEF9;
    border: 1px solid #2B4D67;
}

/* action row */
.vox-action-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.vox-target-tag {
    background: #0C1F31;
    border: 1px solid #183A54;
    border-radius: 14px;
    padding: 7px 10px;
    font-size: 0.7rem;
    color: #79EAD4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vox-sec-btn {
    height: 34px;
    padding: 0 12px;
    background: #112537;
    color: #E6EEF9;
    border: 1px solid #2D516B;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 150ms, border-color 150ms;
}

.vox-sec-btn:hover:not(:disabled) {
    background: #173147;
    border-color: #416C89;
}

.vox-sec-btn:disabled {
    opacity: 0.45;
    cursor: default;
}

/* plan row */
.vox-plan-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.vox-plan-label {
    font-size: 0.72rem;
    color: #7FACC8;
    white-space: nowrap;
}

.vox-select {
    flex: 1;
    height: 28px;
    background: #07121E;
    color: #F5F7FB;
    border: 1px solid #2A4763;
    border-radius: 10px;
    font-size: 0.72rem;
    padding: 0 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='none' stroke='%239FB3CD' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.vox-select:focus { outline: 1px solid rgba(99,229,208,0.4); }

.vox-plan-note {
    font-size: 0.65rem;
    color: #7FACC8;
    line-height: 1.45;
    margin-bottom: 8px;
}

.vox-icon-btn {
    width: 100%;
    height: 30px;
    background: #0D2035;
    color: #63E5D0;
    border: 1px solid #1E4A63;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.vox-shell-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vox-caption-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    background: #0B1828;
    box-shadow: 0 0 0 1px rgba(99, 229, 208, 0.3);
    padding: 6px;
}

.vox-caption-text {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #F5F7FB;
    letter-spacing: -0.02em;
}

.vox-caption-brasil {
    font-weight: 700;
    background: linear-gradient(90deg, #F5E642 40%, #3CB043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── end VoxIA App Shell ────────────────────────────────────── */

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.metrics article,
.info-card,
.timeline-step,
.audience-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.metrics strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.05em;
    color: #63E5D0;
}

.metrics span {
    color: #9FB3CD;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.spotlight h2,
.cta-panel h2 {
    font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.benefit-grid,
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.info-card h3,
.timeline-step h3,
.audience-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: start;
}

.timeline {
    display: grid;
    gap: 18px;
}

.step-index {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    color: #63E5D0;
    font-weight: 700;
}

.audience-section {
    padding-bottom: 30px;
}

.audience-card {
    min-height: 210px;
    background: #0B1828;
}

.spotlight {
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
    padding: 34px;
    margin-top: 18px;
}

.cta-panel {
    border-radius: var(--radius-xl);
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    position: relative;
    background: var(--bg-strong);
    border: 1px solid #213A56;
    border-radius: var(--radius-xl);
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-card-featured {
    border-color: #63E5D0;
    box-shadow: 0 0 0 1px rgba(99,229,208,0.2);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #63E5D0;
    color: #07111D;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #63E5D0;
    line-height: 1;
    margin-top: 8px;
}

.pricing-cents {
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-period {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-features li {
    font-size: 0.88rem;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #63E5D0;
    font-weight: 700;
}

.pricing-footnote {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── Investor section ── */
.investor-panel {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    background: var(--bg-strong);
    border: 1px solid rgba(99,229,208,0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.investor-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #63E5D0;
    margin-bottom: 12px;
}

.investor-copy h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.investor-copy p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.investor-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.investor-list li {
    color: var(--muted);
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.investor-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #63E5D0;
}

.investor-note {
    font-size: 0.82rem;
    color: var(--muted);
    opacity: 0.7;
}

.investor-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: #07111D;
    border: 1px solid #213A56;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.investor-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.investor-value {
    font-size: 2rem;
    font-weight: 800;
    color: #63E5D0;
    line-height: 1;
}

.investor-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.investor-contract-link {
    font-size: 0.82rem;
    color: #63E5D0;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.investor-contract-link:hover {
    opacity: 1;
}

@media (max-width: 860px) {
    .investor-panel {
        grid-template-columns: 1fr;
    }
    .investor-highlight {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.cta-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: unset;
    gap: 24px;
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    background: #0E1F31;
    border: 1px solid #213A56;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.download-btn:hover {
    border-color: #63E5D0;
    background: #132B42;
    color: #63E5D0;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #9FB3CD;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid #2A4763;
    background: #07121E;
    color: #F5F7FB;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(99, 229, 208, 0.3);
    border-color: #63E5D0;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 360px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #0E1F31;
    color: #F5F7FB;
    border: 1px solid #213A56;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 180ms;
}

.reveal-delay-3 {
    transition-delay: 260ms;
}

@media (max-width: 1024px) {
    .topbar,
    .hero,
    .split-section,
    .spotlight,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .topbar {
        border-radius: 0;
        align-items: center;
    }

    .topnav {
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 32px;
    }

    .mockup-window {
        min-height: 520px;
    }

    .cta-panel {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    .page-shell {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .topbar {
        position: sticky;
        padding: 0 16px;
        height: 48px;
    }

    .topnav {
        display: none;
    }

    .metrics,
    .benefit-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .main-card {
        left: 18px;
        right: 18px;
    }

    .side-card {
        position: static;
        width: auto;
        margin-top: 16px;
    }

    .mockup-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .floating-card {
        position: static;
    }

    .mockup-window {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .metrics strong {
        font-size: 1.7rem;
    }

    .metrics article,
    .info-card,
    .timeline-step,
    .audience-card,
    .spotlight,
    .cta-panel {
        padding: 22px;
    }

    .button,
    .cta-strip button {
        width: 100%;
    }
}

/* ===== Mobile — apenas ícone + login ===== */
@media (max-width: 680px) {
    /* Esconde toda a landing page */
    .topbar,
    .page-shell,
    .whatsapp-fab {
        display: none !important;
    }

    /* Tela de login mobile ocupa viewport inteiro */
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100dvh;
        background: #07111D;
    }

    /* Mostra o painel de login mobile */
    .mobile-login {
        display: flex !important;
    }
}

/* Painel de login mobile (oculto em desktop) */
.mobile-login {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 40px 32px;
    width: min(340px, calc(100vw - 40px));
    background: #0B1828;
    border: 1px solid #213A56;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    text-align: center;
}

.mobile-login-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    object-fit: contain;
    background: #07111D;
    padding: 6px;
    border: 1px solid rgba(99,229,208,0.3);
}

.mobile-login h1 {
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #F5F7FB;
    margin: 0;
}

.mobile-login p {
    font-size: 0.85rem;
    color: #9FB3CD;
    margin: -16px 0 0;
    line-height: 1.5;
}

.mobile-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-login-form input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid #213A56;
    background: #07111D;
    color: #F5F7FB;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
}

.mobile-login-form input:focus {
    border-color: #63E5D0;
}

.mobile-login-form button {
    margin-top: 4px;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: #63E5D0;
    color: #07111D;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.mobile-login-error {
    font-size: 0.8rem;
    color: #F87171;
    margin: -8px 0 0;
    min-height: 1em;
}

.mobile-login-site-btn {
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9FB3CD;
    text-decoration: none;
    border: 1px solid #213A56;
    border-radius: 999px;
    padding: 10px 22px;
    transition: border-color 0.2s, color 0.2s;
}

.mobile-login-site-btn:hover {
    border-color: #63E5D0;
    color: #63E5D0;
}

/* ── Mobile Mic FAB ── */
.mobile-mic-wrap {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 100dvh;
    padding: 32px;
}

@media (max-width: 680px) {
    .mobile-mic-wrap {
        display: flex;
    }
}

.mobile-mic-status {
    font-size: 1rem;
    color: #9FB3CD;
    font-family: "Manrope", sans-serif;
    text-align: center;
    min-height: 1.4em;
    transition: color 0.3s;
}

.mobile-mic-status.recording {
    color: #F87171;
    font-weight: 700;
}

.mobile-mic-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-mic-btn {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: none;
    background: #63E5D0;
    color: #07111D;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 32px rgba(99,229,208,0.35);
    transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
    flex-shrink: 0;
}

.mobile-mic-btn:active {
    transform: scale(0.93);
}

.mobile-mic-btn.recording {
    background: #EF4444;
    box-shadow: 0 8px 32px rgba(239,68,68,0.4);
    animation: mic-pulse 1.4s ease-in-out infinite;
}

@keyframes mic-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(239,68,68,0.4); }
    50%       { box-shadow: 0 8px 52px rgba(239,68,68,0.7), 0 0 0 18px rgba(239,68,68,0.12); }
}

.mobile-cancel-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #213A56;
    background: #0B1828;
    color: #9FB3CD;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color 0.2s, color 0.2s;
}

.mobile-cancel-btn:active {
    border-color: #F87171;
    color: #F87171;
}

.mobile-mic-transcript {
    width: 100%;
    max-width: 320px;
    background: #0B1828;
    border: 1px solid #213A56;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #F5F7FB;
    line-height: 1.6;
    text-align: left;
    word-break: break-word;
    min-height: 60px;
    white-space: pre-wrap;
}
/* ===== Hero demo transcript ===== */
.demo-transcript {
    min-height: 78px;
    border: 1px solid #213A56;
    border-radius: 12px;
    padding: 12px 14px;
    background: #07121E;
    font-size: 0.93rem;
    line-height: 1.65;
    color: #F5F7FB;
    margin: 14px 0;
    overflow: hidden;
    word-break: break-word;
}

.demo-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #63E5D0;
    vertical-align: text-bottom;
    margin-left: 1px;
    border-radius: 1px;
    opacity: 0;
}

.demo-cursor.active {
    animation: blink-caret 0.9s step-end infinite;
}

@keyframes blink-caret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== Master access ===== */
.master-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; z-index: 10001;
}
.master-overlay[hidden] { display: none; }
.master-modal {
    background: #fff; border-radius: 20px; padding: 40px 36px 36px;
    width: min(420px, 92vw); box-shadow: 0 32px 64px rgba(0,0,0,.22);
    position: relative; text-align: center;
}
.master-close {
    position: absolute; top: 14px; right: 18px; background: none; border: none;
    font-size: 22px; cursor: pointer; color: #888; line-height: 1;
}
.master-logo {
    width: 52px; height: 52px; border-radius: 14px; background: #1a1a1a;
    color: #fff; font-size: 24px; font-weight: 800; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 18px;
}
.master-modal h2 { font-size: 20px; margin: 0 0 6px; }
.master-modal > p { color: #888; font-size: 14px; margin: 0 0 22px; }
.master-modal form label { display: block; text-align: left; margin-bottom: 14px; }
.master-modal form label span { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.master-modal form label input {
    width: 100%; box-sizing: border-box; border: 1px solid #ddd; border-radius: 10px;
    padding: 10px 14px; font-size: 15px; outline: none; transition: border 160ms;
}
.master-modal form label input:focus { border-color: #1a1a1a; }
.master-error { color: #d93025; font-size: 13px; margin: -6px 0 10px; }
.master-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
    background: #1a1a1a; color: #fff; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 14px; padding: 8px 20px;
}
.master-bar[hidden] { display: none; }
.master-bar-email { font-weight: 400; opacity: .7; }
.master-bar button {
    margin-left: auto; background: rgba(255,255,255,.15); border: none;
    color: #fff; border-radius: 6px; padding: 4px 12px; cursor: pointer; font-size: 12px;
}

/* ===== Botões de compra nos cards de plano ===== */
.pricing-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 11px 0;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    background: transparent;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, color .18s;
}
.pricing-btn:hover { background: #1a1a1a; color: #fff; }
.pricing-btn-featured {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.pricing-btn-featured:hover { background: #333; border-color: #333; }

/* ===== Modal de feedback de pagamento ===== */
.payment-modal-overlay {
    position: fixed; inset: 0; z-index: 10100;
    background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.payment-modal-overlay[hidden] { display: none; }
.payment-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.payment-modal-icon { font-size: 48px; line-height: 1; margin-bottom: 16px; }
.payment-modal-title { font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.payment-modal-msg { font-size: 15px; color: #555; margin: 0 0 24px; line-height: 1.5; }
.payment-modal .button { min-width: 140px; }

/* ===== Admin Panel ===== */
[hidden] { display: none !important; }

#admin-panel:not([hidden]) {
    position: fixed; inset: 0; z-index: 10000;
    display: grid;
    grid-template-rows: 56px 1fr;
    grid-template-columns: 220px 1fr;
    background: #f5f4f0;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    min-height: -webkit-fill-available;
}

.ap-header {
    grid-column: 1 / -1;
    background: #1a1a1a; color: #fff;
    display: flex; align-items: center;
    padding: 0 24px; gap: 14px;
    box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.ap-brand { font-weight: 900; font-size: 18px; margin-right: 4px; }
.ap-header-info { display: flex; align-items: center; gap: 8px; }
.ap-role-chip {
    background: rgba(255,255,255,.15); border-radius: 20px;
    padding: 2px 10px; font-size: 12px; font-weight: 700;
}
.ap-header-name { font-size: 13px; opacity: .65; }
.ap-logout-btn {
    margin-left: auto; background: rgba(255,255,255,.1); border: none;
    color: #fff; border-radius: 8px; padding: 6px 16px;
    cursor: pointer; font-size: 13px; font-weight: 600;
    transition: background 140ms;
}
.ap-logout-btn:hover { background: rgba(255,255,255,.2); }

.ap-sidebar {
    background: #fff; border-right: 1px solid #eae8e3;
    padding: 18px 10px;
    display: flex; flex-direction: column; gap: 3px;
    overflow-y: auto;
    min-height: 0;
}
.ap-nav-btn {
    display: flex; align-items: center; gap: 8px;
    width: 100%; text-align: left;
    background: none; border: none; border-radius: 10px;
    padding: 10px 14px; font-size: 14px; font-weight: 600;
    cursor: pointer; color: #666;
    transition: background 130ms, color 130ms;
}
.ap-nav-btn:hover { background: #f5f4f0; color: #1a1a1a; }
.ap-nav-btn.active { background: #1a1a1a; color: #fff; }

.ap-content {
    padding: 32px 36px;
    overflow-y: auto;
    min-height: 0;
}

.ap-title {
    font-size: 22px; font-weight: 800; margin: 0 0 24px; color: #1a1a1a;
}

.ap-section-header {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 20px;
}
.ap-section-header .ap-title { margin: 0; }
.ap-sm-btn { font-size: 13px; padding: 0 16px; min-height: 38px; }

.ap-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px; margin-bottom: 32px;
}
.ap-stat-card {
    background: #fff; border-radius: 16px;
    padding: 22px 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: flex; flex-direction: column; gap: 5px;
}
.ap-stat-icon { font-size: 18px; }
.ap-stat-card strong { font-size: 28px; font-weight: 800; line-height: 1; }
.ap-stat-label { font-size: 12px; color: #999; font-weight: 600; }

.ap-table-wrap { overflow-x: auto; border-radius: 14px; }
.ap-table {
    width: 100%; border-collapse: collapse;
    background: #fff; border-radius: 14px;
    overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ap-table th {
    background: #f5f4f0; text-align: left;
    padding: 11px 16px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em; color: #999;
}
.ap-table td {
    padding: 11px 16px; font-size: 14px;
    border-top: 1px solid #f0eeea; vertical-align: middle;
}
.ap-table tr:last-child td { border-bottom: none; }
.ap-table tbody tr:hover td { background: #fafaf8; }

.ap-badge {
    border-radius: 20px; padding: 2px 10px;
    font-size: 12px; font-weight: 700; white-space: nowrap;
}
.ap-badge-success { background: #d1fae5; color: #065f46; }
.ap-badge-danger  { background: #fee2e2; color: #991b1b; }

.ap-row-actions { display: flex; gap: 4px; align-items: center; }
.ap-btn-icon {
    background: none; border: none; cursor: pointer;
    font-size: 15px; border-radius: 6px; padding: 4px 6px;
    transition: background 120ms; line-height: 1;
}
.ap-btn-icon:hover { background: #f0eeea; }
.ap-btn-delete:hover { background: #fee2e2; }

.ap-empty {
    background: #fff; border-radius: 14px;
    padding: 40px; text-align: center;
    color: #aaa; font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.ap-form-wrap {
    background: #fff; border-radius: 16px;
    padding: 28px 32px; max-width: 460px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ap-form { display: flex; flex-direction: column; gap: 16px; }
.ap-field label { display: block; font-size: 13px; font-weight: 700; color: #555; }
.ap-field input,
.ap-field select {
    display: block; width: 100%; box-sizing: border-box;
    border: 1px solid #ddd; border-radius: 10px;
    padding: 10px 14px; font-size: 15px; outline: none;
    transition: border 160ms; margin-top: 6px;
    font-family: inherit;
}
.ap-field input:focus,
.ap-field select:focus { border-color: #1a1a1a; }
.ap-form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
.ap-form-error { color: #d93025; font-size: 13px; margin: 0; }

.ap-toast {
    position: fixed; bottom: 24px; right: 24px; z-index: 99999;
    background: #1a1a1a; color: #fff;
    border-radius: 10px; padding: 12px 20px;
    font-size: 14px; font-weight: 600;
    animation: apSlideUp 200ms ease;
    pointer-events: none;
}
@keyframes apSlideUp {
    from { transform: translateY(16px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ===== Password eye + recovery ===== */
.pwd-wrap {
    position: relative; display: flex; align-items: center;
}
.pwd-wrap input {
    flex: 1; padding-right: 42px !important;
}
.pwd-eye {
    position: absolute; right: 10px;
    background: none; border: none; cursor: pointer;
    color: #999; padding: 4px; display: flex; align-items: center;
    border-radius: 6px; transition: color 140ms;
    line-height: 0;
}
.pwd-eye:hover { color: #1a1a1a; }

.master-forgot-row {
    display: flex; justify-content: flex-end; margin-top: 10px; margin-bottom: 18px;
}
.master-forgot-btn {
    background: none; border: none; cursor: pointer;
    font-size: 13px; color: #999; padding: 0;
    transition: color 140ms; text-decoration: underline;
    text-underline-offset: 2px;
}
.master-forgot-btn:hover { color: #1a1a1a; }

.recovery-info {
    font-size: 13px; color: #666; margin: 0 0 18px; line-height: 1.6;
}
.recovery-code-label {
    font-size: 12px; font-weight: 700; color: #888;
    text-transform: uppercase; letter-spacing: .05em;
    margin: 14px 0 8px;
}
.recovery-code {
    background: #f5f4f0; border-radius: 10px;
    padding: 14px 18px; font-size: 26px; font-weight: 800;
    letter-spacing: 6px; text-align: center; color: #1a1a1a;
    border: 1px dashed #d0cec9;
}
