*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #181818;
  --bg-4: #222222;
  --text: #F5F0E8;
  --text-muted: #8A8070;
  --text-dim: #5A5248;
  --red: #E02020;
  --green: #3CB87A;
  --border: rgba(212, 168, 67, 0.18);
  --border-dim: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TOPBAR */
.topbar {
  background: var(--red);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dim);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
}

/* BANNER — imediatamente após a nav, sem margin/gap */
.banner-wrapper {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.banner-wrapper picture {
  display: block;
  width: 100%;
}

.banner-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* HERO
   ─────────────────────────────────────────
   FIX 1: min-height base garante que o hero
   nunca colapse nem fique sem altura mínima
   mesmo em breakpoints intermediários.
   As media queries abaixo sobrescrevem
   conforme necessário.
───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Wrapper do picture solto no fundo */
.hero picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   FIX 2: height: 100% + object-fit: cover
   garante que a imagem SEMPRE preencha
   todo o container sem espaço preto,
   independente do aspect-ratio da tela.
   object-position controla o foco visual.
───────────────────────────────────────── */
.hero picture img {
  width: 100%;
  height: 100%;
  opacity: 30%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* Máscara que funde a borda inferior com o fundo escuro */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
  margin-top: 40px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 28px);
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-desc {
  max-width: 560px;
  font-size: 17px;
  color: rgba(245, 240, 232, 0.72);
  margin: 0 auto 44px;
  line-height: 1.85;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  padding: 18px 48px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.3);
}

/* PAIN */
.pain {
  background: var(--bg-2);
  padding: 80px 24px;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.section-inner {
  max-width: 880px;
  margin: 0 auto;
}

.pain-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 46px);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pain-headline em {
  font-style: italic;
  color: var(--gold);
}

.pain-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}

.pain-item {
  background: var(--bg-2);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-icon {
  font-size: 26px;
  line-height: 1;
}

.pain-item h3 {
  font-size: 15px;
  font-weight: 600;
}

.pain-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* VIDEO */
.video-section {
  padding: 100px 24px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 44px;
}

/* VIDEO PLAYER */
.video-wrapper {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  transition: opacity 0.25s ease;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 84px;
  height: 84px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.play-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  margin-left: 5px;
}

.video-wrapper:hover .play-btn {
  background: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.5);
}

.video-wrapper:hover .play-btn svg {
  fill: #000;
}

.pause-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.pause-icon.show {
  opacity: 1;
  animation: fadeoutPause 0.8s ease 0.4s forwards;
}

@keyframes fadeoutPause {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.pause-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(212, 168, 67, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pause-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

/* LEARN */
.learn-section {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.learn-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  padding: 30px 26px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.learn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.learn-card:hover {
  border-color: var(--border);
}

.learn-card:hover::before {
  transform: scaleX(1);
}

.learn-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: rgba(212, 168, 67, 0.1);
  line-height: 1;
  margin-bottom: 14px;
}

.learn-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.learn-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* INSTRUCTOR */
.instructor-section {
  padding: 100px 24px;
  overflow: hidden;
}

.instructor-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.instructor-photo {
  position: relative;
}

.instructor-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}

.instructor-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg), transparent);
}

.instructor-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 11px;
  padding: 7px 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.instructor-text .section-label {
  display: block;
  text-align: left;
}

.instructor-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 22px;
}

.instructor-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.instructor-text p {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.85;
  margin-bottom: 14px;
}

.instructor-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dim);
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* OFFER */
.offer-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
}

.offer-card {
  max-width: 540px;
  margin: 52px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.offer-card-header {
  background: var(--gold);
  padding: 14px 32px;
}

.offer-card-header span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
}

.offer-card-body {
  padding: 40px 40px 48px;
}

.price-original {
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 84px);
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.01em;
}

.price-main span {
  font-size: 38px;
  color: var(--gold);
  vertical-align: super;
}

.price-installment {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 32px;
}

.offer-perks {
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.offer-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.85);
}

.perk-check {
  width: 20px;
  height: 20px;
  background: rgba(60, 184, 122, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}

.btn-offer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 17px;
  padding: 20px 32px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-offer:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(212, 168, 67, 0.35);
}

.offer-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
}

.offer-guarantee {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(60, 184, 122, 0.06);
  border: 1px solid rgba(60, 184, 122, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.guarantee-icon {
  font-size: 34px;
  flex-shrink: 0;
}

.offer-guarantee h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.offer-guarantee p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BONUS */
.bonus-block {
  margin-bottom: 28px;
  border: 2px solid var(--red);
  border-radius: 4px;
  overflow: hidden;
}

.bonus-header {
  background: var(--red);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-header span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fff;
}

.bonus-body {
  background: rgba(224, 32, 32, 0.06);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bonus-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bonus-item span {
  font-size: 15px;
  color: var(--text);
}

.bonus-extra {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(224, 32, 32, 0.2);
  font-size: 14px;
  color: rgba(224, 32, 32, 0.9);
  font-style: italic;
  font-weight: 500;
}

/* FAQ */
.faq-section {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 52px;
}

.faq-item {
  border-bottom: 1px solid var(--border-dim);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  fill: none;
  stroke-width: 2;
}

.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

/* URGENCY */
.urgency {
  background: var(--red);
  padding: 18px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.urgency p {
  font-size: 15px;
  font-weight: 500;
}

.urgency a {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CLOSING CTA */
.closing-cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.closing-content p.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.closing-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4.5vw, 54px);
  line-height: 1.18;
  margin-bottom: 22px;
}

.closing-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.closing-content p.desc {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

/* FOOTER */
footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border-dim);
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* FLOATING */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 13px 22px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.4);
  transition: all 0.2s;
  transform: translateY(80px);
  opacity: 0;
}

.floating-btn.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-btn:hover {
  background: var(--gold-light);
}

.whatsapp-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ========================
   RESPONSIVIDADE COMPLETA
======================== */

/* Mobile pequeno (< 480px) */
@media (max-width: 479px) {
  nav {
    display: none;
  }

  .topbar {
    font-size: 11px;
    padding: 8px 14px;
  }

  /* Hero: usa a versão story em tela pequena */
  .hero {
    min-height: 0;
    display: block;
  }

  .hero picture {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    display: block;
  }

  .hero picture img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  .hero-overlay {
    inset: 0;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    padding: 24px 16px 32px;
  }

  .hero-eyebrow {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero-cta-group {
    padding-bottom: 40px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 16px 28px;
  }

  .pain {
    padding: 52px 16px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-item {
    padding: 22px 16px;
  }

  .pain-headline {
    font-size: clamp(22px, 6vw, 32px);
  }

  .pain-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .video-section {
    padding: 52px 16px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .section-desc {
    font-size: 14px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn svg {
    width: 22px;
    height: 22px;
  }

  .learn-section {
    padding: 52px 16px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .learn-card {
    padding: 22px 18px;
  }

  .instructor-section {
    padding: 52px 16px;
  }

  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .instructor-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .instructor-stats {
    gap: 24px;
  }

  .offer-section {
    padding: 52px 16px;
  }

  .offer-card-body {
    padding: 24px 18px 32px;
  }

  .offer-card-header {
    padding: 12px 18px;
  }

  .offer-card-header span {
    font-size: 10px;
  }

  .price-main {
    font-size: 64px;
  }

  .price-main span {
    font-size: 28px;
  }

  .btn-offer {
    font-size: 15px;
    padding: 18px 20px;
  }

  .bonus-header span {
    font-size: 16px;
  }

  .bonus-item span {
    font-size: 14px;
  }

  .faq-section {
    padding: 52px 16px;
  }

  .faq-q {
    font-size: 14px;
    padding: 18px 0;
  }

  .closing-cta {
    padding: 72px 16px;
  }

  .closing-content h2 {
    font-size: clamp(22px, 6vw, 36px);
  }

  .closing-content p.desc {
    font-size: 14px;
  }

  .floating-cta {
    bottom: 14px;
    right: 14px;
  }

  .floating-btn {
    font-size: 12px;
    padding: 11px 16px;
  }

  .whatsapp-btn {
    width: 46px;
    height: 46px;
  }

  footer {
    padding: 36px 16px;
  }

  .footer-links {
    gap: 16px;
  }
}

/* Mobile médio (480px – 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 0;
    display: block;
  }

  .hero picture {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    display: block;
  }

  .hero picture img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  .hero-overlay {
    inset: 0;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    padding: 24px 16px 32px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-cta-group {
    padding-bottom: 40px;
  }

  .pain {
    padding: 60px 20px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .video-section {
    padding: 60px 20px;
  }

  .play-btn {
    width: 68px;
    height: 68px;
  }

  .learn-section {
    padding: 60px 20px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .instructor-section {
    padding: 60px 20px;
  }

  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .instructor-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .offer-section {
    padding: 60px 20px;
  }

  .offer-card-body {
    padding: 28px 22px 36px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .closing-cta {
    padding: 80px 20px;
  }

  footer {
    padding: 40px 20px;
  }
}

/* Tablet (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  nav {
    padding: 14px 28px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100vh;
  }

  .hero picture img {
    object-fit: cover;
    object-position: center top;
  }

  .pain {
    padding: 70px 28px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-section {
    padding: 70px 28px;
  }

  .learn-section {
    padding: 70px 28px;
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructor-section {
    padding: 70px 28px;
  }

  .instructor-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
  }

  .offer-section {
    padding: 70px 28px;
  }

  .offer-card-body {
    padding: 32px 28px 40px;
  }

  .faq-section {
    padding: 70px 28px;
  }

  .closing-cta {
    padding: 90px 28px;
  }

  footer {
    padding: 44px 28px;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learn-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero picture img {
    object-position: center center;
  }
}

/* iPad e Tablet Grande (1024px – 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .hero {
    min-height: 100vh;
  }

  .hero picture img {
    object-fit: cover;
    object-position: center top;
  }
}

/* Desktop Grande */
@media (min-width: 1367px) {
  .hero {
    min-height: 100vh;
  }
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-sub {
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-desc {
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-cta-group {
  animation: fadeUp 0.7s 0.4s ease both;
}
