/* ============================================
   Target Midia Digital — Tráfego Pago
   Identidade: 60% branco · 30% preto · 10% azul Target
   ============================================ */

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

:root {
  --white:         #ffffff;
  --black:         #0a0a0a;
  --target-blue:   #0044c4;
  --target-blue-d: #003299;
  --gray-50:       #fafafa;
  --gray-100:      #f4f4f5;
  --gray-200:      #eaeaea;
  --gray-400:      #a8a8a8;
  --gray-600:      #5c5c5c;
  --line-dark:     #1a1a1a;

  --font-title: 'Space Grotesk', sans-serif;
  --font-body:  'Inter', sans-serif;

  --max-w:   1200px;
  --radius:  4px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

/* ============================================
   TARGET BLUE BAR — assinatura visual
   ============================================ */
.blue-bar {
  display: block;
  width: 108px;
  height: 8px;
  background: var(--target-blue);
  margin: 18px 0 32px;
}

.blue-line {
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--target-blue);
  margin-right: 16px;
  vertical-align: -2px;
}

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, padding 0.2s;
}

#header.scrolled {
  border-bottom-color: var(--gray-200);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--black);
  color: var(--white);
  padding: 13px 20px;
  min-height: 44px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-cta:hover { background: var(--target-blue); }

@media (min-width: 768px) {
  .logo { height: 42px; }
  .header-cta { font-size: 14px; padding: 11px 22px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.005em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  text-align: left;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  padding: 16px 24px;
  min-height: 52px;
}

.btn-dark:hover { background: var(--target-blue); }

.btn-light {
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  padding: 16px 24px;
  min-height: 52px;
}

.btn-light:hover { background: var(--target-blue); color: var(--white); }

.btn-blue {
  background: var(--target-blue);
  color: var(--white);
  font-size: 15px;
  padding: 16px 24px;
  min-height: 52px;
}

.btn-blue:hover { background: var(--target-blue-d); }

/* Full-width em telas pequenas para área de toque larga */
@media (max-width: 479px) {
  .btn-dark, .btn-light, .btn-blue {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .btn-dark, .btn-light, .btn-blue {
    font-size: 17px;
    padding: 19px 32px;
    min-height: 60px;
  }
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
  padding: 72px 0;
}

@media (min-width: 768px) {
  section { padding: 128px 0; }
}

.section-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.section-tag.on-dark { color: var(--gray-400); }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow-block { margin-bottom: 36px; }

@media (min-width: 768px) { .eyebrow-block { margin-bottom: 48px; } }

.section-title {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 820px;
}

@media (min-width: 500px) { .section-title { font-size: 36px; } }
@media (min-width: 768px) { .section-title { font-size: 52px; margin-bottom: 20px; } }
@media (min-width: 1200px) { .section-title { font-size: 60px; } }

.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 620px;
}

@media (min-width: 500px) { .section-sub { font-size: 16px; } }
@media (min-width: 768px) { .section-sub { font-size: 17px; line-height: 1.6; } }

.on-dark .section-sub,
section.dark .section-sub { color: var(--gray-400); }

.accent { color: var(--target-blue); }

/* ============================================
   SECTION: DARK MODIFIER
   ============================================ */
section.dark {
  background: var(--black);
  color: var(--white);
}

section.dark h1,
section.dark h2,
section.dark h3 { color: var(--white); }

/* ============================================
   HERO
   ============================================ */
#hero {
  padding-top: 120px;
  padding-bottom: 72px;
  background: var(--white);
}

@media (min-width: 768px) {
  #hero { padding-top: 160px; padding-bottom: 100px; }
}

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

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
  }
}

@media (min-width: 1200px) { .hero-grid { gap: 80px; } }

.hero-text { min-width: 0; }
.hero-text > * { max-width: 620px; }

.hero-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
  background: var(--gray-100);
}

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

.hero-img::before {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 108px;
  height: 8px;
  background: var(--target-blue);
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-img::before { bottom: 24px; left: 24px; }
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
}

@media (min-width: 768px) { .hero-tag { font-size: 13px; } }

.hero-title {
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

@media (max-width: 499px) { .hero-title br { display: none; } }

@media (min-width: 500px) { .hero-title { font-size: 44px; margin-bottom: 28px; } }
@media (min-width: 768px) { .hero-title { font-size: 72px; margin-bottom: 32px; } }
@media (min-width: 1200px) { .hero-title { font-size: 88px; } }

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 32px;
}

@media (min-width: 500px) { .hero-sub { font-size: 18px; margin-bottom: 36px; } }
@media (min-width: 768px) { .hero-sub { font-size: 20px; margin-bottom: 40px; } }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--target-blue);
  border-radius: 50%;
}

/* ============================================
   REALIDADE
   ============================================ */
#realidade { background: var(--white); border-top: 1px solid var(--gray-200); }

.realidade-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.realidade-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}

.realidade-item:first-child { border-top: 1px solid var(--gray-200); }

@media (min-width: 768px) {
  .realidade-item {
    grid-template-columns: 120px 1fr;
    gap: 48px;
    padding: 56px 0;
  }
}

.realidade-num {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--target-blue);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .realidade-num { font-size: 36px; } }

.realidade-title {
  font-size: 22px;
  margin-bottom: 12px;
}

@media (min-width: 768px) { .realidade-title { font-size: 28px; } }

.realidade-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 560px;
}

@media (min-width: 768px) { .realidade-text { font-size: 17px; } }

/* ============================================
   ASSESSORIA ≠ AGÊNCIA (dark editorial)
   ============================================ */
#assessoria.dark { padding: 72px 0; }

@media (min-width: 768px) { #assessoria.dark { padding: 128px 0; } }

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

@media (min-width: 900px) {
  .assessoria-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
  }
}

@media (min-width: 1200px) { .assessoria-grid { gap: 80px; } }

.assessoria-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--line-dark);
  isolation: isolate;
}

.assessoria-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) contrast(1.05) brightness(0.92);
  transition: filter 0.5s ease;
}

/* Overlay azul Target a 12% */
.assessoria-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,68,196,0.10) 0%, rgba(0,68,196,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Assinatura visual: barra azul 108×8 no canto inferior esquerdo */
.assessoria-img::before {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 108px;
  height: 8px;
  background: var(--target-blue);
  z-index: 2;
}

.assessoria-img:hover img {
  filter: grayscale(0.15) contrast(1.05) brightness(0.96);
}

@media (min-width: 900px) {
  .assessoria-img { aspect-ratio: 4 / 5; max-height: 720px; }
  .assessoria-img::before { bottom: 32px; left: 32px; }
}

.assessoria-text { min-width: 0; }

.editorial-quote {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 860px;
}

@media (min-width: 500px) { .editorial-quote { font-size: 36px; margin-bottom: 40px; } }
@media (min-width: 768px) { .editorial-quote { font-size: 56px; margin-bottom: 48px; } }
@media (min-width: 1200px) { .editorial-quote { font-size: 68px; } }

.editorial-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 620px;
  margin-bottom: 20px;
}

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

@media (min-width: 768px) { .editorial-body { font-size: 19px; margin-bottom: 24px; } }

.editorial-quote-line {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--gray-400);
}

/* ============================================
   EQUIPE
   ============================================ */
#equipe { background: var(--white); }

.equipe-stats {
  background: var(--gray-100);
  padding: 32px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .equipe-stats { padding: 40px; flex-direction: row; gap: 48px; }
}

.equipe-stat-num {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  color: var(--target-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.equipe-stat-label {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
}

@media (min-width: 600px) { .equipe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .equipe-grid { grid-template-columns: repeat(4, 1fr); } }

.equipe-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.equipe-card-num {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--target-blue);
  letter-spacing: 0.04em;
  padding-top: 4px;
  flex-shrink: 0;
}

.equipe-card-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.equipe-footer {
  font-size: 16px;
  color: var(--gray-600);
  font-style: italic;
  max-width: 540px;
  line-height: 1.55;
}

/* ============================================
   COMO FUNCIONA (light)
   ============================================ */
#metodo {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .metodo-grid { grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-200); }
}

.metodo-card {
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

@media (min-width: 768px) {
  .metodo-card { padding: 48px 36px; border-top: none; }
}

.metodo-num {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 700;
  color: var(--target-blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

@media (min-width: 768px) { .metodo-num { font-size: 80px; margin-bottom: 24px; } }

.metodo-title {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--black);
}

@media (min-width: 768px) { .metodo-title { font-size: 24px; margin-bottom: 16px; } }

.metodo-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (min-width: 768px) { .metodo-text { font-size: 16px; } }

.metodo-cta {
  margin-top: 40px;
}

@media (min-width: 768px) { .metodo-cta { margin-top: 72px; } }

/* ============================================
   PROVA SOCIAL
   ============================================ */
#prova { background: var(--white); }

.prova-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin: 56px 0 64px;
}

@media (min-width: 768px) { .prova-stats { grid-template-columns: repeat(4, 1fr); } }

.prova-stat {
  background: var(--white);
  padding: 32px 24px;
}

.prova-stat-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

@media (min-width: 768px) { .prova-stat-num { font-size: 48px; } }

.prova-stat-num .accent { color: var(--target-blue); }

.prova-stat-label {
  font-size: 13px;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  line-height: 1.4;
}


/* ============================================
   PARCEIROS — carrossel infinito
   ============================================ */
#parceiros.dark {
  background: var(--black);
  padding: 72px 0;
  overflow: hidden;
}

@media (min-width: 768px) { #parceiros.dark { padding: 144px 0; } }

.parceiros-header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 24px;
}

@media (min-width: 768px) { .parceiros-header { padding: 0 48px; margin-bottom: 80px; } }

.carousel-wrapper {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

@media (min-width: 768px) {
  .carousel-wrapper { padding: 0 48px; }
}

.carousel-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-parceiros 80s linear infinite;
}

@media (min-width: 768px) {
  .carousel-track { animation-duration: 120s; }
}

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

@keyframes scroll-parceiros {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}

.logo-card {
  width: 180px;
  height: 180px;
  background: var(--white);
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.logo-card:hover { transform: translateY(-4px); }

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-card { width: 220px; height: 220px; border-radius: 20px; padding: 26px; }
  .carousel-track { gap: 24px; }
  @keyframes scroll-parceiros {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 12px)); }
  }
}

.parceiros-footer {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 24px;
}

@media (min-width: 768px) { .parceiros-footer { margin-top: 64px; } }

@media (min-width: 768px) {
  .parceiros-footer { padding: 0 48px; }
}

.parceiros-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.01em;
  font-style: italic;
}

@media (min-width: 768px) { .parceiros-tagline { font-size: 18px; } }

/* ============================================
   PARA QUEM É
   ============================================ */
#para-quem { background: var(--white); border-top: 1px solid var(--gray-200); }

.paraquem-list {
  list-style: none;
  margin-top: 16px;
}

.paraquem-list li {
  display: flex;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  line-height: 1.55;
  color: var(--black);
}

.paraquem-list li:first-child { border-top: 1px solid var(--gray-200); }

@media (min-width: 500px) { .paraquem-list li { font-size: 16px; padding: 20px 0; } }
@media (min-width: 768px) { .paraquem-list li { font-size: 19px; padding: 24px 0; } }

.paraquem-foot {
  margin-top: 40px;
  font-size: 15px;
  color: var(--gray-600);
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--gray-50); border-top: 1px solid var(--gray-200); }

.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 20px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  letter-spacing: -0.01em;
  min-height: 56px;
}

@media (min-width: 500px) { .faq-question { padding: 24px 24px; font-size: 17px; gap: 16px; } }
@media (min-width: 768px) { .faq-question { font-size: 19px; padding: 28px 32px; } }

.faq-num {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--target-blue);
  font-weight: 700;
  margin-right: 16px;
  letter-spacing: 0.04em;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gray-600);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.faq-item.open .faq-toggle {
  background: var(--target-blue);
  color: var(--white);
  border-color: var(--target-blue);
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

@media (min-width: 500px) { .faq-answer { padding: 0 24px; } }
@media (min-width: 768px) { .faq-answer { font-size: 16px; padding: 0 32px; } }

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

@media (min-width: 768px) { .faq-item.open .faq-answer { padding-bottom: 28px; } }

/* ============================================
   CTA FINAL
   ============================================ */
/* ============================================
   ESPECIALISTA — placeholder de foto
   ============================================ */
#especialista {
  background: var(--neutral, var(--white));
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

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

@media (min-width: 900px) {
  .especialista-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 64px;
  }
}

@media (min-width: 1200px) { .especialista-grid { gap: 80px; } }

.especialista-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 4px;
  background: var(--gray-50);
}

.especialista-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Assinatura visual: barra azul como nos outros elementos visuais */
.especialista-img::before {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 108px;
  height: 8px;
  background: var(--target-blue);
  z-index: 2;
}

@media (min-width: 768px) {
  .especialista-img::before { bottom: 24px; left: 24px; }
}

.especialista-content { min-width: 0; }

.especialista-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .especialista-name { font-size: 26px; } }

.especialista-role {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--target-blue);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.especialista-bio {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 540px;
}

@media (min-width: 768px) { .especialista-bio { font-size: 16px; } }

/* ============================================
   CTA FINAL
   ============================================ */
#cta-final.dark {
  background: var(--black);
  text-align: left;
  padding: 80px 0;
}

@media (min-width: 768px) { #cta-final.dark { padding: 160px 0; } }

.cta-final-inner > * { max-width: 760px; }

.cta-final-title {
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--white);
}

@media (min-width: 500px) { .cta-final-title { font-size: 40px; margin-bottom: 24px; } }
@media (min-width: 768px) { .cta-final-title { font-size: 64px; } }

.cta-final-sub {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

@media (min-width: 500px) { .cta-final-sub { font-size: 18px; margin-bottom: 40px; } }
@media (min-width: 768px) { .cta-final-sub { font-size: 20px; } }

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  padding: 40px 0;
  color: var(--gray-400);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-copy { font-size: 13px; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 20px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

@media (min-width: 500px) { .modal { padding: 40px 28px; } }
@media (min-width: 768px) { .modal { padding: 56px 48px; } }

.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

@media (min-width: 500px) { .modal-close { top: 16px; right: 16px; } }

.modal-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.modal-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--target-blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}

@media (min-width: 500px) { .modal-title { font-size: 28px; } }
@media (min-width: 768px) { .modal-title { font-size: 36px; } }

.modal-sub {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.55;
}

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

@media (min-width: 520px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-full { grid-column: 1 / -1; }
}

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

.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 14px;
  min-height: 48px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230044c4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--target-blue); }

.form-group input.error,
.form-group select.error { border-color: #cc0000; }

.form-error-msg {
  font-size: 12px;
  color: #cc0000;
  display: none;
}

.form-group.has-error .form-error-msg { display: block; }

.form-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  min-height: 48px;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-check:hover { border-color: var(--target-blue); }

.form-check input { display: none; }

.form-check.checked {
  border-color: var(--target-blue);
  background: rgba(0,68,196,0.06);
  color: var(--target-blue);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  min-height: 56px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

@media (min-width: 768px) { .form-submit { margin-top: 32px; } }

.form-submit:hover { background: var(--target-blue); }
.form-submit:disabled { background: var(--gray-400); cursor: not-allowed; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger sequencial (data-stagger="0", "1", "2"...) */
.reveal[data-stagger="0"] { transition-delay: 0ms; }
.reveal[data-stagger="1"] { transition-delay: 180ms; }
.reveal[data-stagger="2"] { transition-delay: 360ms; }
.reveal[data-stagger="3"] { transition-delay: 540ms; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); }
