/* ============================================
   DESIGN SYSTEM — ZYNTRA CONTABILIDADE
   Paleta: Preto profundo + Azul Zyntra + Dourado sutil
   ============================================ */
:root {
    --bg-void: #050608;
    --bg-dark: #0a0c12;
    --bg-elevated: #111420;
    --bg-card: #14182a;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(90, 145, 255, 0.25);

    --blue-deep: #1e3a8a;
    --blue-primary: #2d5fd7;
    --blue-bright: #5a91ff;
    --blue-glow: #7ab0ff;

    --gold: #d4af6a;
    --gold-soft: #e8c98a;

    --text-primary: #f5f7fa;
    --text-secondary: #b8bfd1;
    --text-muted: #6b7389;
    --text-dim: #4a5166;

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --radius-pill: 100px;

    --shadow-blue: 0 10px 40px -10px rgba(45, 95, 215, 0.4);
    --shadow-deep: 0 25px 70px -20px rgba(0, 0, 0, 0.7);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Textura noise sutil no fundo */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--ease);
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: #6b7389;
    font-family: var(--font-body);
    font-weight: 300;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4a5169;
    transition: color 0.3s var(--ease);
    position: relative;
    white-space: nowrap;
}

.nav-links a.active {
    color: #2d5fd7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: #2d5fd7;
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: #12162a;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.nav-links a.btn-cta,
.nav-links a.btn-cta:hover {
    color: white;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before { left: 100%; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 50px -10px rgba(90, 145, 255, 0.6); }

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #12162a;
    transition: 0.3s var(--ease);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(45, 95, 215, 0.16) 0%, transparent 60%);
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(122, 176, 255, 0.15) 0%, transparent 60%);
    filter: blur(100px);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    background: rgba(45, 95, 215, 0.08);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-glow);
    margin-bottom: 32px;
    animation: fadeUp 0.8s var(--ease) both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue-bright);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--blue-bright);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    animation: fadeUp 1s var(--ease) 0.1s both;
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--blue-bright);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    margin-bottom: 40px;
    max-width: 700px;
    animation: fadeUp 1s var(--ease) 0.25s both;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-checklist svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    padding: 3px;
    border-radius: 50%;
    background: rgba(90, 145, 255, 0.15);
    color: var(--blue-bright);
    box-sizing: content-box;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeUp 1s var(--ease) 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    color: white;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-blue);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px -15px rgba(90, 145, 255, 0.7); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--ease);
}

.btn-secondary:hover {
    background: rgba(45, 95, 215, 0.08);
    border-color: var(--blue-bright);
    transform: translateY(-3px);
}

.btn-primary svg, .btn-secondary svg, .btn-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg, .btn-secondary:hover svg {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    animation: fadeUp 1s var(--ease) 0.4s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-number {
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 700;
    color: var(--blue-bright);
    line-height: 1;
}

.trust-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--blue-bright);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 800px;
}

.section-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--blue-bright);
}

.section-intro {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 64px;
}

/* ============================================
   LIGHT SECTIONS (fundo claro, tipo Contabilizei/Agilize)
   Sobrescreve as variáveis de cor só dentro da seção;
   todos os componentes (cards, ícones, forms) herdam
   automaticamente porque usam var(--...) em vez de cor fixa.
   ============================================ */
.light-section {
    /* Recalcula "color" aqui mesmo: como só o body declara "color: var(--text-primary)",
       títulos/textos que não redeclaram color herdariam o valor já calculado no body
       (claro, pensado pro tema escuro) em vez de reler a variável já escurecida abaixo. */
    color: var(--text-primary);
    --bg-void: #ffffff;
    --bg-dark: #f3f5fa;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --border-subtle: rgba(15, 23, 42, 0.09);
    --border-accent: rgba(45, 95, 215, 0.28);
    --text-primary: #12162a;
    --text-secondary: #4a5169;
    --text-muted: #626a80;
    --text-dim: #838aa0;
    --shadow-deep: 0 20px 60px -20px rgba(20, 30, 60, 0.16);

    /* Azul/dourado claros foram calibrados para contraste em fundo escuro;
       aqui ficam mais escuros para continuarem legíveis em fundo branco. */
    --blue-bright: #2d5fd7;
    --blue-glow: #2d5fd7;
    --gold: #8a6427;
    --gold-soft: #a67c35;
}

.light-section::before,
.light-section::after {
    opacity: 0.6;
}

/* ============================================
   DIFERENCIAIS / POR QUE ZYNTRA
   ============================================ */
.differentials {
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-dark) 100%);
}

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

.diff-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -16px rgba(20, 30, 60, 0.14);
}

.diff-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.diff-item:hover {
    background: var(--bg-elevated);
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.diff-item:hover::before {
    transform: scaleX(1);
}

.diff-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 95, 215, 0.16), rgba(90, 145, 255, 0.06));
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--blue-bright);
}

.diff-icon svg { width: 26px; height: 26px; }

.diff-item h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.diff-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.services {
    background: var(--bg-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(45, 95, 215, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.services-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -18px rgba(20, 30, 60, 0.14);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(90, 145, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-deep);
}

.service-card:hover::after { opacity: 1; }

.service-number {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
}

.service-features li::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--blue-bright);
    flex-shrink: 0;
}

/* ============================================
   REGIMES TRIBUTÁRIOS (comparativo, estilo Contabilizei)
   ============================================ */
.regimes {
    background: var(--bg-void);
}

.regimes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.regime-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px -18px rgba(20, 30, 60, 0.14);
}

.regime-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-deep);
}

.regime-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(180deg, rgba(45, 95, 215, 0.06), var(--bg-card) 40%);
    position: relative;
}

.regime-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(45, 95, 215, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    padding: 5px 12px;
    margin-bottom: 18px;
}

.regime-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.regime-limit {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.regime-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.regime-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
    font-weight: 300;
}

.regime-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 1px;
    background: var(--blue-bright);
}

.regimes-note {
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 640px;
}

/* ============================================
   FAIXA DE ESTATÍSTICAS
   ============================================ */
.stats-band {
    background: linear-gradient(135deg, var(--bg-void) 0%, var(--blue-deep) 220%);
    padding: 64px 0;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-block {
    text-align: center;
    padding: 0 16px;
    border-left: 1px solid var(--border-subtle);
}

.stat-block:first-child { border-left: none; }

.stat-block-number {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--blue-glow);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-block-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ============================================
   FOTO DE SEÇÃO (imagem larga, ex.: Indique e Ganhe)
   ============================================ */
.section-photo {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    margin: 40px 0 64px;
}

/* ============================================
   RESPONSÁVEL TÉCNICO
   ============================================ */
.team {
    background: var(--bg-void);
}

.team-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: center;
}

.team-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    margin: 0 auto;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-caption {
    text-align: center;
    margin-top: 20px;
}

.team-caption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-caption span {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   PLANOS
   ============================================ */
.plans {
    background: var(--bg-dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px -18px rgba(20, 30, 60, 0.14);
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-deep);
}

.plan-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(180deg, rgba(45, 95, 215, 0.06), var(--bg-card) 40%);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: -14px;
    left: 28px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    border-radius: 100px;
    padding: 6px 14px;
    box-shadow: var(--shadow-blue);
}

.plan-badge svg { width: 12px; height: 12px; }

.plan-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 95, 215, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--blue-bright);
}

.plan-icon svg { width: 22px; height: 22px; }

.plan-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.plan-tag {
    font-size: 13px;
    color: var(--blue-bright);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
}

.plan-features svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    padding: 2px;
    border-radius: 50%;
    background: rgba(90, 145, 255, 0.15);
    color: var(--blue-bright);
    box-sizing: content-box;
}

/* ============================================
   SOBRE
   ============================================ */
.about {
    background: var(--bg-void);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
    margin-bottom: 48px;
}

.about-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-deep);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: -48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-deep);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-panel-eyebrow {
    position: relative;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue-bright);
    font-weight: 500;
}

.about-panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-stat-value {
    display: block;
    font-family: var(--font-body);
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-decoration {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 140px;
    height: 140px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 em {
    color: var(--blue-bright);
    font-style: italic;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 48px 0;
}

.value-item {
    padding: 24px;
    background: rgba(45, 95, 215, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: border-color 0.3s var(--ease);
}

.value-item:hover { border-color: var(--border-accent); }

.value-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-bright);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   PROCESSO
   ============================================ */
.process {
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-dark) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.process-steps.steps-3 {
    grid-template-columns: repeat(3, 1fr);
}

.process-step {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px -18px rgba(20, 30, 60, 0.14);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-deep);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--bg-void);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: var(--blue-bright);
    transition: all 0.4s var(--ease);
    position: relative;
}

.process-step:hover .step-number {
    background: var(--blue-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    background: var(--bg-dark);
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    cursor: pointer;
    box-shadow: 0 10px 30px -18px rgba(20, 30, 60, 0.14);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-deep);
}

.blog-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--blue-deep), var(--bg-elevated));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(90, 145, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 145, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.blog-image-icon {
    position: relative;
    z-index: 2;
    color: var(--blue-glow);
    opacity: 0.9;
}

.blog-image-icon svg { width: 60px; height: 60px; }

.blog-content {
    padding: 32px 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-category {
    color: var(--blue-bright);
    font-weight: 500;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-bright);
    font-weight: 500;
}

.blog-link svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.blog-card:hover .blog-link svg { transform: translateX(4px); }

/* ============================================
   CTA / AGENDAMENTO
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--bg-void) 0%, var(--blue-deep) 200%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)),
        url('../images/cta-equipe.jpg');
    background-position: center, center, center 30%;
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.cta-section.cta-servicos::before { background-image: radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%), linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)), url('../images/cta-servicos.jpg'); }
.cta-section.cta-regimes::before { background-image: radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%), linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)), url('../images/cta-regimes.jpg'); }
.cta-section.cta-sobre::before { background-image: radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%), linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)), url('../images/cta-sobre.jpg'); }
.cta-section.cta-blog::before { background-image: radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%), linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)), url('../images/cta-blog.jpg'); }
.cta-section.cta-planos::before { background-image: radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%), linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)), url('../images/cta-planos.jpg'); }
.cta-section.cta-indique::before { background-image: radial-gradient(circle at top right, rgba(90, 145, 255, 0.22) 0%, transparent 55%), linear-gradient(135deg, rgba(5, 6, 8, 0.88), rgba(10, 20, 55, 0.85)), url('../images/cta-contato.jpg'); }

.cta-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-wrap h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 78px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta-wrap h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-soft);
}

.cta-wrap p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--bg-void);
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease);
}

.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s var(--ease);
}

.faq-question:hover { color: var(--blue-bright); }

.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    flex-shrink: 0;
    margin-left: 24px;
    transition: all 0.3s var(--ease);
}

.faq-item.active .faq-icon {
    background: var(--blue-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    font-size: 16px;
    max-width: 85%;
}

/* ============================================
   CONTATO
   ============================================ */
.contact {
    background: var(--bg-dark);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 16px;
    color: var(--text-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.contact-method:hover {
    border-color: var(--border-accent);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 95, 215, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    flex-shrink: 0;
}

.contact-method-icon svg { width: 20px; height: 20px; }

.contact-method-text small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-method-text strong {
    font-weight: 400;
    font-size: 15px;
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    --bg-void: var(--bg-dark);
}

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

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-void);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-bright);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    color: white;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-blue);
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -15px rgba(90, 145, 255, 0.7);
}

.form-consent {
    margin-bottom: 24px;
}

.form-consent .consent-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 0;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--blue-bright);
    cursor: pointer;
}

.consent-label a {
    color: var(--blue-bright);
    text-decoration: underline;
}

/* ============================================
   PÁGINAS LEGAIS (Política de Privacidade, Termos de Uso)
   ============================================ */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin: 48px 0 16px;
    color: var(--text-primary);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h2 .legal-num {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--blue-bright);
    margin-right: 6px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 16px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-void);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-about img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.footer-about h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 320px;
}

.footer-col h5 {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--blue-bright); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    transform: translateY(-2px);
}

.social-link svg { width: 16px; height: 16px; }

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease);
    animation: bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg { width: 32px; height: 32px; }

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    .services-header,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .diff-grid,
    .blog-grid,
    .services-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
    .regimes-grid,
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

@media (max-width: 1180px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 32px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        gap: 24px;
        align-items: flex-start;
        z-index: 999;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    section { padding: 80px 0; }

    .hero { padding: 120px 0 80px; }
    .hero-checklist { grid-template-columns: 1fr; }
    .hero-trust { gap: 24px; }
    .trust-number { font-size: 32px; }

    .services-grid,
    .diff-grid,
    .about-values,
    .blog-grid,
    .regimes-grid,
    .plans-grid,
    .process-steps,
    .form-row { grid-template-columns: 1fr; }

    .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .stat-block { border-left: none; padding: 0; }

    .diff-grid { gap: 16px; }

    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }

    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}
