/* ==========================================================================
   Universo Ukulele — LP_REDESIGN / style.css
   Versão B — Design completamente novo
   ========================================================================== */

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0D0D0D;
  color: #FFF8EC;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

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

ul { list-style: none; }

/* --------------------------------------------------------------------------
   TOKENS
   -------------------------------------------------------------------------- */
:root {
  --vinho:    #6B1010;
  --vinho-d:  #4A0A0A;
  --caramel:  #E8C896;
  --caramel-d:#C9A574;
  --creme:    #FFF8EC;
  --preto:    #0D0D0D;
  --cinza:    #1A1A1A;
  --cinza-2:  #2A2A2A;
  --branco:   #FFFFFF;
  --r: 1440px;
}

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}

.section-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--creme);
  margin-bottom: 16px;
}

.section-h2 span { color: var(--caramel); }

.section-p {
  font-size: 17px;
  color: rgba(255,248,236,0.75);
  line-height: 1.65;
}

/* Fade-in via IntersectionObserver */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn-hero,
.btn-primary {
  display: block;
  width: fit-content;
  max-width: 480px;
  background: var(--vinho);
  color: var(--creme);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 18px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(107,16,16,0.55);
}

.btn-hero:hover,
.btn-primary:hover {
  background: #7A1515;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(107,16,16,0.7);
}

.btn-hero:active,
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(107,16,16,0.5);
}

.btn-large {
  font-size: 17px;
  padding: 20px 40px;
  width: 100%;
  max-width: 520px;
}

@keyframes btn-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(107,16,16,0.55); }
  50%      { box-shadow: 0 6px 36px rgba(107,16,16,0.85), 0 0 0 6px rgba(107,16,16,0.15); }
}

.btn-hero {
  animation: btn-pulse 2.5s ease-in-out infinite;
  font-size: 17px;
  padding: 20px 36px;
  width: 100%;
  max-width: 460px;
}

.btn-hero:hover { animation: none; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,200,150,0.1);
  transition: box-shadow 0.3s;
}

#header.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.header__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.header__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--caramel);
  border: 1px solid rgba(232,200,150,0.35);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
}

.header__cta:hover {
  background: var(--caramel);
  color: var(--preto);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
#hero {
  background: var(--preto);
  padding: 60px 20px 80px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* ---- Coluna copy ---- */
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--caramel);
  background: rgba(232,200,150,0.08);
  border: 1px solid rgba(232,200,150,0.2);
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--creme);
  margin-bottom: 20px;
}

.hero__h1 span { color: var(--caramel); }

.hero__sub {
  font-size: 18px;
  color: rgba(255,248,236,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ---- Price card ---- */
@keyframes price-glow {
  0%,100% {
    border-color: rgba(232,200,150,0.35);
    box-shadow: 0 0 0 0 transparent, 0 8px 40px rgba(107,16,16,0.35);
  }
  50% {
    border-color: rgba(232,200,150,0.75);
    box-shadow: 0 0 30px 6px rgba(232,200,150,0.12), 0 8px 40px rgba(107,16,16,0.5);
  }
}

.hero__price-card {
  background: linear-gradient(135deg, rgba(74,10,10,0.9) 0%, rgba(40,5,5,0.95) 100%);
  border: 2px solid rgba(232,200,150,0.35);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 28px;
  text-align: center;
  animation: price-glow 2.8s ease-in-out infinite;
}

.price-from {
  font-size: 15px;
  color: rgba(232,200,150,0.55);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-por {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,248,236,0.6);
  margin-bottom: 8px;
}

.price-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 12vw, 88px);
  font-weight: 900;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(232,200,150,0.2);
}

.price-install {
  font-size: 13px;
  color: rgba(255,248,236,0.6);
  margin-bottom: 16px;
}

.price-countdown {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(232,200,150,0.15);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 13px;
  color: rgba(255,248,236,0.65);
  white-space: nowrap;
}

.countdown-timer {
  font-family: 'Inter', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--caramel);
  letter-spacing: 0.04em;
}

/* ---- Pills ---- */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--caramel-d);
  background: rgba(232,200,150,0.07);
  border: 1px solid rgba(232,200,150,0.18);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ---- Photo column (desktop only) ---- */
.hero__photo-col {
  display: none;
}

/* --------------------------------------------------------------------------
   NÚMEROS
   -------------------------------------------------------------------------- */
#numeros {
  background: var(--vinho-d);
  padding: 48px 20px;
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.numero-item { }

.numero-val {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 6px;
}

.numero-label {
  font-size: 14px;
  color: rgba(255,248,236,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   VOCÊ vs YOUTUBE
   -------------------------------------------------------------------------- */
#youtube-section {
  background: #F9F5EE;
  padding: 80px 20px;
}

.yt__header { text-align: center; }

.yt__table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  max-width: 800px;
  margin: 0 auto;
}

.yt__col {
  padding: 36px 32px;
}

.yt__col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.yt__col ul { display: flex; flex-direction: column; gap: 12px; }

.yt__col li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 4px;
}

.yt__col--youtube {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #eee;
}

.yt__col--youtube h3 { color: #888; }

.yt__col--youtube li { color: #555; }

.yt__col--method {
  background: var(--vinho-d);
  color: var(--creme);
}

.yt__col--method h3 { color: var(--caramel); }

.yt__col--method li { color: rgba(255,248,236,0.85); }

.btn-primary[style*="color:#0D0D0D"],
#youtube-section .btn-primary {
  background: var(--vinho);
  color: var(--creme);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   DEPOIMENTOS CARROSSEL
   -------------------------------------------------------------------------- */
#depoimentos {
  background: var(--preto);
  padding: 80px 20px;
}

.depo__header { text-align: center; }

/* Wrapper com largura máxima centralizada */
.depo-carrossel-wrapper {
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Track com scroll-snap */
.depo-carrossel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
  padding-bottom: 4px;
}

.depo-carrossel::-webkit-scrollbar { display: none; }

/* Cada slide ocupa 100% do wrapper */
.depo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.depo-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* Indicadores (bolinhas) */
.depo-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.depo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(232,200,150,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.depo-dot.active {
  background: #E8C896;
  transform: scale(1.35);
}

/* --------------------------------------------------------------------------
   PARA QUEM É
   -------------------------------------------------------------------------- */
#para-quem {
  background: var(--cinza);
  padding: 80px 20px;
}

.pq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}

.pq-card {
  background: var(--cinza-2);
  border: 1px solid rgba(232,200,150,0.12);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.pq-card:hover {
  border-color: rgba(232,200,150,0.3);
  transform: translateY(-4px);
}

.pq-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
}

.pq-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--caramel);
  margin-bottom: 10px;
}

.pq-card p {
  font-size: 15px;
  color: rgba(255,248,236,0.7);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SOBRE MATHEUS
   -------------------------------------------------------------------------- */
#sobre {
  background: var(--preto);
  padding: 80px 20px;
}

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

.sobre__foto {
  border-radius: 12px;
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  border: 2px solid rgba(232,200,150,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.sobre__foto img {
  width: 100%;
  height: auto;
}

.sobre__texto .section-h2 span { color: var(--caramel); }

.sobre__texto p {
  font-size: 16px;
  color: rgba(255,248,236,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sobre__nums {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,200,150,0.12);
}

.sobre__nums > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sobre__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--caramel);
}

.sobre__nlabel {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,248,236,0.5);
}

/* --------------------------------------------------------------------------
   MÓDULOS / CONTEÚDO
   -------------------------------------------------------------------------- */
#conteudo {
  background: var(--cinza);
  padding: 80px 20px;
}

.modulos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.modulo {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cinza-2);
  border: 1px solid rgba(232,200,150,0.1);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.2s;
}

.modulo:hover { border-color: rgba(232,200,150,0.28); }

.mod-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(232,200,150,0.25);
  min-width: 44px;
  line-height: 1;
  padding-top: 2px;
}

.modulo h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--caramel);
  margin-bottom: 4px;
}

.modulo p {
  font-size: 14px;
  color: rgba(255,248,236,0.6);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   BÔNUS
   -------------------------------------------------------------------------- */
#bonus {
  background: var(--preto);
  padding: 80px 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.bonus-card {
  background: var(--cinza);
  border: 1px solid rgba(232,200,150,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s, transform 0.25s;
}

.bonus-card:hover {
  border-color: rgba(232,200,150,0.3);
  transform: translateY(-4px);
}

.bonus-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--caramel-d);
  padding: 4px 10px;
  background: rgba(232,200,150,0.08);
  border: 1px solid rgba(232,200,150,0.18);
  border-radius: 4px;
  width: fit-content;
}

.bonus-tag--gold {
  color: #D4A017;
  background: rgba(212,160,23,0.08);
  border-color: rgba(212,160,23,0.2);
}

.bonus-tag--green {
  color: #5CB85C;
  background: rgba(92,184,92,0.08);
  border-color: rgba(92,184,92,0.2);
}

.bonus-ico {
  font-size: 36px;
}

.bonus-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--creme);
}

.bonus-card p {
  font-size: 14px;
  color: rgba(255,248,236,0.65);
  line-height: 1.6;
}

.bonus-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--caramel);
  margin-top: 4px;
}

.bonus-card--gold {
  border-color: rgba(212,160,23,0.25);
  background: linear-gradient(135deg, #1A1500 0%, var(--cinza) 100%);
}

.bonus-card--platform {
  border-color: rgba(92,184,92,0.2);
}

.bonus-card--platform ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.bonus-card--platform li {
  font-size: 14px;
  color: rgba(255,248,236,0.75);
}

/* ---- Total box ---- */
.bonus-total {
  background: linear-gradient(135deg, rgba(74,10,10,0.95) 0%, rgba(40,5,5,0.98) 100%);
  border: 2px solid rgba(232,200,150,0.3);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
}

.bt-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,248,236,0.5);
  margin-bottom: 8px;
}

.bt-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  color: var(--caramel);
  margin-bottom: 8px;
}

.bt-sub {
  font-size: 14px;
  color: rgba(255,248,236,0.55);
  margin-bottom: 28px;
}

.bt-cta-box { }

.bt-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 16px;
}

.bt-price strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--caramel);
}

/* --------------------------------------------------------------------------
   OFERTA
   -------------------------------------------------------------------------- */
#oferta {
  background: var(--cinza);
  padding: 80px 20px;
}

.oferta__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.oferta__countdown {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(232,200,150,0.15);
  border-radius: 10px;
  padding: 16px 24px;
  margin: 24px 0;
}

.oferta__countdown .countdown-label {
  font-size: 13px;
  color: rgba(255,248,236,0.6);
  display: block;
  margin-bottom: 6px;
}

.oferta__countdown .countdown-timer {
  font-size: 44px;
  font-weight: 900;
  color: var(--caramel);
  letter-spacing: 0.06em;
}

.oferta__lista {
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oferta__lista li {
  font-size: 15px;
  color: rgba(255,248,236,0.8);
  padding-left: 20px;
  position: relative;
}

.oferta__lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--caramel);
  font-weight: 700;
}

.oferta__price {
  background: rgba(74,10,10,0.7);
  border: 1px solid rgba(232,200,150,0.25);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.op-from {
  font-size: 15px;
  color: rgba(232,200,150,0.45);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.op-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,248,236,0.5);
  margin-bottom: 8px;
}

.op-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 10vw, 72px);
  font-weight: 900;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 8px;
}

.op-install {
  font-size: 13px;
  color: rgba(255,248,236,0.5);
}

.selos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,248,236,0.5);
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   GARANTIA
   -------------------------------------------------------------------------- */
#garantia {
  background: var(--preto);
  padding: 80px 20px;
}

.garantia__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.garantia__inner p {
  font-size: 16px;
  color: rgba(255,248,236,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}

.garantia__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--caramel);
  background: rgba(232,200,150,0.07);
  border: 1px solid rgba(232,200,150,0.2);
  padding: 10px 20px;
  border-radius: 24px;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
#faq {
  background: var(--cinza);
  padding: 80px 20px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border-bottom: 1px solid rgba(232,200,150,0.1);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--creme);
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item label:hover { color: var(--caramel); }

.faq-icon {
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  color: var(--caramel);
  transition: transform 0.3s ease;
  min-width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 15px;
  color: rgba(255,248,236,0.7);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-item input:checked ~ .faq-answer { max-height: 400px; }

.faq-item input:checked ~ label .faq-icon { transform: rotate(45deg); }

.faq-item input:checked ~ label { color: var(--caramel); }

/* --------------------------------------------------------------------------
   CTA FINAL
   -------------------------------------------------------------------------- */
#cta-final {
  background: linear-gradient(135deg, var(--vinho-d) 0%, #1A0505 100%);
  padding: 80px 20px;
  text-align: center;
}

.ctafinal__inner {
  max-width: 600px;
  margin: 0 auto;
}

.ctafinal__h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--creme);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ctafinal__sub {
  font-size: 17px;
  color: rgba(255,248,236,0.7);
  margin-bottom: 28px;
}

.ctafinal__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ctafinal__price small {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,248,236,0.5);
  line-height: 1.4;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
#footer {
  background: #080808;
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,248,236,0.4);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--caramel); }

.footer__disc {
  font-size: 12px;
  color: rgba(255,248,236,0.25);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   STICKY CTA MOBILE
   -------------------------------------------------------------------------- */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: var(--preto);
  border-top: 1px solid rgba(232,200,150,0.15);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

#sticky-cta.sticky-cta--visible { transform: translateY(0); }

.sticky-btn {
  display: block;
  width: 100%;
  background: var(--vinho);
  color: var(--creme);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  padding: 16px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(107,16,16,0.5);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — 600px+
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .numeros__grid { grid-template-columns: repeat(4, 1fr); }

  .depo-carrossel-wrapper { max-width: 480px; }

  .pq-grid { grid-template-columns: repeat(3, 1fr); }

  .yt__table { grid-template-columns: 1fr 1fr; }
  .yt__col--youtube { border-bottom: none; border-right: 2px solid #eee; }

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

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

/* --------------------------------------------------------------------------
   RESPONSIVE — 900px+
   -------------------------------------------------------------------------- */
@media (min-width: 900px) {
  #hero {
    padding: 60px 40px 80px;
  }

  .hero__wrap {
    grid-template-columns: 54% 46%;
    gap: 48px;
  }

  .hero__photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__photo-frame {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(232,200,150,0.2);
    box-shadow: 0 16px 60px rgba(0,0,0,0.6);
  }

  .hero__photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__photo-badge {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,248,236,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .depo-carrossel-wrapper { max-width: 420px; }

  .bonus-grid { grid-template-columns: repeat(3, 1fr); }

  .sobre__inner { grid-template-columns: 1fr 1.4fr; gap: 60px; }

  .sobre__foto { max-width: none; margin: 0; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — 1024px+
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  #hero { padding: 80px 40px 100px; }

  .hero__h1 { font-size: 66px; }

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