/* Mercatto landing — mobile-first, fundo alinhado ao login (auth-surface) */

:root {
    --ink: #0f172a;
    --muted: #94a3b8;
    --card: #ffffff;
    --primary: #2563eb;
    --cta-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    color: #e2e8f0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* —— Ambiente animado (gradiente + grade + brilho) —— */
.site-ambience {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.site-ambience__grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        #0b1220 0%,
        #0f172a 28%,
        #1e3a5f 52%,
        #2563eb 78%,
        #38bdf8 100%
    );
    background-size: 280% 280%;
    animation: site-grad-flow 22s ease-in-out infinite;
}

.site-ambience__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle at 1.1px 1.1px,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1.35px
    );
    background-size: 22px 22px;
}

.site-ambience__shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        52% 42% at 24% 22%,
        rgba(255, 255, 255, 0.14),
        transparent 70%
    );
    animation: site-shine 15s ease-in-out infinite;
}

@keyframes site-grad-flow {
    0%,
    100% {
        background-position: 0% 40%;
    }
    50% {
        background-position: 100% 60%;
    }
}

@keyframes site-shine {
    0%,
    100% {
        opacity: 0.38;
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        opacity: 0.78;
        transform: translate3d(3%, 2.5%, 0) scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-ambience__grad {
        animation: none;
        background-size: 100% 100%;
    }

    .site-ambience__shine {
        animation: none;
        opacity: 0.45;
        transform: none;
    }
}

.site-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-container {
    width: min(1080px, calc(100% - 1.5rem));
    margin-inline: auto;
}

.site-container--narrow {
    width: min(440px, calc(100% - 1.5rem));
}

/* —— Topbar —— */
.site-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.65rem 0;
    background: rgba(11, 18, 32, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.site-brand {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
}

.site-topbar__cta {
    margin-left: auto;
}

.site-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    flex-shrink: 0;
}

.site-menu-btn__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-topbar.menu-open .site-menu-btn__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-topbar.menu-open .site-menu-btn__bar:nth-child(2) {
    opacity: 0;
}

.site-topbar.menu-open .site-menu-btn__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    max-height: 100vh;
    padding: 4.5rem 1rem 1.5rem;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(15, 23, 42, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 60;
}

.site-topbar.menu-open .site-drawer {
    transform: translateX(0);
}

.site-drawer a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-drawer a:hover,
.site-drawer a:focus-visible {
    background: rgba(37, 99, 235, 0.25);
    color: #fff;
}

.site-drawer__highlight {
    background: rgba(37, 99, 235, 0.35);
    border: 1px solid rgba(147, 197, 253, 0.35);
}

.site-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(2px);
}

.site-backdrop.is-visible {
    display: block !important;
}

.site-backdrop[hidden] {
    display: none !important;
}

/* —— CTAs —— */
.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-cta:active {
    transform: scale(0.98);
}

.site-cta--primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: var(--cta-shadow);
}

.site-cta--primary:hover {
    filter: brightness(1.06);
}

.site-cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.25);
}

.site-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.site-cta--sm {
    min-height: 40px;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

.site-cta--block {
    width: 100%;
}

.site-cta--xl {
    min-height: 54px;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* —— Hero —— */
.site-hero {
    padding: 1.25rem 0 2.5rem;
    text-align: center;
}

.site-kicker {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bae6fd;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.site-hero__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
}

.site-hero__accent {
    display: block;
    margin-top: 0.2em;
    background: linear-gradient(90deg, #93c5fd, #fff, #7dd3fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-hero__lead {
    margin: 0 auto 1rem;
    max-width: 36rem;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.site-hero__title--echo {
    margin: 0 auto 1.35rem;
    max-width: 38rem;
    font-size: clamp(1.22rem, 5.2vw, 1.72rem);
    line-height: 1.18;
}

.site-hero__echo-line {
    display: block;
    margin-bottom: 0.2em;
    color: #fff;
}

.site-hero__title--echo .site-hero__accent {
    margin-top: 0;
    margin-bottom: 0.12em;
}

.site-hero__echo-continue {
    display: block;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f1f5f9;
}

.site-hero__cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.site-trust {
    margin: 0 auto 1.75rem;
    padding: 0;
    max-width: 26rem;
    list-style: none;
    text-align: left;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.site-trust li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
}

.site-trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}

.site-trust strong {
    color: #fff;
}

/* Prévia do dashboard (espelha o painel real do app) */
.site-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-dash-preview {
    max-width: min(328px, 100%);
    margin: 0 auto;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-align: left;
    overflow: hidden;
}

.site-dash-preview__frame {
    padding: 0.55rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, #fff 12%);
}

.site-dash-preview__head {
    margin: 0 0 0.45rem;
    padding: 0.5rem 0.55rem 0.55rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-dash-preview__kicker {
    margin: 0 0 0.2rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1d4ed8;
}

.site-dash-preview__title {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.2;
}

.site-dash-preview__lead {
    margin: 0;
    font-size: 0.65rem;
    color: #64748b;
    line-height: 1.35;
}

.site-dash-preview__kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    margin: 0 0 0.45rem;
    padding: 0;
    list-style: none;
}

.site-dash-preview__kpis li {
    margin: 0;
    padding: 0.4rem 0.35rem 0.45rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
}

.site-dash-preview__lbl {
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    line-height: 1.2;
}

.site-dash-preview__val {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.15;
    word-break: break-word;
}

.site-dash-preview__hint {
    font-size: 0.48rem;
    color: #94a3b8;
    line-height: 1.2;
}

.site-dash-preview__chart {
    border-radius: 10px;
    padding: 0.45rem 0.45rem 0.4rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.site-dash-preview__chart-title {
    margin: 0 0 0.25rem;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
}

.site-dash-preview__svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 300 / 88;
    border-radius: 6px;
}

@media (min-width: 640px) {
    .site-dash-preview {
        max-width: min(380px, 100%);
    }

    .site-dash-preview__title {
        font-size: 1.05rem;
    }

    .site-dash-preview__val {
        font-size: 0.78rem;
    }

    .site-dash-preview__lbl {
        font-size: 0.52rem;
    }

    .site-dash-preview__hint {
        font-size: 0.5rem;
    }

    .site-dash-preview__chart-title {
        font-size: 0.58rem;
    }
}

/* Prévia do PDV: moldura de celular + “tela cheia” em escala (lógico 390px) */
.site-pdv-preview {
    max-width: min(296px, calc(100vw - 2.5rem));
    margin: 0 auto 1.2rem;
    padding: 0;
    text-align: left;
}

.site-pdv-preview__device {
    position: relative;
    padding: 0.65rem;
    border-radius: 2.35rem;
    background: linear-gradient(165deg, #1e293b 0%, #0f172a 42%, #020617 100%);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-pdv-preview__island {
    position: absolute;
    top: 0.55rem;
    left: 50%;
    z-index: 3;
    width: 5.5rem;
    height: 1.55rem;
    margin-left: -2.75rem;
    border-radius: 999px;
    background: #020617;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
}

.site-pdv-preview__screen {
    position: relative;
    overflow: hidden;
    border-radius: 1.65rem;
    background: #020617;
    aspect-ratio: 10 / 19;
    container-type: inline-size;
    container-name: sitepdv;
}

.site-pdv-preview__scale-layer {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.site-pdv-preview__app {
    box-sizing: border-box;
    width: 390px;
    flex: 0 0 auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: #0f172a;
    background: #020617;
    transform-origin: top center;
    transform: scale(0.704);
}

@container sitepdv (min-width: 200px) {
    .site-pdv-preview__app {
        transform: scale(calc(100cqi / 390px));
    }
}

.site-pdv-preview__status {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.05rem 1rem 0.2rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.72);
}

.site-pdv-preview__status-icons {
    font-size: 9px;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

.site-pdv-preview__appbar {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 2.25rem 1fr 2.25rem;
    align-items: center;
    min-height: 2.85rem;
    padding: 0 0.65rem;
    background: linear-gradient(90deg, #0f172a, #1e293b);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-pdv-preview__appbar-icon {
    font-size: 1.05rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
}

.site-pdv-preview__appbar-icon--ghost {
    font-size: 0.75rem;
    opacity: 0.55;
}

.site-pdv-preview__appbar-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: -0.02em;
}

.site-pdv-preview__viewport {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    background: #f4f6fb;
}

.site-pdv-preview__shell {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
    margin: 0.75rem;
    padding: 0.85rem 0.85rem 0.95rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
    overflow: auto;
}

.site-pdv-preview__head {
    flex-shrink: 0;
    margin: 0;
    padding: 0.65rem 0.75rem 0.7rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-pdv-preview__kicker {
    margin: 0 0 0.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1d4ed8;
}

.site-pdv-preview__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.15;
}

.site-pdv-preview__layout {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1 1 auto;
    min-height: 0;
}

.site-pdv-preview__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-pdv-preview__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
}

.site-pdv-preview__input-wrap {
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.site-pdv-preview__input {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.65rem;
    border: 0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    color: #0f172a;
    background: transparent;
}

.site-pdv-preview__input:focus {
    outline: 2px solid rgba(37, 99, 235, 0.35);
    outline-offset: 0;
}

.site-pdv-preview__resumo {
    padding: 0.55rem 0.65rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.site-pdv-preview__resumo-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.4rem;
}

.site-pdv-preview__dl {
    margin: 0;
    padding: 0;
}

.site-pdv-preview__dl-row {
    margin-bottom: 0.4rem;
}

.site-pdv-preview__dl-row:last-child {
    margin-bottom: 0;
}

.site-pdv-preview__dl-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.site-pdv-preview__dl dt {
    margin: 0 0 0.1rem;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.site-pdv-preview__dl dd {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

.site-pdv-preview__dd-desc {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.site-pdv-preview__dd-total {
    font-size: 0.92rem !important;
    color: #1d4ed8 !important;
}

.site-pdv-preview__table-wrap {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: auto;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.site-pdv-preview__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
}

.site-pdv-preview__table thead th {
    padding: 0.45rem 0.35rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #475569;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.site-pdv-preview__table tbody td {
    padding: 0.5rem 0.35rem;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
    vertical-align: middle;
}

.site-pdv-preview__table .num {
    text-align: right;
    white-space: nowrap;
}

.site-pdv-preview__table .mono {
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-variant-numeric: tabular-nums;
}

.site-pdv-preview__prod {
    max-width: 7.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase;
}

.site-pdv-preview__cell-strong {
    font-weight: 800;
    color: #0f172a;
}

.site-pdv-preview__footer {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.site-pdv-preview__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.site-pdv-preview__total-lbl {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.site-pdv-preview__total-val {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
}

.site-pdv-preview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
}

.site-pdv-preview__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.65rem;
    border-radius: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
}

.site-pdv-preview__btn--ghost {
    color: #475569;
    border: 1px solid #cbd5e1;
    background: #fff;
}

.site-pdv-preview__btn--go {
    color: #fff;
    border: 1px solid #15803d;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.35);
}

.site-pdv-preview__fill {
    flex: 1 1 auto;
    min-height: 2.5rem;
    margin: 0 -0.15rem -0.15rem;
    border-radius: 0 0 0.45rem 0.45rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.5), #f1f5f9);
}

@media (min-width: 400px) {
    .site-pdv-preview {
        max-width: min(318px, calc(100vw - 2.5rem));
    }
}

@media (min-width: 640px) {
    .site-pdv-preview {
        max-width: min(340px, 100%);
    }
}

/* —— Sections —— */
.site-section {
    padding: 2rem 0;
}

.site-section--tight {
    padding: 1.25rem 0 2rem;
}

.site-h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.site-h2--center {
    text-align: center;
}

.site-h2__em {
    color: #7dd3fc;
}

.site-sub {
    margin: 0 0 1.25rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.site-sub--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 28rem;
}

.site-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-card {
    padding: 1.15rem 1.2rem;
    border-radius: 14px;
    color: #0c1929;
    background: linear-gradient(155deg, rgba(239, 246, 255, 0.97) 0%, rgba(219, 234, 254, 0.88) 42%, rgba(224, 242, 254, 0.82) 100%);
    border: 1px solid rgba(96, 165, 250, 0.45);
    box-shadow:
        0 4px 0 rgba(37, 99, 235, 0.12),
        0 16px 40px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-card__ico {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.45rem;
    filter: saturate(1.05);
}

.site-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #334e68;
    line-height: 1.45;
}

.site-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
}

.site-chip {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

/* —— Preço —— */
.site-price {
    padding: 1.75rem 1.35rem;
    border-radius: 18px;
    background: var(--card);
    color: var(--ink);
    text-align: center;
    border: 2px solid rgba(37, 99, 235, 0.45);
    box-shadow:
        0 24px 56px rgba(37, 99, 235, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.site-price__badge {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.site-price__trial {
    margin: 0 auto 0.75rem;
    max-width: 18rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    color: #166534;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(22, 163, 74, 0.35);
    border-radius: 999px;
}

.site-price__value {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 9vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    color: #1e40af;
}

.site-price__rs {
    font-size: 0.45em;
    vertical-align: super;
    margin-right: 0.08em;
}

.site-price__mes {
    font-size: 0.38em;
    font-weight: 700;
    color: #64748b;
    margin-left: 0.12em;
}

.site-price__list {
    margin: 0 0 1.35rem;
    padding: 0 0.5rem 0 1.25rem;
    text-align: left;
    font-size: 0.92rem;
    color: #334155;
}

.site-price__list li {
    margin-bottom: 0.4rem;
}

/* —— Passos —— */
.site-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-steps li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-steps__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.site-steps strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

.site-steps span {
    display: block;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.site-steps__lead {
    line-height: 1.55;
}

.site-steps__link-btn {
    display: inline-block;
    margin: 0 0.1rem 0 0;
    padding: 0.22rem 0.6rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    vertical-align: middle;
    border-radius: 8px;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    border: 1px solid rgba(147, 197, 253, 0.45);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

.site-steps__link-btn:hover {
    filter: brightness(1.07);
    color: #fff;
}

.site-steps__link-btn:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

/* —— Footer —— */
.site-footer {
    margin-top: auto;
    padding: 1.25rem 0 calc(1.25rem + var(--safe-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 6, 23, 0.5);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.site-footer__brand {
    color: #fff;
    font-size: 1.05rem;
}

.site-footer__tag {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
}

/* —— Tablet —— */
@media (min-width: 640px) {
    .site-hero__cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-hero__cta-row .site-cta {
        min-width: 200px;
    }

    .site-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .site-footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

/* —— Desktop: nav inline —— */
@media (min-width: 900px) {
    .site-hero {
        padding: 2rem 0 3rem;
    }

    .site-hero__accent {
        display: inline;
        margin-top: 0;
    }

    .site-hero__title--echo .site-hero__accent {
        display: inline;
    }

    .site-hero__echo-line {
        display: inline;
        margin-bottom: 0;
    }

    .site-hero__echo-continue {
        display: inline;
    }

    .site-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-menu-btn {
        display: none !important;
    }

    .site-topbar__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem 1rem;
        width: min(1080px, calc(100% - 2rem));
    }

    .site-drawer {
        position: static;
        transform: none !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        width: auto;
        max-height: none;
        padding: 0;
        margin: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        flex: 1 1 auto;
    }

    .site-drawer a {
        padding: 0.5rem 0.85rem;
        font-size: 0.88rem;
        font-weight: 600;
        border-radius: 999px;
        color: #e2e8f0;
    }

    .site-drawer a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .site-drawer__highlight {
        background: rgba(37, 99, 235, 0.45);
        border: 1px solid rgba(147, 197, 253, 0.35);
    }

    .site-topbar__cta {
        margin-left: 0;
    }
}
