/* ═══════════════════════════ RESET & CSS VARIABLES ═══════════════════════════ */
:root {
  --verde: #AADC00;
  --verde-esc: #7BAA00;
  --verde-glow: rgba(170, 220, 0, 0.25);
  --preto: #0d0d0d;
  --card-dark: #111111;
  --card-verde: linear-gradient(160deg, #1a2600 0%, #0d1800 100%);
  --borda: #222;
  --cinza: #aaa;
  --branco: #fff;
  --fonte-h: 'Oswald', sans-serif;
  --fonte-b: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--preto);
  color: var(--branco);
  font-family: var(--fonte-b);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════ UTILITÁRIOS & REUTILIZÁVEIS ═══════════════════════════ */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag-verde {
  display: inline-block;
  background: var(--verde);
  color: var(--preto);
  font-family: var(--fonte-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
}

/* ═══════════════════════════ BOTÕES ═══════════════════════════ */
.btn-verde {
  display: inline-block;
  background: linear-gradient(135deg, #AADC00, #7BAA00);
  color: var(--preto);
  font-family: var(--fonte-h);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: clamp(16px, 2vw, 20px) clamp(32px, 4vw, 56px);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 24px rgba(170, 220, 0, .35);
}

.btn-verde:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(170, 220, 0, .5);
  background: linear-gradient(135deg, #c0f000, #8dc500);
  color: var(--preto);
}

.btn-verde.grande {
  font-size: clamp(16px, 2vw, 20px);
  padding: clamp(18px, 2.5vw, 24px) clamp(40px, 5vw, 72px);
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.btn-wpp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-h);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 48px);
  border-radius: 6px;
  transition: all .25s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .3);
}

.btn-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
  color: #fff;
}

.btn-wpp svg {
  flex-shrink: 0;
}

/* ═══════════════════════════ BARRA SUPERIOR (HEADER) ═══════════════════════════ */
.top-header {
  background: #060900;
  border-bottom: 1px solid #1a2600;
  padding: 10px 24px;
  position: relative;
  z-index: 100;
  width: 100%;
}

.top-header-logo {
  display: block;
  max-width: 160px;
  filter: drop-shadow(0 0 10px rgba(170, 220, 0, 0.35));
  transition: transform 0.25s ease;
}

.top-header-logo:hover {
  transform: scale(1.03);
}

.top-header-logo img {
  width: 80%;
  height: auto;
  display: block;
}

/* ═══════════════════════════ HERO SECTION ═══════════════════════════ */
.hero {
  min-height: auto;
  padding: 24px 24px 60px;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(50, 80, 0, .5) 0%, transparent 60%), var(--preto);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fonte-h);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 700;
  color: rgba(255, 255, 255, .02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .05em;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-logo-img {
  width: clamp(150px, 20vw, 230px);
  margin-bottom: clamp(20px, 3vw, 32px);
  filter: drop-shadow(0 0 18px rgba(170, 220, 0, .55)) drop-shadow(0 0 40px rgba(170, 220, 0, .25));
}

.hero-logo-img img {
  width: 100%;
  display: block;
}

.hero-logo {
  font-family: var(--fonte-h);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vw, 32px);
  display: none;
}

.hero-logo span {
  color: var(--verde);
}

.hero-pretitulo {
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--verde);
  font-family: var(--fonte-h);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-h1 {
  font-family: var(--fonte-h);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-h1 .verde {
  color: var(--verde);
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #bbb;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.hero-sub strong {
  color: #fff;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* VSL Player */
.vsl-box {
  background: #000;
  border: 2px solid #1e2e00;
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 16px;
  box-shadow: 0 0 40px rgba(170, 220, 0, .15);
}

.vsl-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(50, 80, 0, .4) 0%, transparent 70%);
}

.vsl-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  z-index: 2;
}

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

.vsl-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 30px rgba(170, 220, 0, .5);
  transition: transform .2s;
}

.vsl-box:hover .vsl-play {
  transform: scale(1.1);
}

.icon-svg {
  display: inline-flex;
  width: 1em;
  height: 1em;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
}

.icon-inline {
  display: inline-flex;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 2px;
}

.icon-inline svg {
  width: 100%;
  height: 100%;
}

.icon-play {
  width: 28px;
  height: 28px;
  color: #000;
}

.vsl-lbl {
  font-family: var(--fonte-h);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #999;
}

.vsl-sub {
  font-size: 12px;
  color: #444;
  margin-top: 4px;
}

.vsl-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--verde);
  color: #000;
  font-family: var(--fonte-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.hero-right {
  align-self: start;
}

/* Foto hero cutout */
.hero-foto {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  align-self: start;
}

.hero-foto img {
  width: 80%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 50px rgba(170, 220, 0, 0.2));
}

.foto-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 16, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(170, 220, 0, 0.4);
  padding: 10px 24px;
  border-radius: 30px;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.foto-overlay strong {
  font-family: var(--fonte-h);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  letter-spacing: .05em;
}

.foto-overlay span {
  font-size: 11px;
  color: var(--verde);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ═══════════════════════════ TRUST BAR ═══════════════════════════ */
.trust-bar {
  background: #000;
  border-top: 1px solid #1a2600;
  border-bottom: 1px solid #1a2600;
  padding: 0;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #1a2600;
}

.trust-item {
  background: linear-gradient(180deg, #0f1a00 0%, #080f00 100%);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 24px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.trust-icon {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--verde);
  filter: drop-shadow(0 0 8px var(--verde));
}

.trust-lbl {
  font-family: var(--fonte-h);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--verde);
  letter-spacing: .08em;
}

/* ═══════════════════════════ PARA QUEM É ═══════════════════════════ */
.para-quem {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--preto);
}

.pq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pq-foto {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 2px solid #1e2e00;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: 0 0 60px rgba(170, 220, 0, .08);
}

.pq-foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pq-texto h2 {
  font-family: var(--fonte-h);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.pq-texto h2 .verde {
  color: var(--verde);
}

.pq-texto p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 14px;
}

.pq-texto p strong {
  color: #fff;
}

.pq-checks {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(13px, 1.3vw, 14px);
  color: #ccc;
  line-height: 1.5;
}

.check-item::before {
  content: '✓';
  color: var(--verde);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════ PROBLEMAS ═══════════════════════════ */
.problemas {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23152000' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(180deg, #080d00 0%, #0d0d0d 100%);
}

.prob-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.prob-titulo {
  font-family: var(--fonte-h);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}

.prob-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #999;
  margin-bottom: clamp(40px, 5vw, 60px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.prob-card {
  background: linear-gradient(160deg, #1a2600 0%, #0a1000 100%);
  border: 1px solid #2a3a00;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(170, 220, 0, .15);
}

.prob-icon-wrap {
  width: clamp(64px, 8vw, 80px);
  height: clamp(64px, 8vw, 80px);
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3a00, #1a2600);
  border: 2px solid #3a5000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--verde);
}

.prob-label {
  background: linear-gradient(135deg, #AADC00, #7BAA00);
  color: #000;
  font-family: var(--fonte-h);
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.prob-desc {
  font-size: clamp(12px, 1.3vw, 14px);
  color: #aaa;
  line-height: 1.7;
  text-align: center;
}

/* ═══════════════════════════ PROGRAMAS ═══════════════════════════ */
.programas {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--preto);
}

.prog-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.prog-titulo {
  font-family: var(--fonte-h);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.prog-sub {
  text-align: center;
  color: #999;
  font-size: clamp(13px, 1.4vw, 15px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.prog-card {
  background: linear-gradient(160deg, #131a00 0%, #0a0d00 100%);
  border: 1px solid #2a3a00;
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 2.5vw, 28px);
  transition: all .25s;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prog-card:hover {
  transform: translateY(-4px);
  border-color: var(--verde);
  box-shadow: 0 8px 40px rgba(170, 220, 0, .2);
}

.prog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde), var(--verde-esc));
  opacity: 0;
  transition: opacity .3s;
}

.prog-card:hover::before {
  opacity: 1;
}

.prog-destaque {
  border-color: var(--verde);
  background: linear-gradient(160deg, #1a2600 0%, #0d1600 100%);
}

.prog-destaque::before {
  opacity: 1;
}

.prog-badge-pop {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--verde);
  color: #000;
  font-family: var(--fonte-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.prog-icon {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 14px;
  color: var(--verde);
}

.prog-nome {
  font-family: var(--fonte-h);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 6px;
}

.prog-tagline {
  font-size: clamp(12px, 1.2vw, 13px);
  color: #777;
  font-style: italic;
  margin-bottom: 16px;
}

.prog-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.prog-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(12px, 1.2vw, 13px);
  color: #bbb;
  line-height: 1.45;
}

.prog-item::before {
  content: '▸';
  color: var(--verde);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.prog-preco {
  border-top: 1px solid #2a3a00;
  padding-top: 16px;
  margin-top: auto;
}

.prog-valor {
  font-family: var(--fonte-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
}

.prog-valor span {
  font-size: 14px;
  color: #777;
  font-family: var(--fonte-b);
  font-weight: 400;
}

.prog-parcela {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

.prog-horario {
  font-size: 11px;
  color: var(--verde);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ═══════════════════════════ AULA EXPERIMENTAL ═══════════════════════════ */
.experimental {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: linear-gradient(180deg, #0a0f00 0%, #0d0d0d 100%);
}

.exp-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a2600;
  border: 1px solid var(--verde);
  border-radius: 40px;
  padding: 8px 20px;
  font-family: var(--fonte-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.exp-h2 {
  font-family: var(--fonte-h);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.exp-h2 .verde {
  color: var(--verde);
}

.exp-p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #bbb;
  line-height: 1.75;
  margin-bottom: clamp(32px, 4vw, 48px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.exp-preco-box {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: #0a1000;
  border: 2px solid var(--verde);
  border-radius: 12px;
  padding: 20px 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.exp-preco-val {
  font-family: var(--fonte-h);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--verde);
}

.exp-preco-info {
  text-align: left;
}

.exp-preco-info strong {
  display: block;
  font-family: var(--fonte-h);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}

.exp-preco-info span {
  font-size: 12px;
  color: #777;
}

.exp-obs {
  font-size: 12px;
  color: #666;
  margin-top: 12px;
  letter-spacing: .05em;
}

/* ═══════════════════════════ DEPOIMENTOS ═══════════════════════════ */
.depos {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23152000' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(180deg, #0d0d0d 0%, #080d00 50%, #0d0d0d 100%);
}

.dep-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dep-titulo {
  font-family: var(--fonte-h);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.dep-titulo span {
  color: var(--verde);
}

.dep-sub {
  text-align: center;
  color: #999;
  font-size: clamp(13px, 1.4vw, 15px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.dep-card {
  background: linear-gradient(160deg, #1a2600 0%, #0a0d00 100%);
  border: 1px solid #2a3a00;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.dep-aspas {
  font-family: var(--fonte-h);
  font-size: 80px;
  color: rgba(170, 220, 0, .1);
  line-height: .8;
  display: block;
  margin-bottom: 8px;
}

.dep-texto {
  font-size: clamp(12px, 1.3vw, 14px);
  color: #ccc;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e2e00;
  border: 2px solid var(--verde);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--verde);
}

.dep-nome strong {
  display: block;
  font-family: var(--fonte-h);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.dep-nome span {
  font-size: 11px;
  color: var(--verde);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* WPP screenshots */
.wpp-grid {
  margin-top: clamp(32px, 4vw, 48px);
}

.wpp-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s;
  height: 100%;
}

.wpp-card:hover {
  transform: translateY(-3px);
}

.wpp-header {
  background: #1a2600;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wpp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.wpp-bar {
  background: #0f1800;
  padding: clamp(12px, 2vw, 20px);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #555;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ═══════════════════════════ SOBRE MARINELSO ═══════════════════════════ */
.sobre {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--preto);
}

.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-foto {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 2px solid #1e2e00;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 0 60px rgba(170, 220, 0, .1);
}

.sobre-foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-texto h2 {
  font-family: var(--fonte-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.sobre-texto h2 .verde {
  color: var(--verde);
}

.sobre-texto p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 14px;
}

.sobre-texto p strong {
  color: #fff;
}

.sobre-numeros {
  background: #1e2e00;
  border: 1px solid #1e2e00;
  border-radius: 10px;
  overflow: hidden;
  margin: 28px 0;
}

.num-box {
  background: #0a1000;
  padding: clamp(14px, 2vw, 20px);
  text-align: center;
}

.num-val {
  font-family: var(--fonte-h);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--verde);
  display: block;
}

.num-lbl {
  font-size: clamp(9px, 1vw, 11px);
  color: #777;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ═══════════════════════════ LOCALIZAÇÃO ═══════════════════════════ */
.localizacao {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: linear-gradient(180deg, #080d00 0%, #0d0d0d 100%);
}

.loc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.loc-titulo {
  font-family: var(--fonte-h);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.loc-titulo span {
  color: var(--verde);
}

.loc-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(13px, 1.3vw, 15px);
  color: #bbb;
}

.loc-item strong {
  color: #fff;
}

.loc-emoji {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--verde);
}

.horarios-titulo {
  font-family: var(--fonte-h);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 14px;
  letter-spacing: .08em;
}

.horario-tabela {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hor-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #0a1000;
  border: 1px solid #1e2e00;
  border-radius: 6px;
  font-size: clamp(12px, 1.3vw, 14px);
}

.hor-dia {
  color: #bbb;
}

.hor-hora {
  color: var(--verde);
  font-family: var(--fonte-h);
  font-weight: 700;
  letter-spacing: .08em;
}

.mapa-box {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #1e2e00;
  background: #111;
  aspect-ratio: 4/3;
}

.mapa-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mapa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0a1000;
  border: 1px solid var(--verde);
  border-radius: 8px;
  padding: 14px;
  margin-top: 12px;
  font-family: var(--fonte-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
}

.mapa-link:hover {
  background: #1a2600;
  color: var(--verde);
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--preto);
}

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

.faq-titulo {
  font-family: var(--fonte-h);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.faq-titulo span {
  color: var(--verde);
}

.faq-item {
  border-bottom: 1px solid #1e2e00;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2.5vw, 24px) 0;
  cursor: pointer;
  gap: 16px;
  transition: color .2s;
}

.faq-q:hover .faq-qtxt {
  color: var(--verde);
}

.faq-qtxt {
  font-family: var(--fonte-h);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .05em;
}

.faq-arrow {
  color: var(--verde);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

.faq-r {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #999;
  line-height: 1.75;
  padding-bottom: clamp(16px, 2vw, 22px);
  display: none;
}

.faq-item.open .faq-r {
  display: block;
}

/* ═══════════════════════════ CTA FINAL ═══════════════════════════ */
.cta-final {
  padding: clamp(80px, 10vw, 120px) 24px;
  background: radial-gradient(ellipse at center, rgba(40, 70, 0, .6) 0%, var(--preto) 70%);
  text-align: center;
  border-top: 1px solid #1e2e00;
}

.cta-h2 {
  font-family: var(--fonte-h);
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 16px;
}

.cta-h2 .verde {
  color: var(--verde);
}

.cta-p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #bbb;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(11px, 1.2vw, 13px);
  color: #777;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cta-trust-icon {
  font-size: 20px;
  color: var(--verde);
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
  background: #000;
  border-top: 1px solid #1a2600;
  padding: clamp(32px, 4vw, 48px) 24px;
  text-align: center;
}

.footer-logo-img {
  width: clamp(100px, 15vw, 160px);
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 14px rgba(170, 220, 0, .4));
}

.footer-logo-img img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-logo {
  font-family: var(--fonte-h);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--verde);
}

.footer-copy {
  font-size: clamp(11px, 1.2vw, 13px);
  color: #444;
  letter-spacing: .05em;
}

/* ═══════════════════════════ REGRAS RESPONSIVAS ═══════════════════════════ */
@media(max-width: 960px) {
  .hero-right {
    display: none !important;
  }

  .hero-h1{
    font-size: 25px;
  }

  .hero-sub {
    display: none !important;
  }

  .container-custom {
    padding: 0 0px;
  }

  .pq-foto {
    aspect-ratio: 4/3;
  }

  .sobre-foto {
    aspect-ratio: 4/3;
  }
}

@media(max-width: 600px) {
  .vsl-box {
    aspect-ratio: 9/16;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    align-items: stretch;
  }

  .btn-wpp {
    justify-content: center;
  }

  .exp-preco-box {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }

  .cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}