/* ============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================ */

:root {
    --color-primary: #7c3aed;
    --color-primary-light: #a78bfa;
    --color-primary-glow: rgba(124, 58, 237, 0.25);
    --color-secondary: #ff8c42;
    --color-dark: #0a0e1a;
    --color-dark-2: #0f172a;
    --color-dark-3: #131c2e;
    --color-dark-4: #1a2540;
    --color-light: #e2e8f4;
    --color-muted: #8896b0;
    --color-white: #ffffff;
    --color-success: #22c55e;
    --color-danger: #ef4444;
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --radius: 0.75rem;
    --radius-lg: 1.25rem;
    --border-subtle: 1px solid rgba(124, 58, 237, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-light);
    background-color: var(--color-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-muted);
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-white);
}

strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 0.1rem;
    letter-spacing: -0.03em;
}

.nav-subtitle {
    font-size: 0.7rem;
    color: var(--color-primary-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.nav-menu a:hover {
    color: var(--color-primary-light);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-family: var(--font-display) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-primary-glow);
    color: var(--color-white) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 64px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 26, 0.92) 0%,
        rgba(124, 58, 237, 0.25) 60%,
        rgba(10, 14, 26, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 940px;
    animation: fadeInUp 0.9s ease-out;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(226, 232, 244, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: var(--color-primary-light);
    padding: 0.5rem 1.4rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-display);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #9b59f5 100%);
    color: var(--color-white);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(124, 58, 237, 0.5);
    color: var(--color-white);
}

.btn-cta {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b00 100%);
    color: var(--color-white);
    box-shadow: 0 6px 30px rgba(255, 140, 66, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 140, 66, 0.55);
    color: var(--color-white);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================
   SEÇÕES — DARK THEME VARIANTS
   ============================================ */

.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--color-dark-2);
}

.section-darker {
    background: var(--color-dark);
}

.section-title {
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    color: var(--color-white);
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
}

.section-subtitle-light {
    text-align: center;
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
    margin-top: 0.5rem;
}

/* ============================================
   CARDS GRID (Problema)
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.card {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-light);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
    background: var(--color-dark-4);
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 0;
}

/* ============================================
   SOLUTIONS GRID (2 por linha)
   ============================================ */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.solution-block {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
    border-radius: 4px 0 0 4px;
}

.solution-block:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.18);
    background: var(--color-dark-4);
}

.solution-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.solution-block h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.solution-block p {
    font-size: 0.92rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-light);
}

.solution-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
    font-weight: bold;
}

/* ============================================
   ANTES E DEPOIS — VISUAL IMPACTANTE
   ============================================ */

.before-after-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.ba-panel {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ba-before {
    border-color: rgba(239, 68, 68, 0.25);
}

.ba-after {
    border-color: rgba(34, 197, 94, 0.25);
}

.ba-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ba-label-before {
    color: #ef4444;
}

.ba-label-after {
    color: #22c55e;
}

.ba-icon {
    font-size: 1.2rem;
}

.ba-image-wrap {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-chaos-illustration {
    width: 100%;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-content: center;
    min-height: 180px;
}

.chaos-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.4rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    color: #fca5a5;
    font-family: var(--font-body);
}

.chaos-1 { transform: rotate(-3deg); }
.chaos-2 { transform: rotate(2deg) translateX(10px); }
.chaos-3 { transform: rotate(-1deg); }
.chaos-4 { transform: rotate(4deg) translateX(-5px); }
.chaos-5 { transform: rotate(-2deg) translateY(5px); }
.chaos-6 { transform: rotate(1deg); }

.chaos-arrows {
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(239, 68, 68, 0.4);
    margin-top: 0.5rem;
}

.ba-order-illustration {
    width: 100%;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 180px;
    justify-content: center;
}

.order-hub {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.order-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
}

.order-item {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.4rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    color: #86efac;
    font-family: var(--font-body);
    text-align: center;
}

.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ba-list li {
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.ba-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.ba-list-after li::before {
    content: '✓';
    color: #22c55e;
}

.ba-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.ba-arrow {
    font-size: 2rem;
    color: var(--color-primary-light);
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

.ba-transform-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* ============================================
   SOLUÇÃO PRINCIPAL (Operação Inteligente)
   ============================================ */

.main-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.solution-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
    border: var(--border-subtle);
}

.solution-benefits {
    padding: 1rem 0;
}

.solution-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    color: var(--color-muted);
}

.solution-benefits h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: var(--color-light);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
    font-weight: bold;
    font-size: 1rem;
}

/* ============================================
   TIMELINE — Fontes alinhadas
   ============================================ */

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary-light), transparent);
    z-index: 0;
}

.timeline-item {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover {
    background: var(--color-dark-4);
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.2);
}

.timeline-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    margin: -2.5rem auto 1.25rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    border: 3px solid var(--color-dark-3);
}

.timeline-item h3 {
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.timeline-item p {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   ESPECIALIDADES (Tecnologias redesenhado)
   ============================================ */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.expertise-card {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover::after {
    transform: scaleX(1);
}

.expertise-card:hover {
    background: var(--color-dark-4);
    border-color: rgba(124, 58, 237, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.18);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.expertise-card p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================
   PÚBLICO ALVO — Profissional e impactante
   ============================================ */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.audience-card {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
    text-align: left;
}

.audience-card:hover {
    background: var(--color-dark-4);
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.18);
}

.audience-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.audience-card h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   CHECKLIST
   ============================================ */

.checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius);
    transition: var(--transition);
}

.checklist-item:hover {
    border-color: rgba(124, 58, 237, 0.35);
    background: var(--color-dark-4);
}

.checkmark {
    color: var(--color-primary-light);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.checklist-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-light);
}

/* ============================================
   SOBRE — Layout com foto e currículo
   ============================================ */

.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.about-photo-frame {
    width: 260px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark-3) 0%, var(--color-dark-4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-muted);
    font-family: var(--font-body);
}

.about-photo-placeholder span {
    font-size: 1rem;
    color: var(--color-muted);
}

.about-photo-placeholder small {
    font-size: 0.72rem;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.4;
    color: rgba(136, 150, 176, 0.6);
}

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

.about-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.about-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary-light);
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 3rem;
    color: var(--color-white);
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.about-role {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 1.75rem;
    font-family: var(--font-body);
}

.about-bio {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.cv-block {
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}

.cv-block:hover {
    border-color: rgba(124, 58, 237, 0.35);
    background: var(--color-dark-4);
}

.cv-block h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.cv-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cv-block ul li {
    font-size: 0.82rem;
    color: var(--color-muted);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.cv-block ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
    font-weight: bold;
    font-size: 1rem;
}

.about-quote {
    border-left: 3px solid var(--color-primary);
    padding: 1rem 1.5rem;
    margin: 0;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1rem;
    font-style: italic;
    color: var(--color-primary-light);
    font-family: var(--font-display);
}

/* ============================================
   FORMULÁRIO
   ============================================ */

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-dark-3);
    border: var(--border-subtle);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    font-size: 0.88rem;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select {
    padding: 0.8rem 1rem;
    background: var(--color-dark-2);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-white);
    transition: var(--transition);
}

.form-group input::placeholder {
    color: rgba(136, 150, 176, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    background: var(--color-dark-4);
}

.form-group select option {
    background: var(--color-dark-2);
    color: var(--color-white);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--color-light);
    font-family: var(--font-body);
    padding: 0.6rem 0.75rem;
    background: var(--color-dark-2);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 0.4rem;
    transition: var(--transition);
}

.checkbox-label:hover {
    border-color: var(--color-primary);
    background: var(--color-dark-4);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-primary);
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

.form-success-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success-msg span {
    font-size: 3rem;
    color: var(--color-success);
}

.form-success-msg h3 {
    font-family: var(--font-display);
    color: var(--color-white);
    font-size: 1.4rem;
}

.form-success-msg p {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(255, 140, 66, 0.12);
    border: 1px solid rgba(255, 140, 66, 0.3);
    color: var(--color-secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--color-white);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefits span {
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.cta-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(136, 150, 176, 0.55);
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(124, 58, 237, 0.12);
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    color: var(--color-light);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.footer-brand p {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin: 0.2rem 0 0;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(136, 150, 176, 0.5);
    margin-bottom: 0;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #20ba5c);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    color: var(--color-white);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

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

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }

    .cards-grid,
    .solutions-grid,
    .checklist,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .before-after-visual {
        grid-template-columns: 1fr;
    }

    .ba-divider {
        flex-direction: row;
        justify-content: center;
    }

    .ba-transform-label {
        writing-mode: horizontal-tb;
    }

    .main-solution {
        grid-template-columns: 1fr;
    }

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

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

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-photo-col {
        position: static;
        align-items: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
    .nav-menu { display: none; }
    .timeline { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .hero-highlight { flex-direction: column; align-items: center; }
    .cta-benefits { flex-direction: column; align-items: center; gap: 0.75rem; }
}

/* ============================================
   CONTATO & REDES SOCIAIS
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-dark-3);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.15);
    background: var(--color-dark-4);
    color: inherit;
}

.contact-card-whatsapp:hover { border-color: rgba(37, 211, 102, 0.4); box-shadow: 0 12px 36px rgba(37, 211, 102, 0.15); }
.contact-card-instagram:hover { border-color: rgba(225, 48, 108, 0.4); box-shadow: 0 12px 36px rgba(225, 48, 108, 0.15); }
.contact-card-facebook:hover  { border-color: rgba(24, 119, 242, 0.4); box-shadow: 0 12px 36px rgba(24, 119, 242, 0.15); }
.contact-card-linkedin:hover  { border-color: rgba(10, 102, 194, 0.4); box-shadow: 0 12px 36px rgba(10, 102, 194, 0.15); }

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 0.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.contact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    font-family: var(--font-display);
    font-weight: 600;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   FOOTER ATUALIZADO
   ============================================ */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-muted);
    transition: var(--transition);
}

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

.social-link:hover { transform: translateY(-3px); color: var(--color-white); }
.social-wa:hover   { background: rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.3); color: #25d366; }
.social-ig:hover   { background: rgba(225, 48, 108, 0.15); border-color: rgba(225, 48, 108, 0.3); color: #e1306c; }
.social-fb:hover   { background: rgba(24, 119, 242, 0.15); border-color: rgba(24, 119, 242, 0.3); color: #1877f2; }
.social-li:hover   { background: rgba(10, 102, 194, 0.15); border-color: rgba(10, 102, 194, 0.3); color: #0a66c2; }
.social-email:hover{ background: rgba(124, 58, 237, 0.15); border-color: rgba(124, 58, 237, 0.3); color: var(--color-primary-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    gap: 1rem;
}

.footer-blog-link {
    font-size: 0.82rem;
    color: var(--color-muted);
    font-family: var(--font-body);
    transition: var(--transition);
}

.footer-blog-link:hover {
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

/* ============================================
   MENU HAMBÚRGUER — MOBILE
   ============================================ */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-hamburger:hover {
    border-color: var(--color-primary-light);
    background: rgba(124, 58, 237, 0.08);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animação X quando aberto */
.nav-hamburger-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger-open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-hamburger-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(124, 58, 237, 0.15);
        border-bottom: 1px solid rgba(124, 58, 237, 0.15);
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu-open {
        display: flex !important;
        animation: slideDown 0.25s ease-out;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 0.85rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(124, 58, 237, 0.06);
        color: var(--color-light) !important;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-menu li a:hover {
        background: rgba(124, 58, 237, 0.08);
        color: var(--color-primary-light) !important;
    }

    .nav-menu .nav-cta {
        margin: 0.75rem 2rem !important;
        display: block;
        text-align: center;
        border-radius: 0.5rem;
        padding: 0.75rem 1rem !important;
        border-bottom: none !important;
    }

    /* Garante que o navbar seja position:relative para o menu absolute funcionar */
    .navbar {
        position: fixed;
    }

    .navbar .container {
        position: relative;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Remove o display:none do @media 480px que escondia o menu antes */
@media (max-width: 480px) {
    .nav-menu {
        display: none; /* controlado pelo JS, não pelo CSS direto */
    }
}

/* ============================================
   NAV-BRAND como link
   ============================================ */

a.nav-brand {
    text-decoration: none;
    display: block;
}

a.nav-brand h1 {
    color: var(--color-white);
    transition: var(--transition);
}

a.nav-brand:hover h1 {
    color: var(--color-primary-light);
}

a.nav-brand .nav-subtitle {
    color: var(--color-primary-light);
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 998;
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

.scroll-top-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.scroll-top-btn:hover {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6);
    transform: translateY(-3px) !important;
}

/* WhatsApp sobe para não sobrepor o botão de topo */
.whatsapp-btn {
    bottom: 5.5rem !important;
}
