@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* ==========================================================================
   Gicorrêa MKT — HUB style.css corrigido
   Arquivo correto: public_html/hub/assets/css/style.css

   Correções:
   - Plus Jakarta Sans em todo o Hub
   - cabeçalho sem botões trepados
   - paleta azul/preto/chumbo
   - remove verdes/roxos indevidos
   - corrige leitura em fundos escuros
   - melhora mobile e overflow horizontal
   - compatível com header.php, index.php e footer.php revisados
   ========================================================================== */

:root {
    --font-primary: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

    --electric: #006BFF;
    --electric-2: #35A7FF;
    --electric-3: #72C7FF;
    --blue-soft: #EAF3FF;
    --blue-soft-2: #D9ECFF;
    --blue-ink: #063A72;
    --blue-hover: #071D3D;

    --navy: #07111F;
    --black: #05070D;
    --black-2: #080B12;
    --bg: #05070D;
    --bg-soft: #0B1220;
    --bg-elevated: #101827;

    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --surface: #FFFFFF;
    --surface-soft: #F2F6FB;
    --surface-blue: #F4F8FF;

    --text: #223047;
    --text-strong: #0B1628;
    --muted: #5E6D84;
    --muted-dark: #A7B0C0;

    --line: rgba(255,255,255,.12);
    --line-dark: rgba(15,23,42,.10);
    --accent: #006BFF;
    --accent-dark: #071D3D;
    --success: #25D366;
    --danger: #EF4444;

    --shadow-sm: 0 10px 28px rgba(5,7,13,.08);
    --shadow: 0 24px 70px rgba(5,7,13,.14);
    --shadow-lg: 0 36px 120px rgba(0,0,0,.35);
    --shadow-blue: 0 20px 60px rgba(0,107,255,.24);

    --radius: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --radius-pill: 999px;

    --max: 1180px;
    --header-height: 82px;

    --gradient-dark:
        radial-gradient(circle at 18% 20%, rgba(0,107,255,.24), transparent 42%),
        linear-gradient(135deg, #05070D 0%, #0B1220 55%, #10233F 100%);

    --gradient-dark-hero:
        radial-gradient(circle at 82% 18%, rgba(0,107,255,.30), transparent 36%),
        radial-gradient(circle at 18% 18%, rgba(53,167,255,.12), transparent 34%),
        linear-gradient(135deg, #05070D 0%, #0B1220 52%, #10233F 100%);

    --gradient-soft:
        radial-gradient(circle at 18% 10%, rgba(0,107,255,.07), transparent 34%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--text);
    background:
        radial-gradient(circle at 12% -10%, rgba(0,107,255,.08), transparent 32%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

body,
button,
input,
select,
textarea,
a,
p,
li,
span,
summary,
label {
    font-family: var(--font-primary);
}

img,
svg,
video,
iframe,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    min-height: 60vh;
}

:focus-visible {
    outline: 3px solid rgba(0,107,255,.48);
    outline-offset: 4px;
    border-radius: 8px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    max-width: 880px;
}

.container,
.header-grid,
.hero-grid,
.split,
.contact-grid,
.grid-3,
.grid-4,
.grid-5,
.plans-grid,
.stage-row,
.flow-list,
.comparison-grid,
.metric-grid,
.footer-grid,
.hub-footer-grid {
    max-width: 100%;
}

.header-grid > *,
.hero-grid > *,
.split > *,
.contact-grid > *,
.grid-3 > *,
.grid-4 > *,
.grid-5 > *,
.plans-grid > *,
.stage-row > *,
.flow-list > *,
.comparison-grid > *,
.metric-grid > *,
.footer-grid > *,
.hub-footer-grid > * {
    min-width: 0;
}

.text-gradient {
    display: inline;
    line-height: inherit;
    padding-bottom: .12em;
    background: linear-gradient(135deg, var(--electric), var(--electric-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.small {
    font-size: 13px;
    color: var(--muted);
}

/* ==========================================================================
   Skip link
   ========================================================================== */

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.skip-link:focus {
    left: 16px;
    top: 12px;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 1200;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 12px 24px rgba(0,0,0,.24);
}

/* ==========================================================================
   Header / Navegação
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    isolation: isolate;
    background: linear-gradient(90deg, #000000 0%, #000000 52%, #07111F 76%, #10233F 100%);
    border-bottom: 1px solid rgba(53,167,255,.22);
    box-shadow: 0 18px 50px rgba(0,0,0,.34);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.header-grid {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: auto;
    max-width: 190px;
    max-height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-link,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.015em;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--white);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
}

.nav-cta {
    background: #071D3D;
    color: var(--white);
    border-color: rgba(114,199,255,.35);
    box-shadow: 0 14px 34px rgba(7,29,61,.28);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: linear-gradient(135deg, var(--electric), var(--electric-2));
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    font-weight: 700;
}

/* ==========================================================================
   Botões
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    max-width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.hero .btn-secondary,
.section-dark .btn-secondary,
.dashboard-card .btn-secondary,
.hero-card .btn-secondary,
.premium-strip .btn-secondary,
.final-cta .btn-secondary,
.cta-box .btn-secondary {
    background: #071D3D;
    color: #FFFFFF;
    border-color: rgba(114,199,255,.35);
    box-shadow: 0 18px 48px rgba(7,29,61,.28);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible,
.hero .btn-secondary:hover,
.section-dark .btn-secondary:hover,
.dashboard-card .btn-secondary:hover,
.hero-card .btn-secondary:hover,
.premium-strip .btn-secondary:hover,
.final-cta .btn-secondary:hover,
.cta-box .btn-secondary:hover {
    background: linear-gradient(135deg, #006BFF 0%, #35A7FF 100%);
    color: #FFFFFF;
    border-color: rgba(53,167,255,.58);
    box-shadow: 0 22px 58px rgba(0,107,255,.30);
    transform: translateY(-1px);
}

.actions,
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

/* ==========================================================================
   Eyebrow / Badges
   ========================================================================== */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--electric-2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--electric);
    box-shadow: 0 0 0 6px rgba(0,107,255,.12);
    flex-shrink: 0;
}

.badge,
.service-card .badge,
.feature-card .badge,
.dark-card .badge,
.stage-card strong,
.mini-proof span,
.footer-proof span,
.plan-card.featured .badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: var(--blue-soft);
    color: var(--blue-ink);
    border: 1px solid rgba(0,107,255,.14);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.01em;
}

.dark-card .badge,
.section-dark .badge,
.premium-strip .badge,
.diagnosis-box .badge {
    background: rgba(53,167,255,.14);
    color: #8ED0FF;
    border-color: rgba(53,167,255,.24);
}

/* ==========================================================================
   Tipografia
   ========================================================================== */

h1,
h2,
h3,
h4,
.hero h1,
.section h2,
.section-header h2,
.contact-copy h2,
.dashboard-card h2,
.hero-card h2,
.cta-box h2,
.service-card h3,
.feature-card h3,
.dark-card h3,
.step-card h3,
.plan-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.10;
    overflow: visible;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-rendering: optimizeLegibility;
}

.hero h1 {
    margin: 0;
    max-width: 960px;
    font-size: clamp(44px, 6.1vw, 82px);
    line-height: 1.12;
    letter-spacing: -0.018em;
    padding-bottom: .18em;
}

.hero p,
.section-lead,
.service-card p,
.feature-card p,
.step-card p,
.comparison-card p,
.contact-copy p,
.cta-box p {
    color: var(--muted);
    font-weight: 500;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
    color: var(--white);
    background: var(--gradient-dark-hero);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% 45%;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0,107,255,.20), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
    gap: clamp(36px, 5vw, 76px);
    align-items: center;
}

.hero h1,
.hero h2,
.hero h3,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.final-cta h2,
.premium-strip h3,
.dashboard-card h2,
.hero-card h2,
.dark-card h3,
.diagnosis-box h3,
.cta-box h2 {
    color: #FFFFFF;
}

.hero p,
.section-dark p,
.section-dark .section-lead,
.final-cta p,
.premium-strip p,
.dashboard-card p,
.hero-card p,
.hero-card li,
.dark-card p,
.diagnosis-box p,
.cta-box p {
    color: rgba(255,255,255,.76);
}

.local-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #D9ECFF;
    background: rgba(53,167,255,.12);
    border: 1px solid rgba(53,167,255,.24);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
    letter-spacing: .01em;
}

.proof-strip {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-num {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
}

.proof-label {
    font-size: 12px;
    color: rgba(255,255,255,.72);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.16);
}

/* Dashboard / Hero card */
.hero-card,
.dashboard-card {
    position: relative;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,107,255,.20), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--shadow-lg);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    color: #FFFFFF;
}

.hero-card h2,
.dashboard-card h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.4vw, 56px);
    line-height: 1;
}

.hero-card ul {
    padding-left: 18px;
    margin: 18px 0 0;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.metric-box {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
}

.metric-number {
    display: block;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.04em;
}

.metric-label {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
}

/* ==========================================================================
   Seções / grids
   ========================================================================== */

.section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.section-soft {
    background: var(--gradient-soft);
}

.section-dark,
.final-cta,
.premium-strip,
.diagnosis-box {
    color: var(--white);
    background:
        radial-gradient(circle at 78% 18%, rgba(0,107,255,.25), transparent 34%),
        radial-gradient(circle at 18% 20%, rgba(53,167,255,.14), transparent 36%),
        linear-gradient(135deg, #05070D 0%, #07111F 58%, #10233F 100%);
}

.section-header {
    max-width: 860px;
    margin-bottom: 36px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.center {
    margin-inline: auto;
    text-align: center;
}

.section h2,
.section-header h2 {
    margin: 0;
    color: var(--text-strong);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.11;
    letter-spacing: -.022em;
}

.section-dark h2 {
    color: var(--white);
}

.section-lead {
    margin: 18px auto 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 18px;
}

.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.feature-card,
.service-card,
.step-card,
.comparison-card,
.plan-card {
    position: relative;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 30px;
    background: var(--white);
    border: 1px solid rgba(0,107,255,.15);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    color: inherit;
}

.service-card,
.feature-card,
.step-card {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover,
.feature-card:hover,
.step-card:hover,
.service-card:focus-visible,
.feature-card:focus-visible,
.step-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(0,107,255,.34);
    box-shadow: 0 28px 80px rgba(15,23,42,.12);
    color: inherit;
}

.service-card:hover h3,
.feature-card:hover h3,
.step-card:hover h3 {
    color: #006BFF;
}

.service-card::after,
.feature-card::after,
.step-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0,107,255,.10), transparent 70%);
    pointer-events: none;
}

.service-card h3,
.feature-card h3,
.step-card h3,
.comparison-card h3 {
    position: relative;
    margin: 18px 0 12px;
    color: var(--text-strong);
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.10;
}

.service-card p,
.feature-card p,
.step-card p,
.comparison-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
}

.dark-card,
.service-card.dark-card {
    min-height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 10%, rgba(0,107,255,.24), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 90px rgba(0,0,0,.24);
    color: #fff;
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--electric);
    font-weight: 700;
}

/* Processo */
.process-number {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--electric), var(--electric-2));
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-blue);
}

/* ==========================================================================
   Planos / boxes especiais
   ========================================================================== */

.stage-row,
.comparison-grid,
.flow-list {
    display: grid;
    gap: 18px;
}

.stage-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.comparison-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flow-list { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: stretch;
    margin-top: 34px;
}

.stage-card,
.flow-list div {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(0,107,255,.16);
    box-shadow: var(--shadow-sm);
}

.stage-card strong {
    display: block;
    color: var(--electric);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .10em;
    margin-bottom: 8px;
}

.stage-card span,
.flow-list div {
    color: var(--text-strong);
    font-weight: 700;
    line-height: 1.1;
}

.plan-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.plan-card:hover,
.plan-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(0,107,255,.46);
    box-shadow: 0 34px 95px rgba(15,23,42,.16);
}

.plan-card.featured {
    background: var(--gradient-dark);
    border-color: rgba(53,167,255,.34);
    box-shadow: 0 34px 100px rgba(0,0,0,.24);
    transform: translateY(-8px);
}

.plan-card h3 {
    margin: 22px 0 12px;
    color: var(--text-strong);
    font-size: clamp(23px, 1.55vw, 29px);
    line-height: 1.08;
    min-height: 60px;
    display: flex;
    align-items: flex-end;
}

.plan-card .plan-best-for {
    min-height: 118px;
    margin: 0 0 18px;
    color: #334155;
    font-size: 14px;
    line-height: 1.62;
}

.plan-price {
    margin: 0 0 18px;
    color: var(--text-strong);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.025em;
}

.plan-price span {
    display: block;
    margin-top: 6px;
    color: #475569;
    font-size: 12px;
    line-height: 1.35;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 11px;
}

.plan-card li {
    position: relative;
    padding-left: 22px;
    color: #334155;
    font-size: 13px;
    line-height: 1.46;
}

.plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--electric);
    font-weight: 700;
}

.plan-card .btn {
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    padding: 0 14px;
    font-size: 13px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.plan-card.featured h3,
.plan-card.featured .plan-price,
.plan-card.featured li {
    color: var(--white);
}

.plan-card.featured p,
.plan-card.featured .plan-best-for,
.plan-card.featured .plan-price span {
    color: rgba(255,255,255,.80);
}

.plan-card.featured li::before {
    color: var(--electric-2);
}

.plan-card.featured .btn {
    background: #071D3D;
    color: #fff;
    border-color: rgba(114,199,255,.35);
}

.diagnosis-box,
.flow-box,
.premium-strip {
    margin-top: 34px;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 34px;
    border: 1px solid rgba(53,167,255,.24);
    box-shadow: 0 30px 90px rgba(0,0,0,.22);
    color: var(--white);
}

.diagnosis-box {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.diagnosis-box h3,
.premium-strip h3 {
    margin: 10px 0 14px;
    color: var(--white);
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.08;
}

.diagnosis-steps {
    display: grid;
    gap: 12px;
}

.diagnosis-steps div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.82);
    font-weight: 700;
}

.flow-box {
    background:
        radial-gradient(circle at 85% 15%, rgba(0,107,255,.16), transparent 38%),
        linear-gradient(135deg, #FFFFFF 0%, #F7FBFF 100%);
    color: var(--text);
    border-color: rgba(0,107,255,.18);
    box-shadow: var(--shadow-sm);
}

.flow-box h2 {
    color: var(--text-strong);
}

.premium-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    overflow: hidden;
    position: relative;
}

.premium-strip::after {
    content: "";
    position: absolute;
    inset: auto -8% -45% auto;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0,107,255,.26), transparent 68%);
    pointer-events: none;
}

.premium-strip > * {
    position: relative;
    z-index: 1;
}

.premium-strip-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 230px;
}

.premium-strip-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

#servicos .service-card-wide {
    grid-column: 1 / -1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 46px);
    background:
        radial-gradient(circle at 92% 92%, rgba(0,107,255,.10), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

#servicos .service-card-wide h3 { max-width: 620px; }
#servicos .service-card-wide p  { max-width: 760px; }

/* ==========================================================================
   Formulário / Contato
   ========================================================================== */

.contact-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(0,107,255,.08), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.contact-copy h2 {
    margin: 0 0 18px;
    color: var(--text-strong);
    font-size: clamp(34px, 4.8vw, 62px);
    line-height: 1.10;
}

.contact-copy p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-list a {
    color: var(--electric);
    font-weight: 700;
    word-break: break-word;
    transition: color .2s ease;
}

.contact-list a:hover {
    color: var(--blue-hover);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-form {
    padding: clamp(24px, 3vw, 36px);
    border-radius: 32px;
    background: var(--white);
    border: 1px solid rgba(0,107,255,.14);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field.full {
    grid-column: 1 / -1;
}

label {
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(15,23,42,.14);
    border-radius: 16px;
    background: #FFFFFF;
    color: var(--text-strong);
    padding: 0 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-size: 16px;
}

textarea {
    min-height: 132px;
    resize: vertical;
    padding-top: 14px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(0,107,255,.55);
    box-shadow: 0 0 0 4px rgba(0,107,255,.10);
}

.contact-form .btn,
.contact-form button[type="submit"] {
    margin-top: 20px;
    width: 100%;
    background: #071D3D;
    color: #FFFFFF;
}

.contact-form .btn:hover,
.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #006BFF 0%, #35A7FF 100%);
}

.form-note {
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 14px;
}

/* ==========================================================================
   FAQ / CTA Final
   ========================================================================== */

.faq details {
    padding: 22px 0;
    border-bottom: 1px solid rgba(15,23,42,.10);
}

.faq summary {
    cursor: pointer;
    color: var(--text-strong);
    font-weight: 700;
    font-size: 18px;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq details p {
    color: var(--muted);
    margin-bottom: 0;
    margin-top: 12px;
}

.final-cta {
    color: var(--white);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 34px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 56px);
}

.cta-box p {
    color: rgba(255,255,255,.74);
    max-width: 720px;
}

.cta-box .actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    align-items: stretch;
}

.cta-box .actions .btn {
    min-width: 190px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer,
.hub-footer,
.site-footer.hub-footer {
    padding: 58px 0 28px;
    color: rgba(255,255,255,.78);
    background:
        radial-gradient(circle at 8% 0%, rgba(0,107,255,.13), transparent 34%),
        linear-gradient(135deg,#02050B 0%,#05070D 58%,#0B111C 100%);
    border-top: 1px solid rgba(53,167,255,.18);
}

.hub-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px,1.25fr) minmax(280px,.95fr) minmax(220px,.85fr);
    gap: clamp(32px,6vw,90px);
    align-items: start;
}

.hub-footer-logo {
    display: inline-flex;
    align-items: center;
    width: 210px;
    max-width: 100%;
    margin: 0 0 18px;
}

.hub-footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hub-footer-brand p {
    max-width: 440px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.hub-footer-tags,
.hub-footer-social nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hub-footer-tags span,
.hub-footer-social a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 700;
}

.hub-footer-title {
    display: block;
    margin: 0 0 16px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
}

.hub-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 26px;
}

.hub-footer-links a,
.hub-footer-contact a,
.hub-footer-contact span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.hub-footer-contact {
    display: grid;
    gap: 12px;
}

.hub-footer-social {
    margin-top: 24px;
}

.hub-footer-bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: space-between;
    gap: 22px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.55;
}

.hub-footer-bottom p {
    margin: 0;
}

.hub-footer-bottom a,
.hub-footer a,
.site-footer a {
    color: rgba(255,255,255,.72);
}

.hub-footer a:hover,
.site-footer a:hover,
.hub-footer-bottom a:hover {
    color: #35A7FF;
}

/* Legacy footer compatibility */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .85fr .85fr;
    gap: clamp(32px, 6vw, 80px);
}

.footer-brand img {
    max-width: 220px;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 420px;
}

.footer-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin: 0 0 10px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.54);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 998;
    min-height: 54px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: #25D366;
    color: #07111F;
    font-weight: 700;
    box-shadow: 0 18px 50px rgba(37,211,102,.34);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(37,211,102,.44);
}

/* ==========================================================================
   Compatibilidade com páginas do Diagnóstico caso o arquivo seja usado lá
   ========================================================================== */

.gd-container{width:min(1180px,calc(100% - 40px));margin:0 auto}
.gd-topbar{position:sticky;top:0;z-index:20;background:linear-gradient(90deg,#000 0%,#000 52%,#101721 100%);border-bottom:1px solid rgba(53,167,255,.20);box-shadow:0 18px 45px rgba(0,0,0,.22)}
.gd-topbar-inner{min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.gd-logo{display:inline-flex;align-items:center;max-width:220px}
.gd-logo img{max-height:54px;width:auto}
.gd-nav{display:flex;align-items:center;gap:8px}
.gd-nav a{color:rgba(255,255,255,.78);font-size:14px;font-weight:700;padding:11px 13px;border-radius:999px;border:1px solid transparent}
.gd-nav a:hover,.gd-nav a.is-active{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.12)}
.gd-btn{min-height:52px;display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:0 22px;border-radius:999px;border:1px solid transparent;font-weight:700;font-size:14px;letter-spacing:-.02em;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;white-space:nowrap;font-family:inherit}
.gd-btn:hover,.gd-btn:focus{transform:translateY(-1px)}
.gd-btn-primary{background:linear-gradient(135deg,#006BFF 0%,#35A7FF 100%);color:#fff;box-shadow:0 18px 46px rgba(0,107,255,.30)}
.gd-btn-secondary{background:#071D3D;color:#fff;border-color:rgba(114,199,255,.35)}
.gd-btn-dark{background:#071D3D;color:#fff;border-color:rgba(114,199,255,.35);box-shadow:0 16px 42px rgba(15,23,42,.16)}
.gd-section{padding:clamp(58px,8vw,96px) 0}
.gd-section-soft{background:linear-gradient(180deg,#fff 0%,#F4F7FB 100%)}
.gd-section-dark{background:var(--gradient-dark-hero);color:#fff}
.gd-section-header{max-width:900px;margin:0 auto 34px;text-align:center}
.gd-section h2{margin:0;color:var(--text-strong);font-size:clamp(36px,4.5vw,62px);line-height:1.10;letter-spacing:-.022em;font-weight:700}
.gd-section-dark h2,.gd-section-dark h3{color:#fff}
.gd-section-lead{margin:16px auto 0;color:var(--muted);font-size:18px;line-height:1.58}
.gd-section-dark .gd-section-lead,.gd-section-dark p,.gd-section-dark li{color:rgba(255,255,255,.74)}
.gd-card,.gd-plan,.gd-form-card,.gd-offer-box,.gd-final{overflow-wrap:anywhere}
.gd-badge{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;background:#EAF3FF;color:#063A72;border:1px solid rgba(0,107,255,.14);font-weight:700;font-size:11px;margin-bottom:18px}
.gd-whatsapp{position:fixed;right:18px;bottom:18px;z-index:40;background:#25D366;color:#07111F;border-radius:999px;padding:14px 18px;font-weight:700;box-shadow:0 18px 48px rgba(37,211,102,.30)}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 1180px) {
    :root { --max: 1040px; }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 14px;
        border-radius: 22px;
        background:
            radial-gradient(circle at top left, rgba(0,107,255,.14), transparent 40%),
            linear-gradient(180deg, #06080D 0%, #121824 100%);
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: 0 24px 70px rgba(0,0,0,.42);
        max-width: calc(100vw - 32px);
        margin-inline: auto;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav .nav-link,
    .main-nav .nav-cta {
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 15px;
        color: #FFFFFF;
        background: rgba(255,255,255,.04);
        border-color: rgba(255,255,255,.08);
    }

    .main-nav .nav-cta {
        justify-content: center;
        background: linear-gradient(135deg, var(--electric), var(--electric-2));
    }

    .hero-grid,
    .split,
    .contact-grid,
    .diagnosis-box {
        grid-template-columns: 1fr;
    }

    .grid-4,
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stage-row,
    .flow-list,
    .comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card h3,
    .plan-card .plan-best-for {
        min-height: auto;
    }
}

@media (max-width: 980px) {
    :root { --header-height: 86px; }

    .container {
        width: min(100% - 32px, var(--max));
    }

    .hero {
        padding: 64px 0 74px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 68px);
        letter-spacing: -.018em;
        line-height: 1.12;
    }

    .hero p { font-size: 17px; }

    .hero-card,
    .dashboard-card {
        padding: 28px;
        border-radius: 28px;
    }

    .grid-3,
    .grid-4,
    .plans-grid,
    .stage-row,
    .comparison-grid,
    .flow-list {
        grid-template-columns: 1fr;
    }

    #servicos .service-card-wide {
        grid-column: span 1;
    }

    .premium-strip,
    .cta-box {
        display: block;
    }

    .premium-strip-actions,
    .cta-box .actions {
        margin-top: 22px;
        width: 100%;
        min-width: 0;
    }

    .premium-strip-actions .btn,
    .cta-box .actions .btn {
        width: 100%;
        min-width: 0;
    }

    .footer-grid,
    .hub-footer-grid {
        grid-template-columns: 1fr;
    }

    .hub-footer-links {
        grid-template-columns: 1fr;
    }

    .copyright,
    .hub-footer-bottom {
        flex-direction: column;
    }

    .gd-hero-grid,.gd-split,.gd-diagnosis-box{grid-template-columns:1fr}
    .gd-plans-grid,.gd-stage-row,.gd-path-grid,.gd-compare{grid-template-columns:repeat(2,minmax(0,1fr))}
    .gd-proof-row,.gd-offer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .header-grid {
        min-height: 82px;
        gap: 12px;
    }

    .brand img { max-width: 168px; }

    .menu-toggle {
        min-height: 50px;
        padding: 0 18px;
        font-size: 15px;
    }

    .hero { padding: 54px 0 66px; }

    .hero h1 {
        font-size: clamp(36px, 10.5vw, 52px);
        line-height: 1.14;
        letter-spacing: -0.014em;
    }

    .proof-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .proof-item {
        align-items: center;
        text-align: center;
    }

    .proof-divider {
        display: none;
    }

    .hero-actions,
    .actions,
    .cta-box .actions,
    .premium-strip-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        align-items: stretch;
    }

    .hero-actions .btn,
    .actions .btn,
    .cta-box .btn,
    .premium-strip-actions .btn,
    .btn {
        width: 100%;
        white-space: normal;
        min-height: 54px;
        text-align: center;
        padding-inline: 18px;
        line-height: 1.2;
    }

    .section { padding: 58px 0; }

    .section h2,
    .section-header h2,
    .contact-copy h2 {
        font-size: clamp(31px, 8.8vw, 46px);
        line-height: 1.13;
        letter-spacing: -0.016em;
    }

    .section-lead { font-size: 16px; }

    .feature-card,
    .service-card,
    .step-card,
    .comparison-card,
    .plan-card,
    .contact-form,
    .hero-card,
    .dashboard-card,
    .dark-card {
        padding: 22px;
        border-radius: 24px;
    }

    .metric-grid,
    .form-grid,
    .grid-3,
    .grid-4,
    .grid-5,
    .plans-grid,
    .stage-row,
    .comparison-grid,
    .flow-list {
        grid-template-columns: 1fr;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-pill {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 50px;
        padding: 0 16px;
        font-size: 14px;
    }

    .gd-container{width:min(100% - 28px,1180px)}
    .gd-topbar-inner{min-height:78px}
    .gd-logo{max-width:185px}
    .gd-nav{display:none}
    .gd-top-cta{min-height:46px;padding:0 16px;font-size:13px}
    .gd-proof-row,.gd-path-grid,.gd-offer-grid,.gd-form-grid,.gd-plans-grid,.gd-stage-row,.gd-compare{grid-template-columns:1fr}
}

@media (max-width: 420px) {
    .container { width: min(100% - 24px, var(--max)); }

    .brand img { max-width: 156px; }

    .menu-toggle {
        padding: 0 14px;
        min-width: 82px;
    }

    .hero h1 { font-size: 34px; }

    .hero p,
    .section-lead,
    .contact-copy p { font-size: 15px; }

    .btn {
        min-height: 52px;
        padding-inline: 16px;
        font-size: 14px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .footer-brand img,
    .hub-footer-logo {
        max-width: 190px;
    }
}

/* ==========================================================================
   Acessibilidade — redução de movimento
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ==========================================================================
   BLOQUEIO FINAL VISUAL — HUB GICORRÊA MKT
   Este bloco precisa ficar no FINAL do arquivo.
   Motivo: algumas páginas do Hub têm CSS inline no próprio PHP, carregado depois
   do style.css. Por isso usamos !important aqui para travar a paleta e o layout.
   ========================================================================== */

/* Fonte e base */
html,
body,
button,
input,
select,
textarea,
a,
p,
li,
span,
summary,
label {
    font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
    color: #223047 !important;
}

img,
svg,
video,
iframe,
picture {
    max-width: 100% !important;
    height: auto !important;
}

/* Títulos */
h1,
h2,
h3,
h4,
.hero h1,
.section h2,
.section-header h2,
.contact-copy h2,
.dashboard-card h2,
.hero-card h2,
.cta-box h2,
.service-card h3,
.feature-card h3,
.dark-card h3,
.step-card h3,
.plan-card h3 {
    font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.018em !important;
    line-height: 1.12 !important;
    overflow: visible !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

.hero h1 {
    max-width: 960px !important;
    font-size: clamp(44px, 6.1vw, 82px) !important;
    line-height: 1.13 !important;
    letter-spacing: -0.014em !important;
    padding-bottom: .18em !important;
}

.text-gradient,
.gd-gradient {
    display: inline !important;
    line-height: inherit !important;
    padding-bottom: .12em !important;
    background: linear-gradient(135deg, #006BFF 0%, #35A7FF 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Cabeçalho */
.site-header,
.site-header.is-scrolled {
    background: linear-gradient(90deg, #000000 0%, #000000 52%, #07111F 76%, #10233F 100%) !important;
    border-bottom: 1px solid rgba(53,167,255,.22) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,.34) !important;
}

.header-grid {
    min-height: 82px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    min-width: 0 !important;
    position: relative !important;
}

.brand {
    flex: 0 0 auto !important;
}

.brand img {
    width: auto !important;
    max-width: 190px !important;
    max-height: 48px !important;
    object-fit: contain !important;
}

.main-nav {
    gap: 6px !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;
}

.nav-link,
.nav-cta {
    min-height: 40px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    white-space: nowrap !important;
}

/* Botões — trava azul-marinho e hover azul elétrico */
.btn,
.btn-primary,
.btn-secondary,
.btn-dark,
.nav-cta,
.hero .hero-actions .btn-secondary,
.hero .hero-actions .btn-primary,
.section-dark .actions .btn-secondary,
.section-dark .actions .btn-primary,
.dashboard-card .btn-secondary,
.hero-card .btn-secondary,
.premium-strip-actions .btn,
.premium-strip .btn,
.final-cta .btn,
.cta-box .btn,
.contact-form button[type="submit"],
.gd-btn,
.gd-btn-primary,
.gd-btn-secondary,
.gd-btn-dark {
    background: #071D3D !important;
    color: #FFFFFF !important;
    border-color: rgba(114,199,255,.35) !important;
    box-shadow: 0 18px 48px rgba(7,29,61,.28) !important;
    font-weight: 700 !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.nav-cta:hover,
.hero .hero-actions .btn-secondary:hover,
.hero .hero-actions .btn-primary:hover,
.section-dark .actions .btn-secondary:hover,
.section-dark .actions .btn-primary:hover,
.dashboard-card .btn-secondary:hover,
.hero-card .btn-secondary:hover,
.premium-strip-actions .btn:hover,
.premium-strip .btn:hover,
.final-cta .btn:hover,
.cta-box .btn:hover,
.contact-form button[type="submit"]:hover,
.gd-btn:hover,
.gd-btn-primary:hover,
.gd-btn-secondary:hover,
.gd-btn-dark:hover {
    background: linear-gradient(135deg, #006BFF 0%, #35A7FF 100%) !important;
    color: #FFFFFF !important;
    border-color: rgba(53,167,255,.58) !important;
    box-shadow: 0 22px 58px rgba(0,107,255,.30) !important;
}

/* Remove verde de badges, pills e selos */
.badge,
.local-badge,
.service-card .badge,
.feature-card .badge,
.dark-card .badge,
.stage-card strong,
.mini-proof span,
.footer-proof span,
.hub-footer-tags span,
.hub-footer-social a,
.plan-card.featured .badge,
.flow-list div,
.stage-card,
.gd-badge,
.gd-kicker {
    background: #EAF3FF !important;
    color: #063A72 !important;
    border-color: rgba(0,107,255,.14) !important;
    font-weight: 700 !important;
}

.dark-card .badge,
.section-dark .badge,
.premium-strip .badge,
.diagnosis-box .badge,
.hero .local-badge {
    background: rgba(53,167,255,.14) !important;
    color: #D9ECFF !important;
    border-color: rgba(53,167,255,.24) !important;
}

/* Fundos escuros */
.hero,
.section-dark,
.final-cta,
.premium-strip,
.diagnosis-box,
.dashboard-card,
.hero-card,
.dark-card,
.gd-section-dark,
.gd-diagnosis-box,
.gd-plan-featured,
.gd-final {
    background:
        radial-gradient(circle at 78% 18%, rgba(0,107,255,.25), transparent 34%),
        radial-gradient(circle at 18% 20%, rgba(53,167,255,.14), transparent 36%),
        linear-gradient(135deg, #05070D 0%, #07111F 58%, #10233F 100%) !important;
    color: #FFFFFF !important;
}

.hero h1,
.hero h2,
.hero h3,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.final-cta h2,
.premium-strip h3,
.dashboard-card h2,
.hero-card h2,
.dark-card h3,
.diagnosis-box h3,
.cta-box h2,
.gd-section-dark h2,
.gd-section-dark h3,
.gd-diagnosis-box h3,
.gd-final h2 {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.hero p,
.section-dark p,
.section-dark .section-lead,
.section-dark li,
.final-cta p,
.premium-strip p,
.dashboard-card p,
.hero-card p,
.hero-card li,
.dark-card p,
.diagnosis-box p,
.cta-box p,
.gd-section-dark p,
.gd-section-dark li,
.gd-final p {
    color: rgba(255,255,255,.76) !important;
}

/* Provas e métricas */
.proof-strip {
    border-top: 1px solid rgba(255,255,255,.14) !important;
}

.proof-divider {
    background: rgba(255,255,255,.16) !important;
}

.proof-num,
.hero .proof-num,
.section-dark .proof-num,
.metric-number,
.hero strong,
.hero b,
.section-dark strong,
.section-dark b {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

.proof-label,
.hero .proof-label,
.section-dark .proof-label,
.metric-label,
.hero small,
.section-dark small {
    color: rgba(255,255,255,.72) !important;
}

.metric-box,
.trust-pill,
.trust-row span {
    color: rgba(255,255,255,.88) !important;
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.13) !important;
}

/* Cards claros */
.service-card,
.feature-card,
.step-card,
.comparison-card,
.plan-card,
.contact-form,
.gd-card,
.gd-plan,
.gd-form-card {
    border-color: rgba(0,107,255,.15) !important;
}

.service-card:hover,
.feature-card:hover,
.step-card:hover,
.plan-card:hover,
.service-card:focus-visible,
.feature-card:focus-visible,
.step-card:focus-visible,
.gd-plan:hover {
    border-color: rgba(0,107,255,.34) !important;
    box-shadow: 0 28px 80px rgba(15,23,42,.12) !important;
}

.service-card:hover h3,
.feature-card:hover h3,
.step-card:hover h3 {
    color: #006BFF !important;
}

/* CTA */
.cta-box {
    background: rgba(255,255,255,.07) !important;
    border-color: rgba(255,255,255,.14) !important;
}

/* Menu mobile */
@media (max-width: 1180px) {
    .menu-toggle {
        display: inline-flex !important;
        flex: 0 0 auto !important;
    }

    .main-nav {
        display: none !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: calc(100% + 10px) !important;
        z-index: 1000 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        padding: 14px !important;
        border-radius: 22px !important;
        background:
            radial-gradient(circle at top left, rgba(0,107,255,.14), transparent 40%),
            linear-gradient(180deg, #06080D 0%, #121824 100%) !important;
        border: 1px solid rgba(255,255,255,.10) !important;
        box-shadow: 0 24px 70px rgba(0,0,0,.42) !important;
        max-width: calc(100vw - 32px) !important;
        margin-inline: auto !important;
    }

    .main-nav.is-open {
        display: flex !important;
    }

    .main-nav .nav-link,
    .main-nav .nav-cta {
        width: 100% !important;
        justify-content: flex-start !important;
        min-height: 48px !important;
        padding: 0 16px !important;
        border-radius: 16px !important;
        font-size: 15px !important;
        color: #FFFFFF !important;
        background: rgba(255,255,255,.04) !important;
        border-color: rgba(255,255,255,.08) !important;
    }

    .main-nav .nav-cta {
        justify-content: center !important;
        background: linear-gradient(135deg, #006BFF 0%, #35A7FF 100%) !important;
    }

    .hero-grid,
    .split,
    .contact-grid,
    .diagnosis-box,
    .gd-hero-grid,
    .gd-split,
    .gd-diagnosis-box {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    .container,
    .gd-container {
        width: min(100% - 28px, 1180px) !important;
    }

    .hero {
        padding: 54px 0 66px !important;
    }

    .hero h1 {
        font-size: clamp(36px, 10.5vw, 52px) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.012em !important;
    }

    .section h2,
    .section-header h2,
    .contact-copy h2,
    .gd-section h2 {
        font-size: clamp(31px, 8.8vw, 46px) !important;
        line-height: 1.14 !important;
        letter-spacing: -0.012em !important;
    }

    .grid-3,
    .grid-4,
    .grid-5,
    .plans-grid,
    .stage-row,
    .comparison-grid,
    .flow-list,
    .metric-grid,
    .form-grid,
    .gd-proof-row,
    .gd-path-grid,
    .gd-offer-grid,
    .gd-form-grid,
    .gd-plans-grid,
    .gd-stage-row,
    .gd-compare {
        grid-template-columns: 1fr !important;
    }

    .hero-actions,
    .actions,
    .cta-box .actions,
    .premium-strip-actions,
    .gd-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        align-items: stretch !important;
    }

    .btn,
    .hero-actions .btn,
    .actions .btn,
    .cta-box .btn,
    .premium-strip-actions .btn,
    .gd-btn,
    .gd-hero-actions .gd-btn {
        width: 100% !important;
        min-width: 0 !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        padding: 15px 20px !important;
    }

    .proof-strip {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
    }

    .proof-item {
        align-items: center !important;
        text-align: center !important;
    }

    .proof-divider {
        display: none !important;
    }

    .feature-card,
    .service-card,
    .step-card,
    .comparison-card,
    .plan-card,
    .contact-form,
    .hero-card,
    .dashboard-card,
    .dark-card,
    .gd-card,
    .gd-plan,
    .gd-form-card {
        border-radius: 24px !important;
        padding: 22px !important;
    }

    .hub-footer-grid,
    .footer-grid,
    .gd-footer-premium-grid {
        grid-template-columns: 1fr !important;
    }

    .hub-footer-links,
    .gd-footer-services {
        grid-template-columns: 1fr !important;
    }

    .hub-footer-bottom,
    .copyright,
    .gd-footer-bottom {
        flex-direction: column !important;
    }
}

@media (max-width: 420px) {
    .brand img {
        max-width: 156px !important;
    }

    .hero h1 {
        font-size: 34px !important;
    }

    .menu-toggle {
        min-width: 82px !important;
        padding: 0 14px !important;
    }
}

/* ==========================================================================
   HERO — AJUSTE APÓS REMOÇÃO DA PROVA NUMÉRICA
   ========================================================================== */

.hero .proof-strip,
.proof-strip {
    display: none !important;
}

.hero {
    min-height: auto !important;
    padding-top: clamp(72px, 8vw, 118px) !important;
    padding-bottom: clamp(68px, 7vw, 96px) !important;
    background:
        radial-gradient(circle at 82% 18%, rgba(0,107,255,.22), transparent 36%),
        radial-gradient(circle at 18% 18%, rgba(53,167,255,.10), transparent 34%),
        linear-gradient(135deg, #05070D 0%, #07111F 58%, #10233F 100%) !important;
}

.hero::after,
.hero::before {
    content: none !important;
    display: none !important;
}

.hero-grid {
    align-items: center !important;
}

.hero + .section,
.hero + .section-soft {
    margin-top: 0 !important;
}

.hero {
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* ==========================================================================
   AJUSTE FINAL — RODAPÉ SEM BARRA BRANCA + CONTRASTE DE TÍTULOS
   ========================================================================== */

/*
 * ✅ CORREÇÃO DOS 2 BUGS ORIGINAIS:
 *
 * BUG 1 — body { background: #05070D } tornava todas as seções sem fundo
 *          explícito visualmente escuras, deixando os títulos (#0B1628)
 *          quase invisíveis em desktop.
 *          FIX: html escuro (evita barra branca após footer),
 *               body BRANCO (conteúdo legível).
 *
 * BUG 2 — O bloco "CORREÇÃO EMERGENCIAL" estava dentro do @media (max-width:760px),
 *          então as correções de cor só valiam no mobile.
 *          FIX: regras movidas para escopo global.
 */

/* html escuro → evita faixa branca abaixo do rodapé no scroll bounce */
html {
    min-height: 100% !important;
    background: #05070D !important;
}

/* body BRANCO → conteúdo principal permanece legível */
body {
    min-height: 100% !important;
    background: #FFFFFF !important;
}

/* main e seções comuns: fundo branco explícito */
main {
    background: #FFFFFF !important;
}

.section:not(.section-dark):not(.final-cta):not(.premium-strip):not(.diagnosis-box) {
    background: #FFFFFF;
}

.section-soft {
    background:
        radial-gradient(circle at 16% 8%, rgba(0,107,255,.06), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 100%) !important;
}

/* Seções escuras mantêm fundo escuro */
.section-dark,
.final-cta,
.premium-strip,
.diagnosis-box {
    background:
        radial-gradient(circle at 78% 18%, rgba(0,107,255,.25), transparent 34%),
        radial-gradient(circle at 18% 20%, rgba(53,167,255,.14), transparent 36%),
        linear-gradient(135deg, #05070D 0%, #07111F 58%, #10233F 100%) !important;
}

/* ── Títulos em seções ESCURAS — branco ──────────────────────────────────── */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.final-cta h2,
.premium-strip h3,
.diagnosis-box h3 {
    color: #FFFFFF !important;
}

/* ── Textos em seções escuras — branco translúcido ───────────────────────── */
.section-dark p,
.section-dark .section-lead,
.section-dark li,
.final-cta p,
.premium-strip p,
.diagnosis-box p {
    color: rgba(255,255,255,.76) !important;
}

/* Eyebrow em seções escuras: azul claro */
.section-dark .eyebrow {
    color: #35A7FF !important;
}

/* ── Rodapé: fundo escuro real ───────────────────────────────────────────── */
.site-footer,
.hub-footer,
.site-footer.hub-footer,
.gm-footer,
.gd-footer-premium {
    margin-bottom: 0 !important;
    padding-bottom: calc(32px + env(safe-area-inset-bottom)) !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(0,107,255,.13), transparent 34%),
        linear-gradient(135deg, #02050B 0%, #05070D 58%, #0B111C 100%) !important;
}

.site-footer::after,
.hub-footer::after,
.gm-footer::after,
.gd-footer-premium::after {
    content: none !important;
    display: none !important;
}

/* ── Ícone WhatsApp via CSS mask ─────────────────────────────────────────── */
.gm-whatsapp-float-letter {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    background: #FFFFFF !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 4C9.4 4 4.02 9.38 4.02 16c0 2.12.56 4.18 1.62 6L4 28l6.17-1.62A11.93 11.93 0 0 0 16.03 28C22.66 28 28 22.62 28 16S22.66 4 16.03 4Zm0 21.78c-1.86 0-3.68-.5-5.27-1.45l-.38-.22-3.66.96.98-3.56-.25-.4A9.73 9.73 0 0 1 6.25 16c0-5.38 4.38-9.75 9.78-9.75 5.38 0 9.75 4.37 9.75 9.75s-4.37 9.78-9.75 9.78Zm5.35-7.3c-.3-.15-1.73-.86-2-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.23-.65.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.48-1.75-1.65-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.03-.52-.08-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.5h-.57c-.2 0-.52.08-.8.37-.27.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.12 3.23 5.13 4.53.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.73-.7 1.98-1.38.25-.68.25-1.27.17-1.39-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 4C9.4 4 4.02 9.38 4.02 16c0 2.12.56 4.18 1.62 6L4 28l6.17-1.62A11.93 11.93 0 0 0 16.03 28C22.66 28 28 22.62 28 16S22.66 4 16.03 4Zm0 21.78c-1.86 0-3.68-.5-5.27-1.45l-.38-.22-3.66.96.98-3.56-.25-.4A9.73 9.73 0 0 1 6.25 16c0-5.38 4.38-9.75 9.78-9.75 5.38 0 9.75 4.37 9.75 9.75s-4.37 9.78-9.75 9.78Zm5.35-7.3c-.3-.15-1.73-.86-2-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.23-.65.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.48-1.75-1.65-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.03-.52-.08-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.5h-.57c-.2 0-.52.08-.8.37-.27.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.12 3.23 5.13 4.53.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.73-.7 1.98-1.38.25-.68.25-1.27.17-1.39-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

/* WhatsApp flutuante */
.whatsapp-float,
.gd-whatsapp {
    gap: 10px !important;
    background: #25D366 !important;
    color: #07111F !important;
}

.whatsapp-float::before,
.gd-whatsapp::before {
    content: "" !important;
    display: inline-block !important;
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    background: currentColor !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 4C9.4 4 4.02 9.38 4.02 16c0 2.12.56 4.18 1.62 6L4 28l6.17-1.62A11.93 11.93 0 0 0 16.03 28C22.66 28 28 22.62 28 16S22.66 4 16.03 4Zm0 21.78c-1.86 0-3.68-.5-5.27-1.45l-.38-.22-3.66.96.98-3.56-.25-.4A9.73 9.73 0 0 1 6.25 16c0-5.38 4.38-9.75 9.78-9.75 5.38 0 9.75 4.37 9.75 9.75s-4.37 9.78-9.75 9.78Zm5.35-7.3c-.3-.15-1.73-.86-2-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.23-.65.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.48-1.75-1.65-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.03-.52-.08-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.5h-.57c-.2 0-.52.08-.8.37-.27.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.12 3.23 5.13 4.53.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.73-.7 1.98-1.38.25-.68.25-1.27.17-1.39-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 4C9.4 4 4.02 9.38 4.02 16c0 2.12.56 4.18 1.62 6L4 28l6.17-1.62A11.93 11.93 0 0 0 16.03 28C22.66 28 28 22.62 28 16S22.66 4 16.03 4Zm0 21.78c-1.86 0-3.68-.5-5.27-1.45l-.38-.22-3.66.96.98-3.56-.25-.4A9.73 9.73 0 0 1 6.25 16c0-5.38 4.38-9.75 9.78-9.75 5.38 0 9.75 4.37 9.75 9.75s-4.37 9.78-9.75 9.78Zm5.35-7.3c-.3-.15-1.73-.86-2-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.23-.65.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.48-1.75-1.65-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.03-.52-.08-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.5h-.57c-.2 0-.52.08-.8.37-.27.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.12 3.23 5.13 4.53.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.73-.7 1.98-1.38.25-.68.25-1.27.17-1.39-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 0 !important;
    }

    .gm-whatsapp-float,
    .whatsapp-float,
    .gd-whatsapp {
        right: 14px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    }
}