/*
====================================================
  TEMA (CORES & TOKENS) — ESCURO: AZUL BEM ESCURO + DOURADO
====================================================
*/
:root {
    /* Base / superfícies */
    --bg: #0a1226;
    /* azul bem escuro */
    --bg-2: #101b3a;
    --card: #0f1a33;
    --card-rgb: 15, 26, 51;
    --border: #455274;

    /* Tipografia */
    --text: #f5f7fa;
    /* branco quase puro */
    --muted: #c6cadd;

    /* Marca (Azul e Verde da logo) */
    --brand: #3d87f7;
    /* azul principal */
    --brand-2: #0bb616;
    /* verde médio */
    --brand-3: #52b75d;
    /* verde mais claro para destaque */

    /* Extras / tokens */
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .25);

    /* Header / Navegação */
    --header-bg: rgba(5, 10, 20, .7);
    --header-bg-scrolled: rgba(5, 10, 20, .85);
    --nav-link: #e4e4e4;
    --nav-link-hover: var(--brand-2);
    --nav-underline: var(--brand);

    /* Botões */
    --btn-bg: var(--card);
    --btn-text: #ffffff;
    --btn-border: var(--border);
    --btn-shadow: var(--shadow);
    --btn-ghost-bg: transparent;
    --btn-ghost-text: #ffffff;
    --btn-primary-bg: var(--brand-2);
    --btn-primary-fg: #ffffff;

    /* Inputs */
    --input-bg: #101b3a;
    --input-text: #ffffff;
    --input-border: var(--border);

    /* Gradientes */
    --grad-1: var(--brand);
    --grad-2: var(--brand-2);

    /* Preloader / Footer */
    --preloader-bg: #0a1226;
    --footer-bg-1: #050a17;
    --footer-bg-2: #080e20;
    --footer-divider: rgba(255, 255, 255, 0.06);

    /* Media overlay */
    --media-top: rgba(255, 255, 255, .05);
    --media-bottom: rgba(0, 0, 0, .06);

    --divider-soft: rgba(47, 107, 187, .25);
    --divider-strong: rgba(47, 107, 187, .45);
    --divider-glow: rgba(76, 175, 80, .35);
}

/*
====================================================
  RESET / BASE
====================================================
*/
* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg), var(--bg-2));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden !important;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:not(.btn):hover {
    color: var(--brand-2);
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: clamp(24px, 3vw, 40px);
    margin: 0 0 16px;
}

.section p {
    margin: 0 0 10px;
}

.section-head {
    margin: 0 0 16px;
}

.section-head h2 {
    font-size: clamp(24px, 3vw, 40px);
    margin: 0;
}

.section-head p {
    margin: 0;
}

/*
====================================================
  UTILITÁRIOS GERAIS (BOTÕES, PAINEL, CARDS, ETC.)
====================================================
*/
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-text);
    box-shadow: var(--btn-shadow);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:not(.btn--primary),
.btn:not(.btn--primary):visited {
    color: var(--btn-text);
}

.btn:not(.btn--primary):hover,
.btn:not(.btn--primary):focus {
    color: var(--btn-text);
}

.btn--primary {
    background: var(--btn-primary-bg);
    border-color: transparent;
    color: var(--btn-primary-fg);
}

.btn--primary:hover {
    background: var(--brand-2);
}

.btn--primary:active {
    background: var(--brand-3);
    transform: translateY(0);
}

.btn--ghost {
    background: var(--btn-ghost-bg);
    color: var(--btn-ghost-text);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.btn--shine {
    position: relative;
    overflow: hidden;
}

.btn--shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    transform: skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transition: left .4s ease;
}

.btn--shine:hover::after {
    left: 120%;
}

.glass {
    position: relative;
    border-radius: var(--radius);
    padding: 22px;

    /* fundo translúcido */
    background: rgba(var(--card-rgb, 15, 26, 51), 0.15);
    border: 1px solid var(--border);

    /* efeito de vidro */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* sombra igual ao padrão */
    box-shadow: var(--shadow);
}

.cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.card p {
    color: var(--muted);
}

.card>p:last-child {
    margin-top: auto;
}

.card__media {
    margin: 0 0 12px;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, var(--media-top), var(--media-bottom));
    aspect-ratio: 16/9;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-zoom {
    overflow: hidden;
    border-radius: var(--radius);
}

.img-zoom img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform .6s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/*
====================================================
  HEADER / NAVEGAÇÃO / TOGGLE DE TEMA
====================================================
*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-radius: 0px;
    padding: 0px;
    /* background: var(--header-bg); */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.site-header.is-scrolled {
    background: var(--header-bg-scrolled);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    color: var(--text);
}

.brand-logo {
    width: 120px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: var(--nav-link);
    position: relative;
}

.nav a:hover {
    color: var(--nav-link-hover);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--nav-underline);
    transition: width .25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.btn-whats {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.btn-theme-toggle {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-text);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background .25s ease, color .25s ease, transform .2s ease;
}

.btn-theme-toggle:hover {
    background: var(--brand);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--nav-link-hover);
    margin: 5px 0;
    border-radius: 5px;
}

@media (max-width:880px) {
    .nav {
        position: fixed;
        inset: 60px 16px auto 16px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
        display: none;
        flex-direction: column;
    }

    .nav.nav-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

/*
====================================================
  SECTION: HERO
====================================================
*/
#hero {
    padding: 96px 0 56px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.05;
    margin: 0 0 12px;
    background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .lead {
    font-size: clamp(16px, 2.4vw, 18px);
    color: var(--muted);
    margin: 0 0 18px;
}

.hero .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.hero .bullet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px dashed var(--divider-strong);
    font-weight: 600;
    color: var(--nav-link-hover);
    background: linear-gradient(180deg, rgba(122, 186, 60, .06), transparent);
}

/*
====================================================
  SECTION: FUNCIONALIDADES (AGRUPADAS)
====================================================
*/
#funcionalidades {
    padding: 84px 0 56px;
}

.features-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.features-grid .glass h3 {
    font-weight: 700;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(122, 186, 60, .12);
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

/* chips dos subitens */
.feature-group-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding: 0;
    list-style: none;
}

.feature-group-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, var(--media-top), transparent);
    color: var(--nav-link-hover);
    font-weight: 600;
    white-space: nowrap;
}

.feature-group-list svg {
    width: 16px;
    height: 16px;
}

.note-more {
    color: var(--muted);
    margin: 0 0 6px;
}

/* grid fluido */
.features-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

/* Último card centralizado quando sobrar sozinho em layout 3 colunas */
@media (min-width:980px) {
    .features-grid>.glass:last-child:nth-child(3n + 1) {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/*
====================================================
  SECTION: SEGURANÇA (CARD ÚNICO)
====================================================
*/
#seguranca {
    padding: 84px 0;
}

.security-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, var(--media-top), transparent);
}

.security-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(122, 186, 60, .12);
    color: var(--brand);
    border: 1px solid var(--border);
}

.security-copy {
    line-height: 1.45;
}

.security-copy .item-title {
    display: block;
    font-weight: 700;
    color: var(--nav-link-hover);
    margin-bottom: 2px;
}

.security-copy .item-desc {
    display: block;
    color: var(--muted);
    font-size: .95rem;
    word-break: keep-all;
}

/*
====================================================
  SECTION: CONTATO
====================================================
*/
#contato .form label {
    display: block;
    font-weight: 600;
    margin: 10px 0 6px;
}

#contato .form input,
#contato .form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--input-text);
}

#contato .form textarea {
    min-height: 140px;
    resize: vertical;
}

#contato .form .actions {
    margin-top: 16px;
}

#contato .grid-3 {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: clamp(16px, 2.4vw, 32px);
    align-items: start;
}

@media (max-width:760px) {
    #contato .form .actions .btn {
        width: 100%;
    }
}

#contato .form input,
#contato .form textarea {
    font-size: clamp(14px, 2.4vw, 16px);
    padding: clamp(10px, 2.1vw, 12px) clamp(12px, 2.4vw, 14px);
}

@media (max-width:760px) {
    #contato .form label {
        margin-top: 12px;
    }
}


.contato-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 24px;
}

.contato-card {
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.contato-card--mapa {
    padding: 16px;
    height: 100%;
}

.map-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #eaeaea;
    background: #f2f4f7;
    margin-bottom: 16px;
}

.map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contato-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.contato-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .975rem;
}

.contato-info a {
    text-decoration: none;
    word-break: break-word;
}

.contato-info a:hover {
    text-decoration: underline;
}

.ci-ico {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
}

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

.form-row {
    display: grid;
    gap: 6px;
}

.form-row label {
    font-size: .9rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--muted);
}



.form-actions {
    margin-top: 4px;
}

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

@media (prefers-reduced-motion:reduce) {

    .form-row input:focus,
    .form-row textarea:focus {
        box-shadow: none;
    }
}

/*
====================================
  FORM COMPACTO (NOVO)
====================================
*/
.form--compact label {
    margin: 6px 0 4px !important;
    font-weight: 600;
}

.form--compact input,
.form--compact textarea {
    padding: 8px 10px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
}

.form--compact textarea {
    min-height: 100px !important;
}

.form--compact .fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.form--compact .field {
    display: flex;
    flex-direction: column;
}

.form--compact .field--full {
    grid-column: 1 / -1;
}

@media (min-width:720px) {
    .form--compact .fields {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/*
====================================================
  PRELOADER / SPINNER
====================================================
*/
#preloader {
    position: fixed;
    inset: 0;
    background: var(--preloader-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .35s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, .08);
    border-top-color: var(--brand);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*
====================================================
  FOOTER
====================================================
*/
.site-footer {
    padding: 0;
    border-radius: 0px;
}

.site-footer::before {
    display: none;
}

.site-footer .container {
    padding: 0;
    margin: 0 auto;
}

.site-footer .copy {
    width: 100%;
    min-height: 40px;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .85rem;
    backdrop-filter: none;
    gap: .35rem;
    white-space: nowrap;
}

.copy img {
    height: 1rem;
    width: auto;
    vertical-align: middle;
}

/*
====================================================
  RECAPTCHA
====================================================
*/
.grecaptcha-badge {
    z-index: 99;
}

/*
====================================================
  IDENTIDADE PREMIUM DA VITRINE
====================================================
*/
:root {
    --dark-bg: #0a0a0b;
    --dark-surface: #121214;
    --dark-border: #202024;
    --primary: #00ff88;
    --primary-hover: #00e67a;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #3d5afe;
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-premium {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    margin-top: -30px;
    overflow-x: hidden;
}

.st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

#funcionalidades,
#relatorios,
#contato {
    scroll-margin-top: 110px;
}

.st-premium #funcionalidades.st-container {
    padding: 100px 32px;
}

/* --- HERO SECTION --- */
.st-hero {
    padding: 120px 32px 80px;
    text-align: center;
    position: relative;
}

.st-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.st-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
}

.st-hero h1 span {
    color: var(--primary);
}

.st-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
}

.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.st-btn-primary {
    background-color: var(--primary);
    color: var(--dark-bg) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.st-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.25);
}

.st-btn-whatsapp {
    background: #25D366;
    color: #07140d !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.18);
    gap: 10px;
}

.st-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.28);
}

.st-btn-secondary-outline {
    border: 1px solid var(--dark-border);
    color: var(--text-main) !important;
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
    margin-top: 12px;
}

.st-btn-secondary-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.06);
}

.st-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.st-whatsapp-highlight {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.07);
    border-radius: 18px;
}

.st-whatsapp-highlight strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.st-whatsapp-highlight p {
    color: var(--text-muted);
    margin: 0 0 14px 0;
    font-size: 0.95rem;
}

.st-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #07140d !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.st-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    background: #20bd5a;
    box-shadow: 0 22px 55px rgba(37, 211, 102, 0.45);
}

.st-whatsapp-float svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: currentColor;
}

.st-whatsapp-float-label {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: #ffffff;
    color: #121214;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.st-whatsapp-float:hover .st-whatsapp-float-label {
    opacity: 1;
    visibility: visible;
    right: 78px;
}

@media (max-width: 768px) {
    .st-whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
    }

    .st-whatsapp-float-label {
        display: none;
    }
}

/* --- FUNCIONALIDADES REAIS --- */
.st-section {
    padding: 100px 0;
}

.st-section-title {
    margin-bottom: 80px;
}

.st-section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.st-section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.st-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.st-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.st-card:hover {
    border-color: var(--primary);
    background: #16161a;
    transform: translateY(-8px);
}

.st-card-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    display: block;
}

.st-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.st-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.st-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- DESTAQUE DE RELATÓRIOS --- */
.st-reports {
    background: linear-gradient(180deg, var(--dark-bg), #000);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--dark-border);
}

.st-reports h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.st-reports-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.st-report-tag {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    color: var(--text-main);
}

/* --- CONTATO --- */
.st-contact {
    padding: 120px 32px;
}

.st-contact-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.st-contact-heading {
    margin: 0 0 24px;
    font-size: 2.5rem;
    font-weight: 800;
}

.st-contact-copy {
    margin: 0 0 40px;
    color: var(--text-muted);
}

.st-contact-details {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.st-contact-details p {
    margin: 0 0 15px;
}

.st-contact-details p:last-child {
    margin-bottom: 0;
}

.st-form-group {
    margin-bottom: 24px;
}

.st-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.st-input {
    width: 100%;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.st-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.05);
}

/* Mensagens de retorno */
.st-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 600;
}
.st-alert.ok {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
}
.st-alert.erro {
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid #ff5252;
    color: #ff5252;
}

.st-alert-debug {
    font-size: 0.82rem;
    opacity: 0.85;
}

.st-btn-block {
    width: 100%;
}

.st-honeypot {
    position: absolute;
    top: auto;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .st-contact-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .st-hero h1 {
        font-size: 3rem;
    }
}

/*
====================================================
  ESTRUTURA COMPARTILHADA DA VITRINE
====================================================
*/
html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: var(--text-main);
}

.site-main {
    min-height: calc(100vh - 184px);
}

.site-header,
.site-header.glass {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(28, 28, 31, 0.98);
    background-image: none;
    border: 0;
    border-bottom: 1px solid var(--dark-border);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition);
}

.site-header.is-scrolled {
    background: rgba(28, 28, 31, 0.98);
    border-bottom-color: rgba(0, 255, 136, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.site-header::before,
.site-header::after,
.site-header.glass::before,
.site-header.glass::after {
    display: none;
}

.site-header .header-wrap {
    width: min(1200px, calc(100% - 48px));
    min-height: 82px;
    padding: 12px 0;
}

.site-header .brand {
    flex-shrink: 0;
}

.site-header .brand-logo {
    display: block;
    width: 176px;
    max-height: 48px;
    object-fit: contain;
}

.site-header .nav {
    gap: 30px;
}

.site-header .nav a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}

.site-header .nav a:hover,
.site-header .nav a:focus-visible {
    color: var(--text-main);
}

.site-header .nav a::after {
    bottom: -9px;
    height: 2px;
    background: var(--primary);
}

.site-header .nav .site-nav-cta {
    padding: 10px 18px;
    color: var(--dark-bg);
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(0, 255, 136, 0.14);
}

.site-header .nav .site-nav-cta:hover,
.site-header .nav .site-nav-cta:focus-visible {
    color: var(--dark-bg);
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.site-header .nav .site-nav-cta::after {
    display: none;
}

.site-header .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    background: var(--dark-surface);
}

.site-header .nav-toggle span {
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
}

.site-footer {
    padding: 0;
    color: var(--text-muted);
    background: #18181b;
    border-top: 1px solid var(--dark-border);
    border-radius: 0;
}

.site-footer .site-footer__content {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0 24px;
}

.site-footer__brand {
    display: inline-flex;
    margin-bottom: 28px;
}

.site-footer__brand img {
    display: block;
    width: 164px;
    height: auto;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    padding-bottom: 34px;
}

.site-footer__nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: var(--primary);
}

.site-footer__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--dark-border);
    font-size: 0.82rem;
}

.site-footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer__credit a {
    display: inline-flex;
}

.site-footer__credit img {
    display: block;
    width: 94px;
    height: auto;
}

/*
====================================================
  CADASTRO EXTERNO
====================================================
*/
.st-signup {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 76px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(0, 255, 136, 0.08), transparent 34%),
        radial-gradient(circle at 88% 76%, rgba(61, 90, 254, 0.12), transparent 38%),
        var(--dark-bg);
}

.st-signup::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.st-signup .st-container {
    position: relative;
    z-index: 1;
}

.st-signup-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: center;
}

.st-signup-intro h1 {
    max-width: 560px;
    margin: 18px 0 24px;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.st-signup-intro h1 span {
    color: var(--primary);
}

.st-signup-intro>p {
    max-width: 540px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.st-signup-eyebrow,
.st-signup-step {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.st-signup-benefits {
    display: grid;
    gap: 14px;
    margin: 34px 0;
    padding: 0;
    list-style: none;
}

.st-signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d4d4d8;
}

.st-signup-benefits li::before {
    content: '✓';
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: var(--dark-bg);
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

.st-signup-back {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.st-signup-back:hover {
    color: var(--primary);
}

.st-signup-card {
    padding: clamp(28px, 5vw, 48px);
    background: rgba(18, 18, 20, 0.94);
    border: 1px solid var(--dark-border);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.st-signup-card-header {
    margin-bottom: 30px;
}

.st-signup-card-header h2 {
    margin: 8px 0 8px;
    color: var(--text-main);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.st-signup-card-header p {
    margin: 0;
    color: var(--text-muted);
}

.st-signup .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.st-signup .col-md-6,
.st-signup .col-md-12 {
    padding: 0 8px;
}

.st-signup .col-md-6 {
    width: 50%;
}

.st-signup .col-md-12 {
    width: 100%;
}

.st-signup .mb-3 {
    margin-bottom: 16px;
}

.st-signup .d-flex {
    display: flex;
}

.st-signup .align-items-end {
    align-items: flex-end;
}

.st-signup .form-group,
.st-signup .w-100 {
    width: 100%;
}

.st-signup .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d4d4d8;
    font-size: 0.86rem;
    font-weight: 700;
}

.st-signup .form-control {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: var(--text-main);
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    font: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
}

.st-signup .form-control::placeholder {
    color: #71717a;
}

.st-signup .form-control:hover {
    border-color: #34343a;
}

.st-signup .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.06);
}

.st-password-field {
    position: relative;
}

.st-password-field .form-control {
    padding-right: 48px;
}

.st-password-toggle {
    position: absolute;
    top: 50%;
    right: 7px;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--text-muted);
    background: transparent;
    border: 0;
    border-radius: 8px;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.st-password-toggle:hover,
.st-password-toggle:focus-visible {
    color: var(--primary);
    background: rgba(0, 255, 136, 0.08);
    outline: none;
}

.st-password-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.st-password-icon-hide,
.st-password-toggle.is-visible .st-password-icon-show {
    display: none;
}

.st-password-toggle.is-visible .st-password-icon-hide {
    display: block;
}

.st-field-feedback {
    display: none;
    margin-top: 6px;
    color: #ff6b6b;
    font-size: 0.78rem;
}

.st-field-feedback.is-visible {
    display: block;
}

.st-signup-actions {
    display: grid;
    gap: 12px;
    margin-top: 8px;
    text-align: center;
}

.st-signup-actions .st-btn {
    width: 100%;
}

.st-signup-actions small {
    color: #71717a;
    font-size: 0.75rem;
}

.st-signup-result:not(:empty) {
    margin-top: 20px;
}

@media (max-width: 880px) {
    .site-header .header-wrap {
        width: min(1200px, calc(100% - 32px));
        min-height: 72px;
    }

    .site-header .brand-logo {
        width: 150px;
    }

    .site-header .nav {
        inset: 72px 16px auto;
        gap: 8px;
        padding: 16px;
        background: rgba(28, 28, 31, 0.98);
        border-color: var(--dark-border);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .site-header .nav a {
        width: 100%;
        padding: 11px 12px;
    }

    .site-header .nav a::after {
        display: none;
    }

    .site-header .nav .site-nav-cta {
        margin-top: 6px;
        text-align: center;
    }

    .st-signup {
        padding: 58px 0 76px;
    }

    .st-signup-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .st-signup-intro {
        text-align: center;
    }

    .st-signup-intro h1,
    .st-signup-intro>p {
        margin-right: auto;
        margin-left: auto;
    }

    .st-signup-benefits {
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .st-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .st-hero {
        padding: 88px 20px 72px;
    }

    .st-premium #funcionalidades.st-container,
    .st-reports,
    .st-contact {
        padding: 72px 20px;
    }

    .st-hero h1 {
        font-size: 2.5rem;
    }

    .st-grid {
        grid-template-columns: 1fr;
    }

    .st-card,
    .st-contact-card {
        padding: 28px;
    }

    .st-reports h2,
    .st-section-title h2 {
        font-size: 2rem;
    }

    .site-footer .site-footer__content {
        width: min(1200px, calc(100% - 32px));
        padding-top: 36px;
    }

    .site-footer__copy {
        align-items: flex-start;
        flex-direction: column;
    }

    .st-signup .col-md-6 {
        width: 100%;
    }

    .st-signup-card {
        padding: 26px 20px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
