/* ============================================================
   SECTIONS.CSS — Estilos específicos de cada seção
   Páscoa 2026
   ============================================================ */

/* ================================================================
   SEÇÃO 1 — HERO
   ================================================================ */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  box-sizing: border-box;
  overflow: hidden;
  background-image: url('../../raw_files/background_desk.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.60) 100%);
  pointer-events: none;
}

.hero-topline {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
  opacity: .35; z-index: 10; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 52fr 48fr;
  column-gap: clamp(32px, 4vw, 56px);
  row-gap: clamp(10px, 1.6vh, 20px);
  align-items: start;
}

.hero-left,
.hero-text { display: contents; }

.hero-logo-top {
  grid-column: 1 / -1; grid-row: 1;
  width: 100%; display: flex; justify-content: center; margin-bottom: 8px;
}

.hero-logo-img {
  width: clamp(60px, 8vw, 100px); height: auto;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.3));
}

#hero-badge    { grid-column: 1 / -1; grid-row: 2; }
#hero-headline { grid-column: 1 / -1; grid-row: 3; margin-bottom: clamp(4px, 1vh, 12px); }
#hero-sub      { grid-column: 1; grid-row: 4; }
#hero-bullets  { grid-column: 1; grid-row: 5; width: 100%; }
#hero-cta      { grid-column: 1; grid-row: 6; }
.hero-right    { grid-column: 2; grid-row: 4 / 7; align-self: start; }

.video-card {
  position: relative; width: 100%; max-width: 100%; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 0 0 1px rgba(255,215,0,0.10), 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(255,180,0,0.15);
}

.video-thumb { position: relative; width: 100%; height: 100%; }

.video-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }

.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer; z-index: 2;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.6));
}

.play-label {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); z-index: 2; pointer-events: none; white-space: nowrap;
}

.video-badge {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 3;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
  padding: 8px 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; white-space: nowrap;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 900; line-height: 1.06;
  letter-spacing: var(--tracking-tight); color: var(--c-text-h);
}

.hl-row { display: block; }

.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-inner { display: inline-block; transform: translateY(110%); opacity: 0; }
.word-accent { color: #E8B84B; font-style: italic; text-shadow: 0 0 30px rgba(232,184,75,0.35); }

.hero-sub {
  font-size: clamp(0.875rem, 1.1vw, 1.125rem); line-height: 1.55;
  color: var(--c-text-p); max-width: 490px; opacity: 0; transform: translateY(24px);
}
.hero-sub strong { color: #E8B84B; font-weight: 700; text-shadow: 0 0 20px rgba(232,184,75,0.3); }
.urgency-days { color: #FF9A3C; font-weight: 700; text-shadow: 0 0 16px rgba(255,154,60,0.4); }

.hero-bullets { display: flex; flex-direction: column; gap: .25rem; opacity: 0; transform: translateY(24px); }

.bullet {
  display: flex; align-items: center; gap: .875rem;
  padding: clamp(4px, 0.8vh, 10px) 0;
  border-bottom: 1px solid var(--c-border-lt);
  font-size: var(--text-sm); color: var(--c-text-p);
  transition: color .3s var(--ease-out-expo), border-color .3s ease; cursor: default;
}
.bullet:last-child { border-bottom: none; }
.bullet:hover { color: var(--c-text-h); border-color: var(--c-border); }

.bullet-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--c-gold-dim); border: 1px solid var(--c-gold-border);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.0625rem; transition: background .3s ease, transform .35s var(--ease-out-expo);
}
.bullet:hover .bullet-icon { background: rgba(200,154,58,.22); transform: scale(1.12) rotate(-6deg); }
.bullet strong { color: #E8B84B; font-weight: 700; }

.hero-cta {
  display: flex; flex-direction: column; gap: clamp(6px, 1.2vh, 14px);
  opacity: 0; transform: translateY(24px) scale(.96);
}

.social-proof {
  display: flex; align-items: center; gap: .875rem;
  font-size: var(--text-xs); letter-spacing: var(--tracking-wide); color: var(--c-text-muted);
}
.stars { color: #F0C040; letter-spacing: .05em; text-shadow: 0 0 12px rgba(240,192,64,0.5); }

.cta-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.urgency { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--c-text-muted); }
.urgency span:first-child { color: #FF9A3C; }
.urgency strong { color: #FF9A3C; font-weight: 700; }

/* Mobile Hero */
@media (max-width: 1024px) {
  .hero { padding: 60px 4vw; }
  .hero-inner { column-gap: 32px; row-gap: 12px; }
}

@media (max-width: 768px) {
  .hero {
    background-image: url('../../raw_files/background_mob.jpg');
    height: auto; min-height: 100svh; max-height: none;
    padding: 56px 22px 32px; align-items: flex-start; overflow: visible;
  }
  .hero-left, .hero-text { display: contents; }
  .hero-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
  #hero-badge    { order: 1; }
  #hero-headline { order: 2; width: 100%; text-align: center; }
  #hero-sub      { order: 3; text-align: center; max-width: 100%; }
  .hero-right    { order: 4; width: 100%; }
  #hero-bullets  { order: 5; width: 100%; }
  #hero-cta      { order: 6; width: 100%; }
  .hero-headline { font-size: clamp(34px, 9vw, 46px); line-height: 1.18; }
  .hero-sub { font-size: .9375rem; line-height: 1.6; }
  .hero-badge  { font-size: .625rem; padding: .28rem .9rem; letter-spacing: 0.13em; }
  .hero-bullets { gap: 0; }
  .bullet { padding: .5rem 0; font-size: .875rem; }
  .bullet-icon { width: 30px; height: 30px; font-size: .9rem; }
  .social-proof { justify-content: center; font-size: .75rem; }
  .stars { font-size: .9375rem; }
  .hero-cta { display: flex; flex-direction: column; align-items: center; gap: .875rem; }
  .cta-row { display: flex; flex-direction: column; align-items: stretch; gap: .75rem; width: 100%; }
  .btn-primary { width: 100%; justify-content: center; font-size: 1.0625rem; padding: 1rem 1.5rem; }
  .btn-secondary { align-self: center; font-size: .9375rem; }
  .urgency { font-size: .75rem; justify-content: center; }
  .video-card { max-height: none; max-width: 100%; border-radius: 12px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(30px, 8.5vw, 42px); }
}

/* ================================================================
   SEÇÃO 2 — PROVA DE PRODUTO
   ================================================================ */

.section-produto {
  position: relative; width: 100vw; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background-image: url('../../raw_files/background_desk.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: clamp(56px, 9vh, 100px) clamp(24px, 6vw, 80px);
  box-sizing: border-box; overflow: hidden;
}

.section-produto::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,.04) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(8,3,1,0.95) 0%, rgba(8,3,1,0.80) 45%, rgba(8,3,1,0.80) 55%, rgba(8,3,1,0.95) 100%);
}

.section-produto::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.5), transparent); z-index: 1;
}

.section-produto-inner {
  position: relative; z-index: 2; width: 100%; max-width: 920px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(28px, 4.5vh, 52px);
}

.section-produto-header {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.mosaico-wrapper {
  position: relative; width: 100%; max-width: 820px;
  border-radius: 22px; overflow: hidden; border: 1px solid rgba(201,168,76,0.28);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.07), 0 32px 96px rgba(0,0,0,0.75), 0 0 80px rgba(201,168,76,0.07), inset 0 1px 0 rgba(255,255,255,0.06);
  cursor: default;
}

.mosaico-img {
  width: 100%; height: auto; display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform;
}
.mosaico-wrapper:hover .mosaico-img { transform: scale(1.03); }

.mosaico-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(201,168,76,0.12) 0%, transparent 18%, transparent 82%, rgba(201,168,76,0.12) 100%),
    linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 12%, transparent 88%, rgba(0,0,0,0.35) 100%);
}

.section-stats {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 56px); width: 100%; max-width: 700px;
  padding: clamp(18px, 2.5vh, 28px) clamp(24px, 4vw, 48px);
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.stat-item + .stat-item { border-left: 1px solid rgba(201,168,76,0.2); padding-left: clamp(24px, 4vw, 56px); }

.stat-numero {
  font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900; color: #E8B84B; line-height: 1;
  text-shadow: 0 0 24px rgba(232,184,75,0.3); letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body); font-size: clamp(9px, 1vw, 11px);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-text-muted);
}

.section-produto-footer { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }

.section-descricao {
  font-family: var(--font-body); font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.75; color: var(--c-text-p); max-width: 600px;
}
.section-descricao strong { color: #E8B84B; font-weight: 700; }

@media (max-width: 768px) {
  .section-produto { background-image: url('../../raw_files/background_mob.jpg'); background-attachment: scroll; padding: 56px 20px 52px; }
  .section-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 12px 8px; }
  .stat-item { padding: 16px 8px; border-right: 1px solid rgba(201,168,76,0.2); }
  .stat-item:last-child { border-right: none; }
  .stat-item + .stat-item { border-left: none; border-top: none; padding-left: 8px; padding-top: 16px; width: auto; }
  .stat-numero { font-size: clamp(20px, 6vw, 28px); }
  .stat-label { font-size: 8px; letter-spacing: 0.08em; }
}

/* ================================================================
   SEÇÃO 3 — O QUE VOCÊ VAI APRENDER
   ================================================================ */

.section-aprender {
  position: relative; width: 100vw;
  padding: clamp(64px, 10vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background-image: url('../../raw_files/background_desk.jpg');
  background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden;
}

.section-aprender::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,.03) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(6,2,1,0.97) 0%, rgba(6,2,1,0.88) 50%, rgba(6,2,1,0.97) 100%);
}

.section-aprender::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.45), transparent); z-index: 1;
}

.section-aprender-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(24px, 3vh, 40px);
}

.section-aprender-header {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 720px;
}

.section-aprender .section-titulo { font-size: clamp(28px, 3.0vw, 44px); max-width: 900px; white-space: normal; line-height: 1.25; }

.cards-grid {
  width: 100%; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px); align-items: stretch;
}

.card-item {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 22px);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 18px; text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  cursor: default; position: relative; overflow: hidden;
}

.card-item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}

.card-item:hover { transform: translateY(-10px); border-color: rgba(201,168,76,0.45); box-shadow: 0 24px 56px rgba(0,0,0,0.55), 0 0 32px rgba(201,168,76,0.08); background: rgba(201,168,76,0.04); }
.card-item:hover::before { opacity: 1; }

.card-icon {
  width: clamp(80px, 9vw, 116px); height: clamp(80px, 9vw, 116px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); position: relative; z-index: 1;
}
.card-item:hover .card-icon { transform: scale(1.1) rotate(-3deg); }

.card-icon img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(201,168,76,0.18)); transition: filter 0.35s ease;
}
.card-item:hover .card-icon img { filter: drop-shadow(0 6px 24px rgba(201,168,76,0.35)); }

.card-content { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }

.card-content h3 { margin: 0; font-family: var(--font-body); font-size: clamp(13px, 1.1vw, 15px); font-weight: 700; line-height: 1.3; }

.card-titulo-destaque { color: #E8B84B; font-weight: 700; display: block; text-shadow: 0 0 20px rgba(232,184,75,0.2); }

.card-content p { font-family: var(--font-body); font-size: clamp(12px, 0.95vw, 14px); line-height: 1.72; color: rgba(255,255,255,0.65); }

.cards-grid .card-item:first-child { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15); border-radius: 18px; }

.section-aprender-cta { display: flex; justify-content: center; margin-top: 40px; padding-bottom: 8px; }

@media (max-width: 768px) {
  .section-aprender { background-image: url('../../raw_files/background_mob.jpg'); background-attachment: scroll; padding: 56px 20px 60px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-item { padding: 20px 14px; gap: 14px; }
  .card-icon { width: 68px; height: 68px; }
  .card-content p { font-size: 12px; }
}

/* ================================================================
   SEÇÃO 4 — PROVA SOCIAL
   ================================================================ */

.section-prova {
  position: relative; width: 100vw;
  padding: clamp(64px, 10vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background-image: url('../../raw_files/background_desk.jpg');
  background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden;
}

.section-prova::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(201,168,76,.03) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(4,1,0,0.97) 0%, rgba(4,1,0,0.88) 40%, rgba(4,1,0,0.88) 60%, rgba(4,1,0,0.97) 100%);
}

.section-prova::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.5), transparent); z-index: 1;
}

.section-prova-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(40px, 5vh, 64px);
}

.section-prova-header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }

.depoimentos-grid { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 26px); margin: 0; }

.depo-card {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  background: rgba(255,255,255,0.02); max-height: 520px; overflow-y: hidden;
}

.depo-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(201,168,76,0.05) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.25) 100%);
  pointer-events: none; z-index: 1; opacity: 0; transition: opacity 0.4s ease;
}

.depo-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(201,168,76,0.4); box-shadow: 0 24px 56px rgba(0,0,0,0.65), 0 0 40px rgba(201,168,76,0.1); }
.depo-card:hover::after { opacity: 1; }

.depo-img-wrap { width: 100%; height: 520px; overflow: hidden; }

.depo-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.depo-card:hover .depo-img-wrap img { transform: scale(1.03); }

.prova-frase {
  text-align: center; max-width: 760px; display: flex; flex-direction: column;
  align-items: center; gap: 20px; padding: 32px 40px;
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.14);
  border-radius: 20px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  margin-top: 0; margin-bottom: 0;
}

.prova-frase p { font-family: var(--font-display); font-size: clamp(15px, 1.55vw, 20px); line-height: 1.75; color: rgba(255,255,255,0.88); font-style: italic; }
.prova-frase strong { color: #E8B84B; font-weight: 700; font-style: normal; text-shadow: 0 0 20px rgba(232,184,75,0.25); }

.posts-grid { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 26px); margin: 0; }

.post-card {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.post-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(201,168,76,0.35); box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 36px rgba(201,168,76,0.08); }

.post-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover img { transform: scale(1.03); }

.section-prova-cta { margin-top: clamp(24px, 4vh, 48px); margin-bottom: 8px; }

@media (max-width: 768px) {
  .section-prova { background-image: url('../../raw_files/background_mob.jpg'); background-attachment: scroll; padding: 56px 20px 60px; }
  .depoimentos-grid, .posts-grid { grid-template-columns: 1fr; }
  .depo-card { max-height: 420px; }
  .depo-img-wrap { height: 420px; }
  .prova-frase p { font-size: 15px; }
  .prova-frase { padding: 20px 20px; }
}

/* ================================================================
   SEÇÃO 5 — POR QUE APRENDER
   ================================================================ */

.section-porque {
  position: relative; width: 100vw;
  padding: clamp(64px, 10vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background-image: url('../../raw_files/background_desk.jpg');
  background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden;
}

.section-porque::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(201,168,76,.04) 0%, transparent 65%),
    linear-gradient(160deg, rgba(3,1,0,0.97) 0%, rgba(5,2,0,0.90) 40%, rgba(5,2,0,0.90) 60%, rgba(3,1,0,0.97) 100%);
}

.section-porque::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.5), transparent); z-index: 1;
}

.section-porque-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(24px, 4vh, 48px);
}

.section-porque-header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 720px; }

.porque-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 28px); align-items: stretch; }

.porque-card {
  display: flex; flex-direction: column; height: 100%; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15); background: rgba(255,255,255,0.025);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease; position: relative;
}

.porque-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 1;
}

.porque-card:hover { transform: translateY(-10px); border-color: rgba(201,168,76,0.42); box-shadow: 0 28px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.09); }
.porque-card:hover::before { opacity: 1; }

.porque-card-img { width: 100%; height: 280px; overflow: hidden; flex-shrink: 0; position: relative; }

.porque-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.porque-card:hover .porque-card-img img { transform: scale(1.06); }

.porque-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(6,2,0,0.85)); pointer-events: none;
}

.porque-card-body { padding: clamp(20px, 2.5vw, 28px); display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }

.porque-card-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(201,168,76,0.5); }

.porque-card-title { font-family: var(--font-display); font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; line-height: 1.25; color: #E8B84B; text-shadow: 0 0 24px rgba(232,184,75,0.18); letter-spacing: var(--tracking-tight); }

.porque-card-line { width: 36px; height: 1px; background: linear-gradient(to right, rgba(201,168,76,0.6), transparent); flex-shrink: 0; }

.porque-card-text { font-family: var(--font-body); font-size: clamp(13px, 1.05vw, 15px); line-height: 1.75; color: rgba(255,255,255,0.78); }

.section-porque-cta { display: flex; justify-content: center; margin-top: clamp(32px, 5vh, 56px); }

@media (max-width: 768px) {
  .section-porque { background-image: url('../../raw_files/background_mob.jpg'); background-attachment: scroll; padding: 56px 20px 60px; }
  .porque-grid { grid-template-columns: 1fr; gap: 20px; }
  .porque-card-img,
  .porque-card:nth-child(1) .porque-card-img,
  .porque-card:nth-child(2) .porque-card-img,
  .porque-card:nth-child(3) .porque-card-img { height: auto; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
  .section-porque-cta { width: 100%; display: flex; justify-content: center; padding: 0 24px; box-sizing: border-box; }
  .section-porque-cta .cta-btn { width: auto; max-width: 100%; white-space: normal; text-align: center; padding: 16px 28px; }
}

/* ================================================================
   SEÇÃO 6 — SUPORTE & COMUNIDADE
   ================================================================ */

.section-suporte {
  position: relative; width: 100vw;
  padding: clamp(64px, 10vh, 110px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(135deg, #0d0400 0%, #1a0800 50%, #0d0400 100%); overflow: hidden;
}

.section-suporte::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.55), transparent); z-index: 1;
}

.section-suporte::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,168,76,.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.section-suporte-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 60fr 40fr; gap: clamp(40px, 5vw, 80px); align-items: center;
}

.suporte-texto { display: flex; flex-direction: column; gap: clamp(16px, 2.2vh, 24px); }
.suporte-header { display: flex; flex-direction: column; gap: 14px; }
.suporte-paragrafos { display: flex; flex-direction: column; gap: 14px; }

.suporte-p { font-family: var(--font-body); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.8; color: rgba(255,255,255,0.78); }
.suporte-p strong { color: #E8B84B; font-weight: 700; }

.suporte-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0; }

.suporte-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22);
  border-radius: 100px; font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.04em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); white-space: nowrap;
}

.suporte-frase {
  font-family: var(--font-display); font-size: clamp(16px, 1.5vw, 20px); font-style: italic;
  line-height: 1.6; color: #E8B84B; border-left: 3px solid #E8B84B;
  padding-left: 20px; margin: 8px 0; text-shadow: 0 0 24px rgba(232,184,75,0.2);
}

.suporte-imagem { display: flex; align-items: center; justify-content: center; position: relative; }

.suporte-imagem::before {
  content: ''; position: absolute; width: 75%; height: 75%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,0.1) 0%, transparent 70%);
  filter: blur(32px); pointer-events: none; z-index: 0;
}

.suporte-img {
  width: clamp(260px, 32vw, 460px); height: auto; display: block; position: relative; z-index: 1;
  animation: floatSup 6s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(232,184,75,0.08));
}

@media (max-width: 768px) {
  .section-suporte { padding: 56px 20px 60px; }
  .section-suporte-inner { grid-template-columns: 1fr; gap: 36px; }
  .suporte-imagem { order: -1; }
  .suporte-img { width: 80%; max-width: 300px; margin: 0 auto; }
  .suporte-pills { justify-content: center; }
  .suporte-frase { font-size: 16px; }
}

/* ================================================================
   SEÇÃO 7 — BÔNUS EXCLUSIVOS
   ================================================================ */

.section-bonus {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(160deg, #0a0200 0%, #1c0a00 40%, #2a1000 70%, #0a0200 100%); overflow: hidden;
}

.section-bonus::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.6), transparent); z-index: 1;
}

.section-bonus::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 15%, rgba(232,184,75,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 85%, rgba(201,100,30,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(232,184,75,0.03) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.bonus-bokeh { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }

.bonus-bokeh span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,0.9) 0%, rgba(232,184,75,0) 70%);
  animation: bokehFloat var(--bk-dur, 6s) ease-in-out infinite;
  animation-delay: var(--bk-delay, 0s);
}

.bonus-bokeh span:nth-child(1)  { width: 6px;  height: 6px;  top:  8%; left:  5%; --bk-dur: 6.0s; --bk-delay: 0.0s; opacity: 0.7; }
.bonus-bokeh span:nth-child(2)  { width: 4px;  height: 4px;  top: 14%; left: 90%; --bk-dur: 7.2s; --bk-delay: 0.8s; opacity: 0.5; }
.bonus-bokeh span:nth-child(3)  { width: 8px;  height: 8px;  top: 35%; left:  2%; --bk-dur: 8.0s; --bk-delay: 1.5s; opacity: 0.4; }
.bonus-bokeh span:nth-child(4)  { width: 3px;  height: 3px;  top: 60%; left: 95%; --bk-dur: 5.5s; --bk-delay: 0.3s; opacity: 0.8; }
.bonus-bokeh span:nth-child(5)  { width: 5px;  height: 5px;  top: 80%; left:  8%; --bk-dur: 7.5s; --bk-delay: 2.0s; opacity: 0.6; }
.bonus-bokeh span:nth-child(6)  { width: 4px;  height: 4px;  top: 90%; left: 75%; --bk-dur: 6.5s; --bk-delay: 1.2s; opacity: 0.5; }
.bonus-bokeh span:nth-child(7)  { width: 7px;  height: 7px;  top: 25%; left: 50%; --bk-dur: 9.0s; --bk-delay: 0.5s; opacity: 0.3; }
.bonus-bokeh span:nth-child(8)  { width: 3px;  height: 3px;  top: 70%; left: 35%; --bk-dur: 6.0s; --bk-delay: 3.0s; opacity: 0.6; }
.bonus-bokeh span:nth-child(9)  { width: 5px;  height: 5px;  top: 45%; left: 78%; --bk-dur: 7.0s; --bk-delay: 1.8s; opacity: 0.4; }
.bonus-bokeh span:nth-child(10) { width: 6px;  height: 6px;  top: 55%; left: 20%; --bk-dur: 8.5s; --bk-delay: 0.7s; opacity: 0.35; }
.bonus-bokeh span:nth-child(11) { width: 4px;  height: 4px;  top: 18%; left: 42%; --bk-dur: 5.8s; --bk-delay: 2.5s; opacity: 0.45; }
.bonus-bokeh span:nth-child(12) { width: 5px;  height: 5px;  top: 72%; left: 62%; --bk-dur: 7.8s; --bk-delay: 1.0s; opacity: 0.5; }

.section-bonus-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(36px, 5.5vh, 64px);
}

.bonus-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; max-width: 760px; }

.bonus-subtitle { font-family: var(--font-body); font-size: clamp(0.95rem, 2vw, 1.1rem); color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

.bonus-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }

.bonus-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(232,184,75,0.04) 100%);
  border: 1px solid rgba(232,184,75,0.15); border-radius: 16px; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer; display: flex; flex-direction: column;
}

.bonus-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(232,184,75,0.18); border-color: rgba(232,184,75,0.4); }

.bonus-card-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }

.bonus-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.bonus-card:hover .bonus-card-img-wrap img { transform: scale(1.05); }

.bonus-card-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(10,2,0,0.72) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}

.bonus-card-badge {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: linear-gradient(135deg, #E8B84B, #c49a2a); color: #1a0800;
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px; white-space: nowrap; box-shadow: 0 2px 12px rgba(10,2,0,0.4);
}

.bonus-card-body { padding: clamp(16px, 2.5vw, 24px); display: flex; flex-direction: column; gap: 8px; flex: 1; }

.bonus-card-num { font-family: var(--font-body); font-size: 0.72rem; color: #E8B84B; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; }

.bonus-card-title { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.2rem); color: #E8B84B; line-height: 1.3; margin: 0; }

.bonus-card-desc { font-family: var(--font-body); font-size: clamp(0.82rem, 1.4vw, 0.92rem); color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; flex: 1; }

.bonus-card-value { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 8px; padding-top: 10px; border-top: 1px solid rgba(232,184,75,0.12); }
.bonus-card-value .valor { color: #E8B84B; text-decoration: line-through; text-decoration-color: rgba(232,184,75,0.55); }
.bonus-card-value em { color: rgba(255,255,255,0.65); font-style: italic; }

@media (max-width: 768px) {
  .section-bonus { padding: 60px 20px 64px; }
  .bonus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; width: 100%; }
  .bonus-card-img-wrap { aspect-ratio: 1 / 1; }
  .bonus-header .section-titulo { font-size: clamp(1.5rem, 6.5vw, 2rem); }
}

/* ================================================================
   SEÇÃO 8 — QUEM VAI TE ENSINAR (Marrara Bortoloti)
   ================================================================ */

.section-marrara {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(150deg, #080100 0%, #160800 45%, #1e0c00 75%, #080100 100%); overflow: hidden;
}

.section-marrara::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(232,184,75,0.03) 0px, rgba(232,184,75,0.03) 1px, transparent 1px, transparent 10px);
  pointer-events: none; z-index: 0;
}

.section-marrara::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 70% at 30% 50%, rgba(232,184,75,0.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.section-marrara-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 40fr 60fr; gap: clamp(40px, 5vw, 80px); align-items: center;
}

.marrara-img-col { display: flex; align-items: center; justify-content: center; position: relative; }

.marrara-img-col::before {
  content: ''; position: absolute; width: 85%; height: 85%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: 0;
}

.marrara-img-frame {
  position: relative; width: clamp(280px, 38vw, 480px); border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 0 2px rgba(232,184,75,0.3), 0 0 60px rgba(232,184,75,0.12), 0 20px 60px rgba(0,0,0,0.5); z-index: 1;
}

.marrara-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.marrara-img-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(8,1,0,0.45) 0%, transparent 100%); pointer-events: none;
}

.marrara-img-tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.35);
  border-radius: 6px; padding: 6px 14px; font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700; color: #E8B84B; letter-spacing: 0.04em;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.marrara-texto { display: flex; flex-direction: column; gap: 18px; padding-left: clamp(0px, 2vw, 16px); }
.marrara-header { display: flex; flex-direction: column; gap: 14px; }

.marrara-titulo { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #E8B84B; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
.marrara-titulo em { font-style: italic; color: #F0C05A; }

.marrara-p { font-family: var(--font-body); font-size: clamp(0.9rem, 1.5vw, 1rem); color: rgba(255,255,255,0.8); line-height: 1.85; margin: 0; }
.marrara-p strong { color: #E8B84B; font-weight: 700; }

.marrara-frase {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #E8B84B;
  border-left: 3px solid #E8B84B; padding-left: 20px; margin: 10px 0;
  line-height: 1.55; text-shadow: 0 0 28px rgba(232,184,75,0.18);
}

.marrara-badges { display: flex; flex-wrap: wrap; gap: 12px; }

.marrara-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,184,75,0.08); border: 1px solid rgba(232,184,75,0.22);
  border-radius: 24px; padding: 7px 16px; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.88); letter-spacing: 0.02em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); white-space: nowrap;
}

@media (max-width: 768px) {
  .section-marrara { padding: 60px 20px 64px; }
  .section-marrara-inner { grid-template-columns: 1fr; gap: 36px; }
  .marrara-img-col { justify-content: center; order: 1; }
  .marrara-img-frame { width: 85%; max-width: 360px; }
  .marrara-texto { padding-left: 0; order: -1; }
  .marrara-badges { justify-content: center; }
  .marrara-titulo { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ================================================================
   SEÇÃO 9 — PARA QUEM É
   ================================================================ */

.section-para-quem {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(160deg, #0e0300 0%, #1f0900 35%, #2d1200 65%, #0e0300 100%); overflow: hidden;
}

.section-para-quem::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(232,184,75,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.section-para-quem::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.5), transparent); z-index: 1;
}

.section-para-quem-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(36px, 5vh, 60px);
}

.para-quem-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }

.para-quem-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }

.pq-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(232,184,75,0.03) 100%);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232,184,75,0.12); border-radius: 20px;
  padding: clamp(20px, 3vw, 32px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.4s ease; overflow: hidden;
}

.pq-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 24px 70px rgba(232,184,75,0.2); border-color: rgba(232,184,75,0.45); }

.pq-card-num { position: absolute; top: 12px; right: 18px; font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: rgba(232,184,75,0.08); line-height: 1; pointer-events: none; user-select: none; }

.pq-card-tag { display: inline-block; padding: 4px 14px; border-radius: 20px; font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }

.pq-card-tag--iniciante { background: rgba(99,179,99,0.15); color: #8fd88f; border: 1px solid rgba(99,179,99,0.3); }
.pq-card-tag--intermediaria { background: rgba(232,184,75,0.12); color: #E8B84B; border: 1px solid rgba(232,184,75,0.25); }
.pq-card-tag--avancada { background: rgba(200,120,50,0.15); color: #e8a05a; border: 1px solid rgba(200,120,50,0.3); }

.pq-card-img-wrap { width: clamp(120px, 14vw, 180px); margin: 0 auto 20px; }

.pq-card-img-wrap img { width: 100%; height: auto; display: block; mix-blend-mode: lighten; }

.pq-card:nth-child(1) .pq-card-img-wrap img { animation: floatCard 4.0s ease-in-out infinite; animation-delay: 0.0s; }
.pq-card:nth-child(2) .pq-card-img-wrap img { animation: floatCard 4.0s ease-in-out infinite; animation-delay: 0.8s; }
.pq-card:nth-child(3) .pq-card-img-wrap img { animation: floatCard 4.0s ease-in-out infinite; animation-delay: 1.6s; }

.pq-card-title { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.2rem); color: #E8B84B; font-weight: 700; line-height: 1.3; margin: 0 0 14px; }

.pq-card-line { width: 40px; height: 2px; background: #E8B84B; border-radius: 2px; margin: 0 auto 16px; flex-shrink: 0; }

.pq-card-desc { font-family: var(--font-body); font-size: clamp(0.82rem, 1.4vw, 0.9rem); color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0; }

.para-quem-cta { text-align: center; margin-top: clamp(48px, 6vw, 72px); display: flex; flex-direction: column; align-items: center; gap: 12px; }

.para-quem-cta .cta-btn { padding: 18px 48px; font-size: clamp(1rem, 2vw, 1.15rem); border-radius: 50px; animation: ctaPulse 2.5s ease-in-out infinite; }

.para-quem-cta-sub { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }

@media (max-width: 768px) {
  .section-para-quem { padding: 60px 20px 64px; }
  .para-quem-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; width: 100%; }
  .pq-card-tag { align-self: center; }
  .pq-card-img-wrap { width: clamp(100px, 35vw, 150px); }
  .para-quem-cta .cta-btn { width: 90%; max-width: 360px; text-align: center; white-space: normal; word-break: break-word; padding: 16px 24px; line-height: 1.4; }
}

/* ================================================================
   SEÇÃO 10 — A JORNADA DO CURSO (Módulos 1–3)
   ================================================================ */

.section-jornada {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(170deg, #0c0100 0%, #1a0700 40%, #260e00 70%, #0c0100 100%); overflow: hidden;
}

.section-jornada::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 55%, rgba(232,184,75,0.05) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}

.section-jornada::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.5), transparent); z-index: 1;
}

.section-jornada-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(32px, 5vh, 52px);
}

.jornada-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }

.jornada-intro { text-align: center; max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.jornada-intro-destaque { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.35rem); color: #E8B84B; line-height: 1.65; margin: 0; text-shadow: 0 0 32px rgba(232,184,75,0.15); }

.jornada-intro-p { font-family: var(--font-body); font-size: clamp(0.9rem, 1.5vw, 1rem); color: rgba(255,255,255,0.78); line-height: 1.85; margin: 0; }

.jornada-subtitulo { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: #E8B84B; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 8px; }

.jornada-grid-wrap { width: 100%; position: relative; }

.jornada-connector {
  position: absolute; top: calc(180px / 2); left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,75,0.3) 20%, rgba(232,184,75,0.3) 80%, transparent);
  transform-origin: left center; z-index: 0; pointer-events: none;
}

.jornada-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); position: relative; z-index: 1; }

.jornada-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(232,184,75,0.03) 100%);
  border: 1px solid rgba(232,184,75,0.14); border-radius: 18px; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; display: flex; flex-direction: column;
}

.jornada-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(232,184,75,0.18); border-color: rgba(232,184,75,0.4); }

.jornada-card-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }

.jornada-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; display: block; }
.jornada-card:hover .jornada-card-img-wrap img { transform: scale(1.06); }

.jornada-card-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(12,1,0,0.75) 0%, transparent 100%); pointer-events: none; z-index: 1;
}

.jornada-card-num {
  position: absolute; top: 12px; left: 12px; width: 40px; height: 40px;
  background: linear-gradient(135deg, #E8B84B, #c49a2a); color: #1a0800;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 4px 16px rgba(232,184,75,0.4);
}

.jornada-arrow {
  position: absolute; top: calc(180px / 2 - 14px); font-size: 1.5rem;
  color: rgba(232,184,75,0.4); pointer-events: none; z-index: 3; line-height: 1;
}
.jornada-arrow--1 { right: calc(33.33% - 0px); transform: translateX(50%); }
.jornada-arrow--2 { right: calc(0%); transform: translateX(calc(33.33% + 50%)); }

.jornada-card-body { padding: clamp(18px, 2.5vw, 28px); display: flex; flex-direction: column; gap: 0; flex: 1; }

.jornada-card-title { font-family: var(--font-display); font-size: clamp(1rem, 1.7vw, 1.15rem); color: #E8B84B; font-weight: 700; line-height: 1.3; margin: 0 0 12px; }

.jornada-card-line { width: 36px; height: 2px; background: rgba(232,184,75,0.5); border-radius: 2px; margin-bottom: 14px; flex-shrink: 0; }

.jornada-card-desc { font-family: var(--font-body); font-size: clamp(0.82rem, 1.4vw, 0.9rem); color: rgba(255,255,255,0.73); line-height: 1.75; margin: 0; }

@media (max-width: 768px) {
  .section-jornada { padding: 60px 20px 64px; }
  .jornada-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; width: 100%; }
  .jornada-connector, .jornada-arrow { display: none; }
  .jornada-card-img-wrap { aspect-ratio: 4 / 3; }
}

/* ================================================================
   SEÇÃO 11 — CONTINUANDO A JORNADA (Módulos 4–7)
   ================================================================ */

.section-jornada2 {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(155deg, #100300 0%, #1e0800 35%, #2a1000 60%, #100300 100%); overflow: hidden;
}

.section-jornada2::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 2px at  8% 12%, rgba(232,184,75,0.06) 0%, transparent 100%),
    radial-gradient(circle 2px at 22% 78%, rgba(232,184,75,0.05) 0%, transparent 100%),
    radial-gradient(circle 2px at 45% 25%, rgba(232,184,75,0.04) 0%, transparent 100%),
    radial-gradient(circle 2px at 68% 88%, rgba(232,184,75,0.06) 0%, transparent 100%),
    radial-gradient(circle 2px at 82% 15%, rgba(232,184,75,0.05) 0%, transparent 100%),
    radial-gradient(circle 2px at 91% 60%, rgba(232,184,75,0.04) 0%, transparent 100%),
    radial-gradient(circle 2px at 33% 50%, rgba(232,184,75,0.03) 0%, transparent 100%),
    radial-gradient(circle 2px at 57% 70%, rgba(232,184,75,0.05) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232,184,75,0.04) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.section-jornada2::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.45), transparent); z-index: 1;
}

.section-jornada2-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(32px, 5vh, 52px);
}

.jornada2-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }

.jornada2-grid { width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 32px); }

.jornada2-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(232,184,75,0.03) 100%);
  border: 1px solid rgba(232,184,75,0.13); border-radius: 18px; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; display: flex; flex-direction: column;
}

.jornada2-card:hover { transform: translateY(-10px); box-shadow: 0 24px 64px rgba(232,184,75,0.18); border-color: rgba(232,184,75,0.4); }

.jornada2-card-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }

.jornada2-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; display: block; }
.jornada2-card:hover .jornada2-card-img-wrap img { transform: scale(1.06); }

.jornada2-card-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(16,3,0,0.75) 0%, transparent 100%); pointer-events: none; z-index: 1;
}

.jornada2-card-num {
  position: absolute; top: 12px; left: 12px; width: 38px; height: 38px;
  background: linear-gradient(135deg, #E8B84B, #c49a2a); color: #1a0800;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 4px 14px rgba(232,184,75,0.4);
}

.jornada2-card-body { padding: clamp(16px, 2vw, 24px); display: flex; flex-direction: column; flex: 1; }

.jornada2-card-title { font-family: var(--font-display); font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: #E8B84B; font-weight: 700; line-height: 1.3; margin: 0 0 10px; }

.jornada2-card-line { width: 32px; height: 2px; background: rgba(232,184,75,0.5); border-radius: 2px; margin-bottom: 12px; flex-shrink: 0; }

.jornada2-card-desc { font-family: var(--font-body); font-size: clamp(0.8rem, 1.3vw, 0.88rem); color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0; flex: 1; }

.jornada2-cta { text-align: center; margin-top: clamp(48px, 6vw, 80px); display: flex; flex-direction: column; align-items: center; gap: 10px; }

.jornada2-cta .cta-btn { padding: 18px 52px; font-size: clamp(1rem, 2vw, 1.15rem); border-radius: 50px; animation: ctaPulse 2.5s ease-in-out infinite; }

.jornada2-cta-sub { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

@media (max-width: 768px) {
  .section-jornada2 { padding: 60px 20px 64px; }
  .jornada2-grid { grid-template-columns: repeat(2, 1fr); }
  .jornada2-cta .cta-btn { width: 90%; max-width: 360px; white-space: normal; word-break: break-word; padding: 16px 24px; line-height: 1.4; text-align: center; }
}

@media (max-width: 480px) {
  .jornada2-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ================================================================
   SEÇÃO 12 — A RAZÃO DE TUDO
   ================================================================ */

.section-razao {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(145deg, #060000 0%, #150600 40%, #1e0900 65%, #060000 100%); overflow: hidden;
}

.section-razao::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(232,184,75,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.section-razao::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.5), transparent); z-index: 1;
}

.section-razao-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1050px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

.razao-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; margin-bottom: clamp(32px, 5vh, 52px); }

.razao-intro { text-align: center; max-width: 820px; margin: 0 auto clamp(56px, 7vw, 88px); display: flex; flex-direction: column; gap: 18px; }

.razao-intro-frase { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.45rem); color: #E8B84B; line-height: 1.65; margin: 0; text-shadow: 0 0 40px rgba(232,184,75,0.12); }

.razao-intro-p { font-family: var(--font-body); font-size: clamp(0.92rem, 1.6vw, 1.05rem); color: rgba(255,255,255,0.72); line-height: 1.85; margin: 0; }

.razao-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 48px); }

.razao-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(232,184,75,0.02) 100%);
  border: 1px solid rgba(232,184,75,0.1); border-radius: 20px;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px); text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex; flex-direction: column; align-items: center;
}

.razao-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(232,184,75,0.12); border-color: rgba(232,184,75,0.3); }

.razao-icon-wrap { width: clamp(80px, 10vw, 120px); height: clamp(80px, 10vw, 120px); margin: 0 auto clamp(20px, 3vw, 28px); position: relative; flex-shrink: 0; }

.razao-icon-wrap::before {
  content: ''; position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(232,184,75,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.razao-icon-wrap img {
  width: 100%; height: 100%; object-fit: contain; mix-blend-mode: lighten; filter: brightness(1);
  transition: transform 0.4s ease, filter 0.4s ease; position: relative; z-index: 1; display: block;
}

.razao-card:hover .razao-icon-wrap img { filter: brightness(1.2) drop-shadow(0 0 12px rgba(232,184,75,0.4)); transform: scale(1.08); }

.razao-card:nth-child(1) .razao-icon-wrap img { animation: floatIcon 5s ease-in-out infinite; animation-delay: 0s; }
.razao-card:nth-child(2) .razao-icon-wrap img { animation: floatIcon 5s ease-in-out infinite; animation-delay: 1s; }
.razao-card:nth-child(3) .razao-icon-wrap img { animation: floatIcon 5s ease-in-out infinite; animation-delay: 2s; }

.razao-card-title { font-family: var(--font-display); font-size: clamp(1rem, 1.7vw, 1.2rem); color: #E8B84B; font-weight: 700; margin: 0 0 14px; line-height: 1.3; }

.razao-card-line { width: 40px; height: 2px; background: linear-gradient(90deg, transparent, #E8B84B, transparent); margin: 0 auto 16px; flex-shrink: 0; border-radius: 2px; }

.razao-card-desc { font-family: var(--font-body); font-size: clamp(0.85rem, 1.4vw, 0.95rem); color: rgba(255,255,255,0.7); line-height: 1.8; margin: 0; }

@media (max-width: 768px) {
  .section-razao { padding: 60px 20px 64px; }
  .razao-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; width: 100%; }
  .razao-icon-wrap { width: 90px; height: 90px; }
  .razao-intro-frase { text-align: center; }
}

/* ================================================================
   SEÇÃO 13 — OFERTA ESPECIAL
   ================================================================ */

.section-oferta {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(16px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(160deg, #080100 0%, #160600 40%, #200a00 70%, #080100 100%); overflow: hidden;
}

.section-oferta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle 300px at 85% 10%, rgba(232,184,75,0.06) 0%, transparent 70%),
    radial-gradient(circle 250px at 15% 90%, rgba(232,184,75,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.section-oferta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.6), transparent); z-index: 1;
}

.section-oferta-inner {
  position: relative; z-index: 2; width: 100%; max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(28px, 4vh, 44px);
}

.oferta-titulo-externo {
  font-family: var(--font-body); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase; color: #E8B84B; text-align: center;
  text-shadow: 0 0 30px rgba(232,184,75,0.25); margin: 0;
}

.oferta-card {
  position: relative; width: 100%; max-width: 720px;
  background: linear-gradient(145deg, #2a0800 0%, #1a0500 50%, #2a0800 100%);
  border: 2px solid rgba(232,184,75,0.5); border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px); text-align: center;
  box-shadow: 0 0 0 1px rgba(232,184,75,0.1), 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(232,184,75,0.08);
  overflow: hidden; display: flex; flex-direction: column; align-items: center;
}

.oferta-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: 26px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(232,184,75,0.15) 20%, transparent 40%);
  animation: borderRotate 4s linear infinite; z-index: 0; pointer-events: none;
}

.oferta-card > * { position: relative; z-index: 1; }

.oferta-logo {
  width: clamp(120px, 18vw, 200px); height: auto; display: block;
  margin: 0 auto clamp(24px, 4vw, 36px); mix-blend-mode: lighten;
  filter: drop-shadow(0 0 20px rgba(232,184,75,0.3)); animation: floatLogo 6s ease-in-out infinite;
}

.oferta-badge-acesso {
  display: inline-block; background: linear-gradient(135deg, #E8B84B, #c49a2a); color: #1a0800;
  font-family: var(--font-body); font-size: clamp(0.9rem, 1.8vw, 1.1rem); font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 32px;
  border-radius: 50px; margin-bottom: 12px; box-shadow: 0 8px 24px rgba(232,184,75,0.35);
}

.oferta-sub-badge { font-family: var(--font-body); font-size: clamp(0.9rem, 1.5vw, 1rem); color: rgba(255,255,255,0.7); margin-bottom: 28px; display: block; }

.oferta-preco-bloco { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 32px; }

.oferta-preco-de { font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.45); text-decoration: line-through; text-decoration-color: rgba(232,184,75,0.5); margin: 0; }

.oferta-preco-por { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; color: #E8B84B; text-shadow: 0 0 30px rgba(232,184,75,0.4); line-height: 1.1; margin: 4px 0; }

.oferta-preco-vista { font-family: var(--font-body); font-size: clamp(0.9rem, 1.8vw, 1.1rem); font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; margin: 0; }

.oferta-sep { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, #E8B84B, transparent); border-radius: 2px; margin: 0 auto 32px; flex-shrink: 0; }

.oferta-btn {
  display: block; width: 100%; max-width: 520px; margin: 0 auto;
  padding: clamp(16px, 2.5vw, 22px) clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, #E8B84B 0%, #d4a032 50%, #E8B84B 100%);
  background-size: 200% 200%;
  animation: shimmerBtn 3s ease infinite, ctaPulse 2.5s ease-in-out infinite;
  color: #1a0800; font-family: var(--font-body); font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 50px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(232,184,75,0.45); line-height: 1.4; word-break: break-word;
}

.oferta-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }

.oferta-garantia { margin-top: 20px; font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

.oferta-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.oferta-pill { background: rgba(232,184,75,0.08); border: 1px solid rgba(232,184,75,0.2); border-radius: 20px; padding: 5px 14px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.75); white-space: nowrap; }

@media (max-width: 768px) {
  .section-oferta { padding: 60px 16px 64px; }
  .oferta-card { padding: 32px 20px; }
  .oferta-logo { width: clamp(100px, 40vw, 160px); }
  .oferta-preco-por { font-size: clamp(1.4rem, 8vw, 2rem); }
  .oferta-btn { width: 95%; font-size: 0.85rem; padding: 16px 20px; }
  .oferta-pills { flex-direction: column; align-items: center; }
}

/* ================================================================
   SEÇÃO 14 — GARANTIA (Risco Zero)
   ================================================================ */

.section-garantia {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(150deg, #040008 0%, #0a0012 40%, #100018 65%, #040008 100%); overflow: hidden;
}

.section-garantia::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 50% at 50% 50%, rgba(150,100,232,0.04) 0%, rgba(232,184,75,0.03) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.section-garantia::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.5), transparent); z-index: 1;
}

.section-garantia-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(32px, 5vh, 52px);
}

.garantia-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }

.garantia-intro { text-align: center; max-width: 780px; margin: 0 auto; font-family: var(--font-body); font-size: clamp(0.92rem, 1.6vw, 1.05rem); color: rgba(255,255,255,0.75); line-height: 1.85; }

.garantia-split { width: 100%; display: grid; grid-template-columns: 40% 60%; gap: clamp(32px, 5vw, 72px); align-items: center; }

.garantia-selo-col { display: flex; justify-content: center; align-items: center; position: relative; }

.garantia-selo-col::before {
  content: ''; position: absolute; width: 110%; height: 110%; border-radius: 50%;
  border: 1px dashed rgba(232,184,75,0.22); animation: ringRotate 20s linear infinite; pointer-events: none;
}

.garantia-selo-wrap { animation: sealFloat 6s ease-in-out infinite; position: relative; z-index: 1; }

.garantia-selo-img {
  width: clamp(200px, 28vw, 340px); height: auto; display: block; mix-blend-mode: lighten;
  filter: drop-shadow(0 0 30px rgba(232,184,75,0.25)) drop-shadow(0 0 60px rgba(232,184,75,0.1));
}

.garantia-texto { display: flex; flex-direction: column; gap: 0; }

.garantia-p { font-family: var(--font-body); font-size: clamp(0.88rem, 1.5vw, 1rem); color: rgba(255,255,255,0.75); line-height: 1.85; margin: 0 0 16px; }
.garantia-p strong { color: #E8B84B; font-weight: 700; }

.garantia-frase { font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 1.8vw, 1.2rem); color: #E8B84B; border-left: 3px solid #E8B84B; padding-left: 20px; margin: 24px 0; line-height: 1.55; text-shadow: 0 0 24px rgba(232,184,75,0.15); }

.garantia-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.garantia-badge { background: rgba(232,184,75,0.07); border: 1px solid rgba(232,184,75,0.2); border-radius: 20px; padding: 5px 14px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.8); white-space: nowrap; }

.garantia-cta { text-align: center; margin-top: clamp(48px, 6vw, 72px); display: flex; flex-direction: column; align-items: center; gap: 10px; }

.garantia-cta .cta-btn { padding: 18px 48px; border-radius: 50px; font-size: clamp(1rem, 2vw, 1.1rem); animation: ctaPulse 2.5s ease-in-out infinite; }

.garantia-cta-sub { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

@media (max-width: 768px) {
  .section-garantia { padding: 60px 20px 64px; }
  .garantia-split { grid-template-columns: 1fr; gap: 36px; }
  .garantia-selo-img { width: clamp(160px, 55vw, 260px); margin: 0 auto; display: block; }
  .garantia-badges { flex-wrap: wrap; }
  .garantia-cta .cta-btn { width: 90%; max-width: 360px; white-space: normal; word-break: break-word; text-align: center; padding: 16px 24px; line-height: 1.4; }
}

/* ================================================================
   SEÇÃO 15 — FAQ (Perguntas Frequentes)
   ================================================================ */

.section-faq {
  position: relative; width: 100vw;
  padding: clamp(72px, 11vh, 120px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  background: linear-gradient(155deg, #060000 0%, #120500 40%, #1a0800 65%, #060000 100%); overflow: hidden;
}

.section-faq::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,184,75,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.section-faq::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,184,75,0.45), transparent); z-index: 1;
}

.section-faq-inner {
  position: relative; z-index: 2; width: 100%; max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(32px, 5vh, 52px);
}

.faq-header { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; width: 100%; }

.faq-accordion { width: 100%; display: flex; flex-direction: column; gap: 0; }

.faq-item { border-bottom: 1px solid rgba(232,184,75,0.12); overflow: hidden; transition: background 0.3s ease; }
.faq-item:first-child { border-top: 1px solid rgba(232,184,75,0.12); }
.faq-item:hover { background: rgba(232,184,75,0.03); }

.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: clamp(18px, 2.5vw, 24px) clamp(16px, 2vw, 24px);
  background: transparent; border: none; cursor: pointer; text-align: left; gap: 16px;
}

.faq-question { font-family: var(--font-body); font-size: clamp(0.92rem, 1.6vw, 1.05rem); font-weight: 600; color: #E8B84B; line-height: 1.4; flex: 1; }

.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: rgba(232,184,75,0.1); border: 1px solid rgba(232,184,75,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #E8B84B; font-size: 1.2rem; font-weight: 300; line-height: 1;
  transition: transform 0.4s ease, background 0.3s ease; flex-shrink: 0; user-select: none;
}

.faq-item.faq-open .faq-icon { transform: rotate(45deg); background: rgba(232,184,75,0.2); }

.faq-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.45s ease, opacity 0.3s ease; }
.faq-item.faq-open .faq-body { max-height: 400px; opacity: 1; }

.faq-answer { padding: 0 clamp(16px, 2vw, 24px) clamp(18px, 2.5vw, 24px); font-family: var(--font-body); font-size: clamp(0.85rem, 1.5vw, 0.97rem); color: rgba(255,255,255,0.7); line-height: 1.85; margin: 0; }

.faq-cta-final {
  width: 100%; text-align: center; margin-top: clamp(56px, 8vw, 96px);
  padding-top: clamp(40px, 5vw, 60px); border-top: 1px solid rgba(232,184,75,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.faq-cta-frase { font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 1.8vw, 1.2rem); color: #E8B84B; line-height: 1.55; max-width: 680px; margin: 0 auto; text-shadow: 0 0 24px rgba(232,184,75,0.12); }

.faq-cta-final .cta-btn { padding: 18px 48px; border-radius: 50px; animation: ctaPulse 2.5s ease-in-out infinite; }

.faq-cta-sub { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

@media (max-width: 768px) {
  .section-faq { padding: 60px 16px 64px; }
  .faq-question { font-size: 0.9rem; }
  .faq-icon { width: 24px; height: 24px; min-width: 24px; font-size: 1rem; }
  .faq-cta-final .cta-btn { width: 95%; max-width: 360px; white-space: normal; word-break: break-word; text-align: center; padding: 16px 20px; line-height: 1.4; }
  .faq-cta-sub { font-size: 0.75rem; }
}
