/* ============================================================
   DESIGN SYSTEM TOKENS
   ============================================================ */
:root {
    --color-brand-primary:        #0C326F;
    --color-brand-primary-hover:  #0a2a5e;
    --color-brand-primary-light:  rgba(12, 50, 111, 0.08);
    --color-brand-secondary:      #037171;
    --color-brand-secondary-hover:#025e5e;
    --color-brand-secondary-light:rgba(3, 113, 113, 0.08);
    --color-brand-alt:            #94FF36;
    --color-brand-alt-hover:      #7fe020;
    --color-brand-alt-dark:       #3a6e0d;

    --color-bg-base:    #FFFFFF;
    --color-bg-section: #F7F8FA;
    --color-bg-muted:   #EFEFEF;
    --color-bg-dark:    #1C1C1C;
    --color-border:     #E4E7EC;
    --color-border-2:   #D0D5DD;

    --color-text-primary:   #1C1C1C;
    --color-text-secondary: #3D4451;
    --color-text-muted:     #6B7280;
    --color-text-disabled:  #B0B7C3;

    --font-family: 'Mundial', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --font-size-xs:  0.75rem;
    --font-size-sm:  0.875rem;
    --font-size-md:  1rem;
    --font-size-lg:  1.125rem;
    --font-size-xl:  1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    --fw-regular:   400;
    --fw-medium:    500;
    --fw-semibold:  600;
    --fw-bold:      700;
    --fw-extrabold: 800;
    --fw-black:     900;

    --lh-tight:   1.1;
    --lh-snug:    1.25;
    --lh-normal:  1.5;
    --lh-relaxed: 1.7;

    --ls-tight:   -0.03em;
    --ls-normal:  0em;
    --ls-wide:    0.04em;
    --ls-wider:   0.08em;

    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-2xl:  24px;
    --radius-full: 9999px;

    --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:      0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg:      0 8px 28px rgba(0,0,0,0.10);
    --shadow-xl:      0 16px 40px rgba(0,0,0,0.12);
    --shadow-primary: 0 6px 24px rgba(12,50,111,0.25);
    --shadow-cta:     0 6px 24px rgba(148,255,54,0.35);

    --tr-fast:   0.15s ease;
    --tr-normal: 0.25s ease;
    --tr-slow:   0.4s ease;

    --max-w: 1240px;
    --max-w-nav: 1240px;

    --nav-h: 72px;

    /* Brand greens (novos tokens) */
    --brand-green-dark:  #0F5F4D;
    --brand-green:       #16A34A;
    --brand-green-light: #86EFAC;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background: var(--color-bg-base);
    color: var(--color-text-primary);
    line-height: var(--lh-normal);
    font-size: var(--font-size-md);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-nav {
    width: 100%;
    max-width: var(--max-w-nav);
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 13px 26px;
    font-family: var(--font-family);
    font-weight: var(--fw-semibold);
    font-size: var(--font-size-sm);
    letter-spacing: var(--ls-wide);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--tr-normal);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn:focus-visible {
    outline: 3px solid var(--color-brand-primary);
    outline-offset: 2px;
}

.btn-cta {
    background-color: var(--color-brand-alt);
    color: var(--color-brand-primary);
    border-color: var(--color-brand-alt);
    font-weight: var(--fw-bold);
}

.btn-cta:hover {
    background-color: var(--color-brand-alt-hover);
    border-color: var(--color-brand-alt-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta);
}

.btn-primary {
    background-color: var(--color-brand-primary);
    color: #fff;
    border-color: var(--color-brand-primary);
}

.btn-primary:hover {
    background-color: var(--color-brand-primary-hover);
    border-color: var(--color-brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

.btn-sm  { padding: 9px 18px; font-size: var(--font-size-xs); }
.btn-lg  { padding: 16px 34px; font-size: var(--font-size-md); }
.btn-xl  { padding: 18px 42px; font-size: var(--font-size-lg); }

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--color-brand-secondary);
    margin-bottom: var(--space-3);
}

.eyebrow-light {
    color: rgba(148, 255, 54, 0.9);
}

.section-header {
    margin-bottom: var(--space-12);
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-desc {
    margin: 0 auto;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.section-title em {
    color: var(--color-brand-primary);
    font-style: normal;
}

.section-title.light {
    color: #fff;
}

.em-alt {
    color: var(--color-brand-alt) !important;
    font-style: normal;
}

.section-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    max-width: 560px;
}

/* Animation delay support */
.reveal { --delay: 0s; }
.zoom-in-soft { animation-delay: var(--delay); }
.fade-left, .fade-right { animation-delay: var(--delay); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: var(--color-bg-base);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: var(--brand-green-dark);
    box-shadow: 0 4px 20px rgba(15, 95, 77, 0.3);
}

.nav-inner {
    max-width: var(--max-w-nav);
    margin: 0 auto;
    padding: 0 var(--space-8);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-dark  { display: block; }
.logo-light { display: none; }

/* Logo swap no estado scrolled */
.navbar.scrolled .logo-dark  { display: none; }
.navbar.scrolled .logo-light { display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: var(--font-size-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    transition: color var(--tr-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: var(--color-brand-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr-normal);
    border-radius: var(--radius-full);
}

.nav-links a:hover { color: var(--color-text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Links brancos no estado scrolled */
.navbar.scrolled .nav-links a { color: rgba(255, 255, 255, 0.85); }
.navbar.scrolled .nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a::after { background: var(--brand-green-light); }

/* CTA do navbar */
.nav-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green-dark);
    color: #fff;
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-size: var(--font-size-sm);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.nav-cta:hover {
    background: #0a4a3a;
    box-shadow: 0 4px 14px rgba(15, 95, 77, 0.35);
}

/* CTA invertido no estado scrolled */
.navbar.scrolled .nav-cta {
    background: #fff;
    color: var(--brand-green-dark);
}
.navbar.scrolled .nav-cta:hover {
    background: var(--brand-green-light);
    box-shadow: 0 4px 14px rgba(15, 95, 77, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--tr-normal);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    background-image: url('assets/Banner atualizado/banner-v3-hero.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--nav-h));
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
}

/* Coluna de texto — ocupa metade esquerda */
.hero-text-col { max-width: 520px; }

/* Badge pílula "Servidor Público" */
.hero-badge-pill {
    display: inline-block;
    width: fit-content;
    background: var(--brand-green-dark);
    color: #fff;
    border-radius: var(--radius-full);
    padding: 5px 16px;
    font-size: var(--font-size-sm);
    font-weight: var(--fw-semibold);
    /* margin-bottom: var(--space-4); */
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: clamp(1.75rem, 3.5vw, var(--font-size-4xl));
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--color-brand-primary);
    margin-bottom: var(--space-5);
}

.hero-title em {
    color: var(--brand-green);
    font-style: normal;
}

.hero-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-6);
}

.hero-subtitle strong {
    color: var(--brand-green-dark);
    font-weight: var(--fw-semibold);
}

/* 3 botões de perfil empilhados */
.hero-profile-btns {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 400px;
}

.hero-profile-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid var(--brand-green-dark);
    border-radius: var(--radius-lg);
    padding: 17px 22px;
    font-size: var(--font-size-md);
    font-weight: var(--fw-medium);
    color: var(--color-text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-profile-btn:hover {
    border-color: #94ff36;
    background: #94ff36;
    box-shadow: 0 2px 8px rgba(148, 255, 54, 0.25);
    font-weight: var(--fw-bold);
}

.hero-profile-icon {
    color: var(--brand-green-dark);
    flex-shrink: 0;
}


.hero-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.options-label {
    font-size: var(--font-size-sm);
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.option-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-5);
    color: #fff;
    text-decoration: none;
    transition: all var(--tr-normal);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.option-card:hover {
    background: rgba(148,255,54,0.15);
    border-color: var(--color-brand-alt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    font-size: var(--font-size-sm);
    font-weight: var(--fw-medium);
    line-height: 1.4;
}

.option-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--tr-fast), transform var(--tr-fast);
}

.option-card:hover .option-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.hero-cta { align-self: flex-start; }

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   CARROSSEL DE LOGOS
   ============================================================ */
.logos-carousel-section {
    background: var(--color-bg-section);
    padding: 28px 0 80px;
    overflow: hidden;
}

.logos-carousel-track-wrap {
    overflow: hidden;
    width: 100%;
}

.logos-carousel-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: logos-scroll 28s linear infinite;
}

.logos-carousel-track:hover {
    animation-play-state: paused;
}

.logos-carousel-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   OPTIONS SECTION (entre Hero e Confiança)
   ============================================================ */
/* .section-options removida do HTML — estilos mantidos apenas como referência inativa */

/* ============================================================
   TRUST SECTION (Bloco 2)
   ============================================================ */
.section-trust {
    padding: var(--space-24) 0;
    background: var(--color-bg-base);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.check-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--color-brand-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-primary);
    margin-top: 2px;
}

.check-item strong {
    display: block;
    font-size: var(--font-size-md);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.check-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

.trust-cta-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-bg-section);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-4);
    text-align: center;
    transition: box-shadow var(--tr-normal), transform var(--tr-normal);
}

.trust-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-badge-icon { font-size: 1.75rem; }

.trust-badge-label {
    font-size: var(--font-size-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-text-secondary);
    line-height: 1.3;
}

/* 5th badge spans 2 cols */
.trust-badges .trust-badge:nth-child(5) {
    grid-column: 1 / -1;
}

/* ============================================================
   PROFILE SECTIONS SHARED
   ============================================================ */
.section-profile {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.profile-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.profile-split.reverse {
    direction: rtl;
}

.profile-split.reverse > * {
    direction: ltr;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.profile-lead {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

.profile-lead.light { color: rgba(255,255,255,0.85); }

.profile-subtext {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

.profile-subtext.light { color: rgba(255,255,255,0.65); }

.guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: rgba(12,50,111,0.07);
    border: 1px solid rgba(12,50,111,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

.guarantee-badge svg { flex-shrink: 0; margin-top: 2px; color: var(--color-brand-primary); }

.guarantee-badge.light {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
}

.guarantee-badge.light svg { color: var(--color-brand-alt); }

.guarantee-badge strong { color: inherit; }

.check-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-md);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
}

.check-list li svg { color: var(--color-brand-primary); flex-shrink: 0; }

/* Badge pílula — variante light (verde-neon bg, verde-escuro texto) */
.hero-badge-pill--light {
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
}

/* Badge pílula — variante white (bg branco, verde-escuro texto) */
.hero-badge-pill--white {
    background: #fff;
    color: var(--brand-green-dark);
}

/* ============================================================
   BLOCO 3 — SERVIDOR A (Card branco com borda verde)
   ============================================================ */
.section-profile-a {
    background: var(--color-bg-section);
    padding-bottom: 3rem;
}

/* Card branco centralizado */
.pa-card {
    /* background: #fff; */
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: start;
}

/* Coluna esquerda */
.pa-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.pa-title {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--color-text-primary);
    margin: 0;
}

.pa-title strong {
    font-weight: var(--fw-extrabold);
    color: inherit;
}

.pa-car-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Coluna direita */
.pa-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.pa-microtitle {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    margin: 0 0 8px;
    line-height: var(--lh-snug);
}

.pa-microtitle-queira {
    color: #1B7A78;
}

/* 5 botões pílula verticais */
.pa-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pa-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--brand-green-dark);
    border-radius: 12px;
    padding: 14px 20px;
    color: var(--brand-green-dark);
    font-size: var(--font-size-md);
    font-weight: var(--fw-medium);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pa-option-btn:hover {
    background: rgba(15, 95, 77, 0.06);
    box-shadow: 0 2px 8px rgba(15, 95, 77, 0.12);
}

/* Ícone SVG colorido em verde-escuro via filtro CSS */
.pa-option-icon {
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(23%) sepia(67%) saturate(700%) hue-rotate(127deg) brightness(80%) contrast(95%);
}

/* Microtexto abaixo dos botões */
.pa-subtext {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin: 0;
}

/* CTA principal */
.pa-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--brand-green-dark);
    color: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    font-size: var(--font-size-md);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}

.pa-cta:hover {
    background: #CCFF00;
    color: #003D6B;
    box-shadow: 0 4px 16px rgba(204, 255, 0, 0.4);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

/* Card de garantia */
.pa-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 16px;
    margin-top: 4px;
}

.pa-guarantee-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(67%) saturate(700%) hue-rotate(127deg) brightness(80%) contrast(95%);
}

.pa-guarantee-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

.pa-guarantee-text strong {
    display: block;
    color: var(--brand-green-dark);
    font-weight: var(--fw-bold);
    margin-bottom: 2px;
}

/* ============================================================
   BLOCO 5 — SERVIDOR C (Negativado) — novos estilos
   ============================================================ */

/* Card interno com borda verde-neon */
.pc-inner-card {
    border-radius: 16px;
    padding: 48px 40px;
}

/* Título "Está negativado?" */
.pc-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: #fff;
    margin: 0;
}

.pc-negativado {
    color: var(--brand-green-light);
    font-weight: var(--fw-extrabold);
}

/* Subtítulo */
.pc-subtitle {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: var(--lh-snug);
    color: #fff;
    margin: 0;
}

.pc-alt {
    color: var(--brand-green-light);
}

/* Parágrafo e frase de fechamento */
.profile-lead.light strong { color: #fff; font-weight: var(--fw-bold); }

.pc-closing {
    font-size: var(--font-size-md);
    color: #fff;
    font-weight: var(--fw-bold);
    margin: 0;
    line-height: var(--lh-relaxed);
}

/* Card de garantia rebordado */
.pc-guarantee {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent;
    border: 1.5px solid var(--brand-green-light);
    border-radius: 12px;
    padding: 14px 16px;
    width: fit-content;
}

.pc-guarantee-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    filter: brightness(0) saturate(100%) invert(90%) sepia(30%) saturate(500%) hue-rotate(80deg) brightness(110%);
}

.pc-guarantee-title {
    display: block;
    color: var(--brand-green-light);
    font-weight: var(--fw-bold);
    font-size: var(--font-size-sm);
    margin-bottom: 2px;
}

.pc-guarantee-text {
    color: rgba(255,255,255,0.85);
    font-size: var(--font-size-sm);
    line-height: var(--lh-relaxed);
}

/* CTA verde-claro */
.pc-cta {
    
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
    border-radius: 12px;
    padding: 16px 28px;
    font-size: var(--font-size-md);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    width: fit-content;
}

.pc-cta:hover {
    background: #6ee7b7;
    box-shadow: 0 4px 16px rgba(134, 239, 172, 0.35);
}

/* Step negativo (step 1) — tonalidade avermelhada de alerta */
.step-item--negative {
    background: rgba(180, 28, 28, 0.22);
    border-color: rgba(220, 38, 38, 0.5);
}

.step-num--danger {
    background: #DC2626 !important;
    color: #fff !important;
}

/* ============================================================
   BLOCO 4 — SERVIDOR B (Light)
   ============================================================ */
.section-profile-b {
    background: var(--color-bg-section);
    padding-top: 3rem;
    padding-bottom: 11rem;
}

/* Savings visual */
.savings-visual {
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.savings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.savings-label {
    font-size: var(--font-size-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
}

.savings-badge {
    font-size: var(--font-size-xs);
    font-weight: var(--fw-semibold);
    background: var(--color-brand-primary-light);
    color: var(--color-brand-primary);
    border: 1px solid rgba(12,50,111,0.2);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.savings-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.savings-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.si-icon { display: flex; align-items: center; flex-shrink: 0; }

.si-content { flex: 1; }

.si-title {
    font-size: var(--font-size-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: var(--space-2);
}

.si-bar {
    height: 8px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.si-fill {
    height: 100%;
    width: 0;
    border-radius: var(--radius-full);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.si-fill.animated { width: var(--w); }

.savings-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-green-dark);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: var(--font-size-sm);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    justify-content: center;
}

.savings-cta:hover {
    background: #0a4a3a;
    box-shadow: 0 4px 14px rgba(15, 95, 77, 0.3);
}

.section-profile-b .check-list li { color: var(--color-text-secondary); }
.section-profile-b .check-list li svg { color: var(--color-brand-secondary); }
.section-profile-b .guarantee-badge { border-color: rgba(3,113,113,0.2); background: var(--color-brand-secondary-light); }
.section-profile-b .guarantee-badge svg { color: var(--color-brand-secondary); }

/* ============================================================
   BLOCO 5 — SERVIDOR C (Teal)
   ============================================================ */
.section-profile-c {
    background: var(--color-brand-secondary);
}

.section-profile-c::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(12,50,111,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.profile-centered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.profile-c-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Steps flow (Servidor C) */
.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(6px);
    transition: all var(--tr-normal);
}

.step-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateX(4px);
}

.step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--color-brand-alt);
    color: var(--color-brand-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-black);
    font-size: var(--font-size-md);
    flex-shrink: 0;
}

.step-body strong {
    display: block;
    font-size: var(--font-size-md);
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: var(--space-1);
}

.step-body p {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.7);
    line-height: var(--lh-relaxed);
}

.step-connector {
    width: 2px;
    height: var(--space-4);
    background: rgba(255,255,255,0.2);
    margin-left: calc(var(--space-6) + 17px);
}

/* ============================================================
   AUTHORITY SECTION (Bloco 6)
   ============================================================ */
.section-authority {
    padding: var(--space-24) 0;
    background: var(--color-bg-base);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-5);
}

.authority-card {
    background: var(--color-bg-section);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-5);
    text-align: center;
    transition: all var(--tr-normal);
}

.authority-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-brand-primary);
}

.auth-icon {
    font-size: 2.25rem;
    margin-bottom: var(--space-4);
    display: block;
}

.authority-card h3 {
    font-size: var(--font-size-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.authority-card p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

/* ============================================================
   FAQ SECTION (Bloco 7)
   ============================================================ */
.section-faq {
    padding: var(--space-24) 0;
    background: var(--color-bg-section);
}

.faq-split {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-16);
    align-items: start;
}

.faq-left {
    position: sticky;
    top: calc(var(--nav-h) + var(--space-8));
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.faq-cta { margin-top: var(--space-3); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-bg-base);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-8);
    font-size: var(--font-size-md);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--tr-fast);
}

.faq-question:hover {
    background: var(--color-bg-section);
}

.faq-question[aria-expanded="true"] {
    color: var(--color-brand-primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform var(--tr-normal);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-brand-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-8) var(--space-6);
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

/* ============================================================
   FOOTER (Bloco 8)
   ============================================================ */
.footer {
    background: var(--color-bg-dark);
}

.footer-inner {
    padding-top: var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-4);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.5);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-6);
}

.footer-whatsapp { align-self: flex-start; }

.footer-col-title {
    font-size: var(--font-size-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-5);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-links li, .footer-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--tr-fast);
    line-height: var(--lh-normal);
}

.footer-links a:hover { color: #fff; }

.footer-links li svg, .footer-links a svg { color: rgba(255,255,255,0.35); flex-shrink: 0; }

.footer-bottom {
    padding: var(--space-8) 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-bottom p {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.35);
    line-height: var(--lh-relaxed);
}

.footer-legal-text {
    font-size: 11px !important;
    color: rgba(255,255,255,0.22) !important;
    max-width: 700px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left.reveal {
    transform: translateX(-32px);
}

.fade-left.reveal.active {
    transform: translateX(0);
}

.fade-right.reveal {
    transform: translateX(32px);
}

.fade-right.reveal.active {
    transform: translateX(0);
}

.botao-mobile-width{
        max-width: 70%;
    }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .authority-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .authority-card:nth-child(4),
    .authority-card:nth-child(5) {
        grid-column: auto;
    }

    .goals-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .botao-mobile-width{
        max-width: 100%;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    /* Nav */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--color-bg-base);
        flex-direction: column;
        gap: 0;
        padding: var(--space-4) 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    

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

    .nav-links a {
        color: var(--color-text-primary);
        font-size: var(--font-size-md);
        padding: var(--space-4) var(--space-6);
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }

    .nav-links a::after { display: none; }

    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero — mobile */
    .hero {
        background-image: none;
        background-color: var(--color-bg-base);
        min-height: auto;
    }

    .hero-badge-pill {
        display: inline-block;
        width: fit-content;
        background: var(--brand-green-dark);
        color: rgb(255, 255, 255);
        border-radius: var(--radius-full);
        padding: 5px 16px;
        font-size: var(--font-size-sm);
        font-weight: var(--fw-semibold);
        letter-spacing: 0.01em;
        margin-bottom: 10px;
    }

    .hero-content {
        min-height: auto;
        padding-top: calc(var(--nav-h) + var(--space-10));
        padding-bottom: var(--space-10);
    }

    .hero-text-col { max-width: 100%; }

    .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }

    .hero-profile-btns { max-width: 100%; }

    .hero-scroll-hint { display: none; }

    .section-sobre {
        /* padding: var(--space-24) 0; */
        padding-top: 0;
        background: var(--color-bg-base);
        overflow: hidden;
    }

    /* Sections */
    .section-trust,
    .section-profile,
    .section-authority,
    .section-faq {
        padding: var(--space-16) 0;
    }

    .trust-grid { grid-template-columns: 1fr; gap: var(--space-10); }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
    }

    .trust-cta-col .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Profile splits */
    .profile-split,
    .profile-split.reverse,
    .profile-centered {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: var(--space-10);
    }

    .profile-visual { order: -1; }

    .profile-c-content { order: 1; }
    .profile-c-visual { order: 2; }

    .section-title { font-size: var(--font-size-3xl); }

    /* Servidor A — mobile */
    .pa-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .pa-car-image img { max-height: 280px; object-fit: contain; }
    .pa-option-btn { padding: 12px 16px; }
    .pa-cta { padding: 16px 20px; }

    /* Authority */
    .authority-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }

    .authority-card:nth-child(5) { grid-column: 1 / -1; }

    /* FAQ */
    .faq-split { grid-template-columns: 1fr; gap: var(--space-8); }
    .faq-left { position: static; }
    .faq-question { padding: var(--space-5) var(--space-5); }
    .faq-answer p { padding: 0 var(--space-5) var(--space-5); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .footer-bottom-inner { flex-direction: column; }
    .nav-inner { padding: 0 var(--space-5); }

    .container {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .goals-card-grid { grid-template-columns: 1fr 1fr; }
    .authority-grid { grid-template-columns: 1fr; }
    .authority-card:nth-child(5) { grid-column: auto; }
    .section-title { font-size: var(--font-size-2xl); }
    .hero-title { font-size: 1.75rem; }
    .btn-lg { padding: 14px 24px; font-size: var(--font-size-sm); }
}

/* ============================================================
   COMPONENTES COMPARTILHADOS NOVOS
   ============================================================ */

/* Efeito marca-texto — highlight removido, mantém apenas a classe */
.text-hl {
    position: relative;
    display: inline;
    z-index: 0;
}
.text-hl::before {
    display: none;
}

/* Texto na cor alt (lime) */
.text-alt-hl { color: var(--color-brand-alt); }

/* Pill / tag de seção */
.section-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    border: 1.5px solid var(--color-brand-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--color-brand-primary);
    margin-bottom: var(--space-4);
}
.section-pill--white {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}

/* Placeholder de imagem */
.img-ph {
    background: #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    border-radius: var(--radius-lg);
    color: #9CA3AF;
    text-align: center;
    padding: var(--space-4);
}
.img-ph svg { opacity: 0.55; flex-shrink: 0; }
.img-ph span {
    font-size: 11px;
    line-height: 1.4;
    max-width: 110px;
}

/* ============================================================
   SOBRE / CONFIANÇA (DOBRA 2)
   ============================================================ */
.section-sobre {
    padding: var(--space-24) 0;
    background: var(--color-bg-base);
    overflow: hidden;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: var(--space-16);
    align-items: center;
}

/* Visual esquerda */
.sobre-visual {
    position: relative;
}

.sobre-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.sobre-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
    /* box-shadow: var(--shadow-xl); */
}

.sobre-amount-card {
    position: absolute;
    bottom: -20px; left: -16px;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    box-shadow: var(--shadow-xl);
    z-index: 3;
    width: 72%;
    border: 1px solid var(--color-border);
}

.sac-label {
    font-size: var(--font-size-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.sac-value {
    font-size: var(--font-size-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-brand-primary);
    margin-bottom: var(--space-1);
}

.sac-sub {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
}

.sac-bar {
    height: 8px;
    background: var(--color-bg-muted);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.sac-bar-fill {
    height: 100%;
    width: 62%;
    background: var(--color-brand-alt);
    border-radius: var(--radius-full);
}

/* Texto direita */
.sobre-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sobre-heading {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.sobre-hl-green {
    color: var(--brand-green-dark);
    font-weight: var(--fw-bold);
}

.sobre-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

.sobre-strong { color: var(--color-brand-primary); }

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: stretch;
}

.sobre-feat-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--tr-normal), transform var(--tr-normal);
}

.sobre-feat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feat-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: #1B7A78;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.feat-title {
    display: block;
    font-size: var(--font-size-md);
    font-weight: var(--fw-bold);
    color: var(--color-brand-primary);
    margin-bottom: var(--space-1);
}

.feat-body p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

/* ============================================================
   DISPONIBILIDADE (DOBRA 5)
   ============================================================ */
.section-disponivel {
    padding: var(--space-24) 0;
    background:
        linear-gradient(to right, rgba(10, 31, 61, 0.97) 0%, rgba(12, 50, 111, 0.93) 50%, rgba(13, 43, 94, 0.85) 100%),
        url('assets/contemporary-room-workplace-office-supplies-concept.jpg') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Coluna única, alinhada à esquerda */
.disponivel-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-items: flex-start;
    max-width: 680px;
}

/* "acesse" em verde-médio */
.disp-acesse {
    color: var(--brand-green);
}

.disponivel-desc {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.85);
    line-height: var(--lh-relaxed);
}

/* Bolds do parágrafo em branco (não verde) */
.disponivel-desc strong { color: #fff; font-weight: var(--fw-bold); }

/* CTA branco */
.disp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--brand-green-dark);
    border-radius: var(--radius-full);
    padding: 18px 36px;
    font-size: var(--font-size-md);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.disp-cta:hover {
    background: var(--brand-green-light);
    box-shadow: 0 4px 16px rgba(134, 239, 172, 0.3);
}

/* ============================================================
   DEPOIMENTOS (DOBRA 6)
   ============================================================ */
.section-depoimentos {
    padding: 12rem 0 var(--space-24);
    background: var(--color-bg-section);
    position: relative;
}

.depo-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--space-16);
    align-items: start;
}

.depo-mural {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    overflow: visible;
    padding-bottom: var(--space-16);
}

.depo-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.depo-col--offset { margin-top: -56px; }

.depo-card {
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: box-shadow var(--tr-normal);
}

.depo-card:hover { box-shadow: var(--shadow-md); }

.depo-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.depo-avatar {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

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

.depo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.depo-info strong {
    font-size: var(--font-size-sm);
    font-weight: var(--fw-bold);
    color: var(--color-brand-primary);
}

.depo-info span {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.depo-verified {
    width: 24px; height: 24px;
    background: var(--color-brand-alt);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-primary);
    flex-shrink: 0;
}

.depo-quote {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    font-style: italic;
}

/* Sidebar direita */
.depo-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: sticky;
    top: calc(var(--nav-h) + var(--space-8));
}

.depo-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

.depo-community {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-2);
}

.avatar-stack { display: flex; }

.avatar-ph {
    width: 36px; height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-brand-alt);
    border: 2.5px solid #fff;
    margin-left: -10px;
    flex-shrink: 0;
}

.avatar-ph:first-child { margin-left: 0; }

.avatar-ph:nth-child(2) { background: var(--color-brand-primary); opacity: 0.7; }
.avatar-ph:nth-child(3) { background: var(--color-brand-secondary); opacity: 0.8; }
.avatar-ph:nth-child(4) { background: var(--color-brand-alt); opacity: 0.6; }
.avatar-ph:nth-child(5) { background: var(--color-brand-primary-light); border-color: var(--color-border); }

/* Avatares com foto real (Dobra 7) */
.avatar-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 2.5px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    display: block;
}

.avatar-img:first-child { margin-left: 0; }

.depo-community p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ============================================================
   FAQ REESCRITO (DOBRA 8)
   ============================================================ */
.section-faq {
    padding: var(--space-24) 0;
    background: var(--color-bg-section);
    position: relative;
    overflow: hidden;
}

.faq-bg-deco {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 60%, rgba(148,255,54,0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(12,50,111,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: var(--space-16);
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-intro {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    position: sticky;
    top: calc(var(--nav-h) + var(--space-8));
}

.faq-heading {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-tight);
    color: var(--color-text-primary);
}

.faq-intro-desc {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

/* Override old faq-item/faq-question/faq-answer for new layout */
.faq-accordion .faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-accordion .faq-item:last-child { border-bottom: none; }

.faq-accordion .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-8);
    font-size: var(--font-size-md);
    font-weight: var(--fw-semibold);
    color: var(--color-brand-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--tr-fast);
}

.faq-accordion .faq-question:hover {
    background: var(--color-bg-section);
}

.faq-accordion .faq-question[aria-expanded="true"] {
    background: var(--color-brand-primary-light);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-brand-primary);
    transition: transform var(--tr-normal);
}

.faq-accordion .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(90deg);
}

.faq-accordion .faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1) !important;
}

.faq-accordion .faq-answer.open {
    max-height: 240px !important;
}

.faq-accordion .faq-answer p {
    padding: var(--space-2) var(--space-8) var(--space-6);
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}

/* ============================================================
   FOOTER REESCRITO
   ============================================================ */
.footer { background: var(--color-bg-dark); }

/* Newsletter */
.footer-newsletter {
    background: var(--color-brand-primary);
    padding: var(--space-8) 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.newsletter-text {
    font-size: var(--font-size-md);
    color: rgba(255,255,255,0.85);
    flex: 1;
    min-width: 200px;
}

.newsletter-text strong { color: var(--color-brand-alt); }

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    flex: 2;
    min-width: 280px;
}

.newsletter-input {
    flex: 1;
    padding: 10px var(--space-5);
    border-radius: var(--radius-full);
    border: none;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    background: #fff;
    color: var(--color-text-primary);
    outline: none;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(148,255,54,0.45);
}

.newsletter-btn { border-radius: var(--radius-full) !important; }

/* Grid principal 4 cols */
.footer-main { padding: var(--space-16) 0; }

.footer-grid-new {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: var(--space-10);
}

.footer-col-heading {
    font-size: var(--font-size-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--color-brand-alt);
    margin-bottom: var(--space-5);
}

.footer-links-new {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-links-new li,
.footer-links-new a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--tr-fast);
    line-height: var(--lh-normal);
    padding-left: var(--space-4);
    position: relative;
}

.footer-links-new li::before,
.footer-links-new a::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    background: var(--color-brand-alt);
    border-radius: var(--radius-full);
}

.footer-links-new li svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }
.footer-links-new a:hover { color: #fff; }

.footer-tagline {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.55);
    line-height: var(--lh-relaxed);
    margin-top: var(--space-3);
    margin-bottom: var(--space-5);
}

.footer-tagline-alt {
    color: var(--color-brand-alt);
    font-weight: var(--fw-bold);
}

.footer-store-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.footer-ph-store {
    width: 122px; height: 42px;
    border-radius: var(--radius-lg);
    flex-direction: row;
    font-size: 11px;
    gap: var(--space-2);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg) !important;
}

.footer-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 5px 10px;
    border-radius: var(--radius-md);
    font-size: 11px;
    font-weight: var(--fw-medium);
    color: rgba(255,255,255,0.8);
}

.security-badge--outlined { border: 1px solid rgba(255,255,255,0.25); }
.security-badge--alt { border: 1px solid var(--color-brand-alt); }

.footer-ph-reclame {
    width: 100%; height: 52px;
    flex-direction: row;
    font-size: 11px;
    gap: var(--space-2);
    background: rgba(255,255,255,0.95);
    color: #6B7280;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg) !important;
}

.footer-reclame-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    background: #fff;
    padding: var(--space-3) var(--space-4);
}

/* Footer bottom */
.footer-bottom {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-6) 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.35);
    line-height: var(--lh-relaxed);
}

.footer-legal-text {
    font-size: 11px !important;
    color: rgba(255,255,255,0.2) !important;
    max-width: 700px;
}

.footer-socials {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}

.social-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: all var(--tr-normal);
}

.social-icon:hover {
    background: var(--color-brand-alt);
    color: var(--color-brand-primary);
}

/* Botão flutuante WhatsApp */
.chat-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 56px; height: 56px;
    border-radius: var(--radius-full);
    background: var(--color-brand-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-primary);
    box-shadow: var(--shadow-xl);
    z-index: 900;
    transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}

.chat-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-cta);
}

/* ============================================================
   RESPONSIVO — NOVAS SEÇÕES (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Sobre */
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-visual { min-height: unset; }
    .sobre-amount-card { width: 85%; left: 0; bottom: -16px; }

    /* Disponível 24h — mobile */
    .disponivel-text { max-width: 100%; }
    .disp-cta { width: 100%; justify-content: center; }

    /* Servidor C — mobile */
    .pc-inner-card { padding: 28px 20px; }
    .pc-cta { width: 100%; justify-content: center; }

    /* Depoimentos */
    .depo-grid { grid-template-columns: 1fr; gap: var(--space-10); }
    .depo-mural { grid-template-columns: 1fr; max-height: none; }
    .depo-col--offset { margin-top: 0; }
    .depo-sidebar { position: static; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .faq-intro { position: static; }
    .faq-accordion .faq-question { padding: var(--space-5) var(--space-5); }
    .faq-accordion .faq-answer p { padding: var(--space-2) var(--space-5) var(--space-5); }

    /* Footer */
    .footer-newsletter-inner { flex-direction: column; }
    .newsletter-form { width: 100%; }
    .footer-grid-new { grid-template-columns: 1fr; gap: var(--space-8); }
    .chat-float { bottom: var(--space-5); right: var(--space-5); }

    /* Dobra 2 — sobre-features mobile (1 coluna) */
    .sobre-features { grid-template-columns: 1fr; }

    /* Dobra 6 — disponivel-grid mobile */
    .disponivel-grid { grid-template-columns: 1fr; }
    .disponivel-visual { display: none; }
}

/* ============================================================
   AJUSTES DE POLIMENTO — RODADA 2
   ============================================================ */

/* ── Dobra 4 (Servidor B): espaçamento tag→h1 replicando Dobra 1 ── */
.section-profile-b .hero-badge-pill {
    margin-bottom: calc(var(--space-4) - var(--space-5));
}

/* ── Dobra 4: bloco unificado tag + h1 + h2, CTA com respiro ── */
.section-profile-b .section-title {
    margin-bottom: 0;
}
.section-profile-b .profile-lead {
    margin-top: -6px;
}
.section-profile-b .pa-cta {
    margin-top: var(--space-4);
}

/* ── Dobra 5 (Servidor C): espaçamento tag→h1 replicando Dobra 1 ── */
.section-profile-c .hero-badge-pill {
    margin-bottom: calc(var(--space-4) - var(--space-6));
}

/* ── Dobra 5: CTA padronizado com Dobra 4 ── */
.pc-cta {
    width: 100%;
    justify-content: center;
    align-self: stretch;
    padding: 18px 24px;
}

/* ── Dobra 6 (Disponibilidade 24h): layout 2 colunas + imagem direita ── */
.disponivel-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.disponivel-grid .disponivel-text {
    max-width: 680px;
}

/* Coluna visual da Dobra 6 */
.disponivel-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
}

/* Painéis decorativos da Dobra 6 */
.disp-panel {
    height: 130px;
    border-radius: var(--radius-2xl);
    background: var(--color-brand-alt);
    opacity: 0.92;
    flex-shrink: 0;
}

.disp-panel--mid {
    margin-left: var(--space-8);
    background: rgba(148, 255, 54, 0.75);
}

.disp-panel--last {
    margin-left: var(--space-4);
    background: rgba(148, 255, 54, 0.55);
}

/* ── Dobra 6: espaçamento tag→h1 replicando Dobra 1 ── */
.section-disponivel .hero-badge-pill {
    margin-bottom: calc(var(--space-4) - var(--space-6));
}

/* ── Dobra 6: bloco unificado tag + h1 + h2, CTA com respiro ── */
.section-disponivel .section-title {
    margin-bottom: 0;
}
.section-disponivel .disponivel-desc {
    margin-top: -6px;
}
.section-disponivel .disp-cta {
    margin-top: var(--space-6);
}

/* ── Dobra 7 (Depoimentos): espaçamento tag→h1 replicando Dobra 1 ── */
.section-depoimentos .hero-badge-pill {
    margin-bottom: calc(var(--space-4) - var(--space-6));
}

/* ── Dobra 7: bloco unificado tag + h1 + h2, avatares/CTA com respiro ── */
.section-depoimentos .section-title {
    margin-bottom: 0;
}
.section-depoimentos .depo-desc {
    margin-top: -6px;
}
.section-depoimentos .depo-community {
    margin-top: var(--space-6);
}
