/* ════════════════════════════════════════
   LP IMERSÃO — BÁRBARA BINDELI
   ════════════════════════════════════════ */

/* ── BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  background-color: #162212;
  color: rgba(255,255,255,.7);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; display: inline-block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ── ACCESSIBILITY: focus visible ── */
:focus-visible {
  outline: 2px solid #dac38c;
  outline-offset: 4px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid #dac38c;
  outline-offset: 4px;
}

/* ── SELECTION ── */
::selection { background: #c4af96; color: #162212; }

/* ── SCROLL REVEAL — só esconde se JS estiver ativo ── */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }
[data-reveal-delay="400"] { transition-delay: .4s; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 124.6rem; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTON PRIMARY ── */
.btn-primary {
  border-radius: 10rem;
  font-size: 1.6rem;
  color: #273623;
  font-weight: 600;
  padding: 2rem 3.2rem;
  background: linear-gradient(225deg, #c1996a 0%, #d7bd8b 49.04%, #dcc68d 100%);
  background-size: 200% 200%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  transition: background-position .5s ease, transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #dcc68d 0%, #d7bd8b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.28);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(201,168,76,.18);
}
.btn-primary svg {
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ════════════════════════════════════════
   SECTION: BANNER (HERO)
   ════════════════════════════════════════ */
.s-banner {
  padding-top: 7.7rem;
  padding-bottom: 20rem;
  background-image: url("assets/desktop-scaled.webp");
  background-position: right -24rem top;
  background-size: cover;
  background-repeat: no-repeat;
}
.s-banner .info { max-width: 64rem; width: 100%; }
.s-banner .info .logo {
  width: 100%;
  max-width: 15.9rem;
  height: 9.1rem;
  margin-bottom: 5.1rem;
}
.s-banner .info .logo img { object-fit: contain; width: 100%; height: 100%; }

.s-banner .info .badge {
  padding: .7rem 1.6rem;
  border-radius: 33554400px;
  background: rgba(215,189,139,.1);
  color: #dac38c;
  font-size: 1.4rem;
  letter-spacing: .35px;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-weight: 400;
  line-height: 142%;
}
.s-banner .info .badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e84131;
  opacity: .55;
}

.s-banner .info h1 {
  font-size: 4.6rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  margin-top: 3.1rem;
  line-height: 118%;
}
.s-banner .info h1 b { color: #c4af96; font-weight: 500; }

.s-banner .info p {
  margin-top: 2.4rem;
  color: rgba(255,255,255,.65);
  font-size: 1.8rem;
  line-height: 162%;
}

.s-banner .info a.btn-primary { margin-top: 3.2rem; }

/* ════════════════════════════════════════
   SECTION: MERCADO
   ════════════════════════════════════════ */
.s-mercado {
  border-radius: 24px 24px 0 0;
  background: #162212;
  margin-top: -10rem;
  padding-top: 12.8rem;
  padding-bottom: 10.2rem;
  position: relative;
  z-index: 2;
}
.s-mercado .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.4rem;
}
.s-mercado .left { max-width: 43.9rem; width: 100%; }
.s-mercado .left .label {
  color: #80886e;
  font-size: 1.4rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.6rem;
}
.s-mercado .left h2 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 100%;
}
.s-mercado .left h2 b { color: #c4af96; font-weight: 500; }

.s-mercado .right { max-width: 65.8rem; width: 100%; }
.s-mercado .right ul {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.s-mercado .right ul li {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.s-mercado .right ul li:hover .icone {
  background: rgba(196,175,150,.18);
  transform: scale(1.08);
}
.s-mercado .right ul li .icone {
  transition: background .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.s-mercado .right ul li .icone {
  max-width: 4rem;
  width: 100%;
  height: 4rem;
  border-radius: 1.4rem;
  background: rgba(128,136,110,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s-mercado .right ul li p {
  color: rgba(255,255,255,.7);
  font-size: 1.6rem;
  line-height: 163%;
}

/* ════════════════════════════════════════
   SECTION: PARA QUEM
   ════════════════════════════════════════ */
.s-paraquem {
  background: #162212;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s-paraquem::after {
  content: "";
  width: 58rem;
  height: 58rem;
  border-radius: 50%;
  opacity: .18;
  background: radial-gradient(58.35% 58.35% at 50% 41.65%, #d7bd8b 0%, rgba(215,189,139,0) 100%);
  filter: blur(36.65px);
  position: absolute;
  bottom: -40rem;
  pointer-events: none;
}
.s-paraquem .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.s-paraquem .label {
  color: #80886e;
  font-size: 1.4rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-align: center;
}
.s-paraquem h2 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  margin-top: 1.6rem;
}
.s-paraquem h2 b { color: #c4af96; font-weight: 500; }

.s-paraquem .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 6.4rem;
  width: 100%;
}
.s-paraquem .grid li {
  padding: 3.3rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  transition: border-color .35s ease, background .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.s-paraquem .grid li:hover {
  border-color: rgba(196,175,150,.4);
  background: rgba(196,175,150,.04);
  transform: translateY(-4px);
}
.s-paraquem .grid li:hover .topo .number span {
  opacity: .14;
  transition: opacity .5s ease;
}
.s-paraquem .grid li .topo .number span {
  transition: opacity .5s ease;
}
.s-paraquem .grid li .topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-paraquem .grid li .topo .icone {
  max-width: 4.4rem;
  width: 100%;
  height: 4.4rem;
  border-radius: 1.4rem;
  background: rgba(128,136,110,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-paraquem .grid li .topo .number {
  margin-top: -1rem;
}
.s-paraquem .grid li .topo .number span {
  color: #c4af96;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 100%;
  opacity: .06;
}
.s-paraquem .grid li .info { margin-top: 2rem; }
.s-paraquem .grid li .info h3 {
  font-size: 1.8rem;
  color: #fff;
  line-height: 155%;
}
.s-paraquem .grid li .info p {
  color: rgba(255,255,255,.55);
  font-size: 1.4rem;
  line-height: 163%;
  margin-top: 1.2rem;
}
.s-paraquem > .container > a.btn-primary {
  margin-top: 6.4rem;
}

/* ════════════════════════════════════════
   SECTION: APRENDER
   ════════════════════════════════════════ */
.s-aprender {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background: linear-gradient(180deg, #162212 0%, #2b3320 100%);
}
.s-aprender h2 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  margin-top: 1.6rem;
}
.s-aprender h2 b { color: #c4af96; font-weight: 500; }
.s-aprender .container > p {
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: 1.6rem;
  line-height: 24px;
  max-width: 56.3rem;
  margin: 1.6rem auto;
}
.s-aprender .container > p b { color: #fff; font-weight: 600; }

.s-aprender ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  margin-top: 6.4rem;
}
.s-aprender ul li {
  border-radius: 8px;
  border: 1px solid rgba(128,136,110,.12);
  background: rgba(128,136,110,.04);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  transition: border-color .35s ease, background .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.s-aprender ul li:hover {
  border-color: rgba(196,175,150,.3);
  background: rgba(196,175,150,.05);
  transform: translateX(6px);
}
.s-aprender ul li .icone {
  max-width: 4.4rem;
  width: 100%;
  height: 4.4rem;
  border-radius: 1.4rem;
  background: rgba(128,136,110,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s-aprender ul li p {
  text-align: left;
  color: #fff;
  font-size: 1.6rem;
  line-height: 24px;
}
.s-aprender ul li p b { color: #fff; font-weight: 600; }

/* ════════════════════════════════════════
   SECTION: BÔNUS ESPECIAIS
   ════════════════════════════════════════ */
.s-bonus {
  padding: 10rem 0 12rem;
  background: linear-gradient(180deg, #2b3320 0%, #162212 100%);
}
.s-bonus .container { max-width: 92rem; }
.s-bonus .head { text-align: center; margin-bottom: 5.6rem; }
.s-bonus .head .label {
  color: #c4af96;
  font-size: 1.4rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  display: block;
}
.s-bonus .head h2 {
  color: #fff;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 110%;
  margin-top: 1.6rem;
}
.s-bonus .head h2 b { color: #c4af96; font-weight: 500; }
.s-bonus .head p {
  color: rgba(255,255,255,.6);
  font-size: 1.6rem;
  line-height: 162%;
  max-width: 56rem;
  margin: 1.6rem auto 0;
}
.s-bonus ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.s-bonus ul li {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2.8rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(196,175,150,.18);
  background: rgba(128,136,110,.05);
  transition: border-color .35s ease, background .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.s-bonus ul li:hover {
  border-color: rgba(196,175,150,.4);
  background: rgba(196,175,150,.06);
  transform: translateY(-4px);
}
.s-bonus ul li .icone {
  max-width: 4.4rem;
  width: 100%;
  height: 4.4rem;
  border-radius: 1.4rem;
  background: rgba(128,136,110,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .35s ease;
}
.s-bonus ul li:hover .icone { background: rgba(196,175,150,.22); }
.s-bonus ul li .info span {
  color: rgba(255,255,255,.45);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 133%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
}
.s-bonus ul li .info h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 24px;
  margin-top: .8rem;
}

/* ════════════════════════════════════════
   SECTION: QUEM (BIO)
   ════════════════════════════════════════ */
.s-quem {
  background-image: url("assets/bg-quem.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 95%;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.2rem;
  background-color: #273623;
}
.s-quem .container {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  align-items: center;
}
.s-quem .photo { max-width: 74.1rem; width: 100%; }
.s-quem .info {
  max-width: 52.3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 0;
}
.s-quem .info .label {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  display: block;
}
.s-quem .info h2 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 100%;
  margin-top: 1.6rem;
  width: 100%;
  border-bottom: 2px solid #c4af96;
  padding-bottom: 3.2rem;
}
.s-quem .info h2 b { color: #c4af96; font-weight: 500; }
.s-quem .info .text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.2rem;
}
.s-quem .info .text p {
  color: rgba(255,255,255,.7);
  font-size: 1.6rem;
  line-height: 163%;
}
.s-quem .info ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3.2rem;
}
.s-quem .info ul li {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 143%;
  padding: .9rem 1.2rem;
  border-radius: 33554400px;
  border: 1px solid rgba(220,198,141,.31);
  transition: border-color .3s ease, background .3s ease;
  cursor: default;
}
.s-quem .info ul li:hover {
  border-color: rgba(220,198,141,.6);
  background: rgba(220,198,141,.08);
}

/* ════════════════════════════════════════
   SECTION: GARANTIA
   ════════════════════════════════════════ */
.s-garantia {
  padding: 8rem 0;
  background: #162212;
}
.s-garantia .container {
  max-width: 76rem;
}
.s-garantia .box {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(196,175,150,.25);
  background: rgba(128,136,110,.06);
  transition: border-color .4s ease, background .4s ease, transform .4s cubic-bezier(.16,1,.3,1);
}
.s-garantia .box:hover {
  border-color: rgba(196,175,150,.45);
  background: rgba(128,136,110,.1);
  transform: translateY(-4px);
}
.s-garantia .seal {
  flex-shrink: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 2px dashed rgba(196,175,150,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #c4af96;
  font-family: "Playfair Display", serif;
  position: relative;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s ease;
}
.s-garantia .box:hover .seal {
  transform: rotate(-8deg) scale(1.05);
  border-color: rgba(196,175,150,.8);
}
.s-garantia .seal::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(196,175,150,.15);
}
.s-garantia .seal .num {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
.s-garantia .seal .label {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: .4rem;
}
.s-garantia .text h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 110%;
}
.s-garantia .text h2 b { color: #c4af96; font-weight: 500; }
.s-garantia .text p {
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  line-height: 162%;
  margin-top: 1.2rem;
}
.s-garantia .text p.highlight {
  color: #dac38c;
  font-style: italic;
  margin-top: 1.6rem;
}

@media (max-width: 720px) {
  .s-garantia .box { flex-direction: column; text-align: center; padding: 3rem 2rem; }
}

/* ════════════════════════════════════════
   SECTION: FAQ
   ════════════════════════════════════════ */
.s-faq {
  padding: 8rem 0 12rem;
  background: #162212;
}
.s-faq .container { max-width: 80rem; }
.s-faq .head { text-align: center; margin-bottom: 4.8rem; }
.s-faq .head .label {
  color: #80886e;
  font-size: 1.4rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  display: block;
}
.s-faq .head h2 {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 110%;
  margin-top: 1.6rem;
}
.s-faq .head h2 b { color: #c4af96; font-weight: 500; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(255,255,255,.1);
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-align: left;
  gap: 2rem;
  transition: color .3s ease;
  min-height: 4.4rem;
}
.faq-question:hover { color: #c4af96; }
.faq-item.open .faq-question { color: #c4af96; }
.faq-icon { transition: transform .35s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: #c4af96;
}
.faq-icon::before {
  width: 2rem;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 2px;
  height: 2rem;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity .3s ease;
}
.faq-item.open .faq-icon::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p {
  padding-bottom: 2.4rem;
  color: rgba(255,255,255,.65);
  font-size: 1.5rem;
  line-height: 170%;
}

@media (max-width: 590px) {
  .s-faq .head h2 { font-size: 3.2rem; }
  .faq-question { font-size: 1.5rem; }
}

/* ════════════════════════════════════════
   SECTION: CARD (CTA FINAL)
   ════════════════════════════════════════ */
.s-card {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #2b3320;
  position: relative;
}
.s-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68.4rem;
  opacity: .4;
  background: linear-gradient(180deg, rgba(130,154,98,0) 0%, #829a62 100%);
  pointer-events: none;
}
.s-card .container {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  border-radius: 12px;
  padding: 3.4rem 6.4rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(22,34,18,.44);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.s-card .vg span {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  line-height: 20px;
}
.s-card h2 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  margin-top: 1.6rem;
  max-width: 54.1rem;
}
.s-card h2 b { color: #c4af96; font-weight: 500; }
.s-card .cont-p {
  max-width: 50.6rem;
  margin-top: 1.6rem;
}
.s-card .cont-p p {
  color: rgba(255,255,255,.65);
  font-size: 1.6rem;
  line-height: 24px;
  text-align: center;
}

.card-price {
  padding: 4rem 3.2rem;
  border-radius: 24px;
  border: 1px solid rgba(39,54,35,.1);
  background: #f7f2eb;
  margin-top: 4.1rem;
  max-width: 34.6rem;
  width: 100%;
  position: relative;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.card-price:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
}
.card-price .topo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}
.card-price .topo span {
  color: #273623;
  font-family: Inter;
  font-size: 1.4rem;
  line-height: 20px;
}
.card-price .cont {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}
.card-price .cont span {
  color: rgba(39,54,35,.45);
  font-size: 1.2rem;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.card-price .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 2.6rem;
  gap: .2rem;
}
.card-price .price > span {
  color: rgba(39,54,35,.4);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .8rem;
}
.card-price .price h3 {
  color: #273623;
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 1.173px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.card-price .price h3 > span {
  color: #273623;
  font-size: 3rem;
  font-weight: 400;
}
.card-price .price h3 b {
  color: #273623;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 1.173px;
}
.card-price a.btn-primary {
  width: 100%;
  padding: 2rem 3.2rem;
  margin-top: 3.2rem;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background-color: #273623;
  padding: 2.8rem 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p {
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 140%;
}
footer .rocket {
  display: flex;
  align-items: center;
  gap: .8rem;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* ── TABLET (max 990px) ── */
@media (max-width: 990px) {
  .s-banner {
    background-image: none;
    background-color: #162212;
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
  .s-banner .container { padding-bottom: 0; }
  .s-banner .info {
    display: flex;
    max-width: 100%;
    align-items: center;
    flex-direction: column;
  }
  .s-banner .info h1, .s-banner .info p { text-align: center; }
  .s-banner .info .logo { margin-bottom: 3.2rem; }

  .s-mercado { margin-top: 0; padding-top: 6.4rem; padding-bottom: 6.4rem; border-radius: 0; }
  .s-mercado .container { flex-direction: column; align-items: flex-start; gap: 4rem; }
  .s-mercado .left, .s-mercado .right { max-width: 100%; }

  .s-paraquem { padding-top: 6.4rem; padding-bottom: 6.4rem; }
  .s-paraquem .grid { grid-template-columns: 1fr; gap: 1.6rem; margin-top: 4.8rem; }
  .s-paraquem .grid li { padding: 2.8rem; }
  .s-paraquem > .container > a.btn-primary { margin-top: 4.8rem; }

  .s-aprender { padding-top: 8rem; padding-bottom: 8rem; }
  .s-aprender ul { margin-top: 4.8rem; gap: 1.6rem; }

  .s-bonus { padding: 6.4rem 0 8rem; }
  .s-bonus ul { grid-template-columns: 1fr; gap: 1.6rem; }

  .s-quem .container { flex-direction: column; align-items: flex-start; padding-top: 4rem; gap: 3.2rem; }
  .s-quem .photo, .s-quem .info { max-width: 100%; }
  .s-quem .info { order: -1; margin-bottom: 0; padding: 3.2rem 2rem 0; }

  .s-card { padding-top: 6.4rem; padding-bottom: 6.4rem; }
  .s-card .container { padding: 4rem 2.4rem; }

  .s-garantia { padding: 6.4rem 0; }
  .s-faq { padding: 6.4rem 0 8rem; }
}

/* ── MOBILE (max 590px) ── */
@media (max-width: 590px) {
  html { font-size: 58%; }

  .container { padding: 0 2rem; }

  .s-banner { padding-bottom: 6rem; }
  .s-banner .container { padding-bottom: 0; }
  .s-banner .info h1 { font-size: 3.4rem; line-height: 122%; margin-top: 2rem; word-wrap: break-word; }
  .s-banner .info p { font-size: 1.6rem; margin-top: 1.6rem; }
  .s-banner .info .badge { font-size: 1.2rem; padding: .6rem 1.2rem; }
  .s-banner .info a.btn-primary { margin-top: 3.2rem; }
  .s-banner .info .logo { max-width: 18rem; height: 10.5rem; }

  .s-mercado .left h2,
  .s-paraquem h2,
  .s-aprender h2,
  .s-bonus .head h2,
  .s-quem .info h2,
  .s-card h2 { font-size: 3.2rem; line-height: 115%; }

  .s-paraquem::after { width: 32rem; height: 32rem; }

  .s-aprender .container > p { font-size: 1.5rem; }
  .s-aprender ul li { padding: 1.6rem; gap: 1.2rem; }
  .s-aprender ul li:hover { transform: none; }
  .s-aprender ul li p { font-size: 1.4rem; }

  .s-bonus ul li:hover { transform: none; }

  .s-quem .info ul { flex-wrap: wrap; gap: .8rem; }
  .s-quem .info ul li { font-size: 1.3rem; padding: .7rem 1rem; }

  .s-card .container { max-width: 100%; padding: 3.2rem 2rem; }
  .s-card h2 { font-size: 3.2rem; }
  .card-price { padding: 2.8rem 2rem; max-width: 100%; }
  .card-price .price h3 { font-size: 6rem; }

  .s-garantia .text h2 { font-size: 2.6rem; }
  .s-garantia .text p { font-size: 1.4rem; }
  .s-garantia .seal { width: 10rem; height: 10rem; }
  .s-garantia .seal .num { font-size: 3.2rem; }

  .s-faq .head h2 { font-size: 2.8rem; }
  .faq-question { font-size: 1.5rem; padding: 2rem 0; }
  .faq-answer p { font-size: 1.4rem; }

  .btn-primary { font-size: 1.4rem; padding: 1.8rem 2.8rem; width: 100%; }

  footer .container { flex-direction: column; gap: 2rem; }
  footer p { text-align: center; font-size: 1.2rem; }

  /* Touch targets — mínimo 44x44 */
  .faq-question { min-height: 4.4rem; }
}

/* ── SMALL MOBILE (max 450px) ── */
@media (max-width: 450px) {
  .s-mercado .right ul li { flex-direction: column; gap: 1.6rem; }
  .s-mercado .right ul li:hover { transform: none; }
}

/* ════════════════════════════════════════
   MOTION PREFERENCES (a11y)
   ════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
