/* =====================================================
   FONTS (@font-face)
   ===================================================== */
@font-face {
  font-family: 'Remixo';
  src: url('assets/fonts/remixo.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acid Grotesk';
  src: url('assets/fonts/acid-grotesk-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acid Grotesk';
  src: url('assets/fonts/acid-grotesk-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acid Grotesk';
  src: url('assets/fonts/acid-grotesk-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acid Grotesk';
  src: url('assets/fonts/acid-grotesk-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyPresto Display';
  src: url('assets/fonts/ivy-presto-display.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyPresto Display';
  src: url('assets/fonts/ivy-presto-display-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyPresto Text';
  src: url('assets/fonts/ivy-presto-text-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IvyPresto Text';
  src: url('assets/fonts/ivy-presto-text-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =====================================================
   A MULHER SÁBIA — Landing Page
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #d25b71;
  --dark-pink: #a44257;
  --text: #474747;
  --bg: #edebea;
  --card-bg: #edebea;
  --white-warm: #fffaf2;
  --grad: linear-gradient(to right, #a44257, #d25b71);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Acid Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ===================================================
   BUTTON
   =================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #a44257, #d25b71);
  color: #fffaf2;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.48px;
  padding: 9px 58px 9px 24px;
  border-radius: 906px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    inset 0 -2.718px 0 0 #b4596a,
    inset 0 1.812px 0 0 #b4596a,
    inset 0 0 15.314px 0 rgba(62, 75, 22, 0.34);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  width: 329px;
  height: 60px;
  min-height: 60px;
  box-sizing: border-box;
}

.btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.btn-arrow {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 42px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-lg {
  position: relative;
  height: 60px;
  min-height: 60px;
  font-size: 16px;
  width: 100%;
  max-width: 473px;
  padding: 9px 55px;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.btn-lg .btn-arrow {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 42px;
}

/* ===================================================
   UTILITIES
   =================================================== */
.grad-text {
  background: linear-gradient(-39deg, #a44257 16.92%, #d25b71 68.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 15px 20px;
  margin: 0 -20px;
  display: inline;
}

.remixo-font,
.font-remixo {
  font-family: 'Remixo', serif;
  font-weight: 400;
  color: #d25b71;
}

.text-p {
  color: #d25b71;
}

.slabel {
  font-size: 14px;
  letter-spacing: 5.74px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
  line-height: 53px;
}

.slabel .bk {
  color: #d25b71;
}

.sdots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 32px;
}

.dot-a {
  height: 5px;
  width: 81px;
  border-radius: 99px;
  background: linear-gradient(to right, #a44257, #d25b71);
}

.dot-i {
  height: 5px;
  width: 35px;
  border-radius: 99px;
  background: #d9d9d9;
}

.sh {
  text-align: center;
  margin-bottom: 40px;
}

h2.sec {
  font-size: 32px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: -.4px;
  color: #474747;
}

h2.lg {
  font-size: 55px;
  font-weight: 300;
  line-height: 1.25;
  color: #474747;
}

/* ===================================================
   HERO
   =================================================== */
#hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-color: var(--bg);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: url('images/Pattern.svg') center top / cover;
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 20px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-family: 'Acid Grotesk', sans-serif;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -0.6px;
  color: #474747;
  font-weight: 400;
  margin-bottom: 16px;
}

.hero-sub {
  font-family: 'Acid Grotesk', sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  color: #727272;
  letter-spacing: -0.2px;
  line-height: 1.35;
  margin-bottom: 24px;
}

.hero-desc {
  font-family: 'Acid Grotesk', sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  color: #474747;
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-btn {
  display: inline-flex;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  width: 329px;
  max-width: 100%;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .26px;
  line-height: 1.17;
  color: #6a6a6a;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-book {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 410px;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* Posição da imagem floral (hero.png) na Hero:
   - left: aumente para mover para a direita, diminua para a esquerda (ex: 40%, 50%)
   - top: aumente para descer, diminua para subir (ex: 45%, 55%)
   - width: aumente ou diminua o tamanho geral da imagem */
.hero-flores {
  position: absolute;
  left: 64%;
  top: 63%;
  transform: translate(-50%, -50%);
  width: 1250px;
  max-width: none;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* ===================================================
   TICKER
   =================================================== */
.ticker-wrap {
  position: relative;
  z-index: 4;
  margin-top: -30px;
  width: 100%;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-band {
  position: absolute;
  width: 2716px;
  height: 68px;
  left: 50%;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.band1 {
  background: linear-gradient(to right, rgba(180, 89, 106, 0.5), rgba(242, 167, 181, 0.5));
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transform: translateX(-50%) rotate(-4.62deg);
  z-index: 1;
}

.band2 {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transform: translateX(-50%) rotate(4.28deg);
  z-index: 2;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
}

.band1 .ticker-inner {
  animation: tick 28s linear infinite;
}

.band2 .ticker-inner {
  animation: tick 36s linear infinite reverse;
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ti {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  padding: 0 25px;
  font-family: 'Acid Grotesk', sans-serif;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
}

.band1 .ti {
  color: #f9f4e2;
}

.band2 .ti {
  background: linear-gradient(to right, #a44257, #d25b71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ti img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}

.band2 .ti img {
  opacity: .85;
}

/* ===================================================
   H2 — "Já sentiu que Age no Impulso?"
   =================================================== */
#h2 {
  padding: 100px 0;
}

.h2g {
  display: grid;
  grid-template-columns: 510px 596px;
  gap: 67px;
  align-items: start;
}

.h2-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.h2-btn {
  margin-top: 24px;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
}

/* .sec — título grande da seção #h2 (node 1:277) */
.sec {
  font-family: 'Acid Grotesk', sans-serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.4px;
  color: #474747;
  line-height: 45px;
}

.sec .text-p {
  color: #d25b71;
  line-height: 53px;
}

/* .tt — parágrafo descritivo (node 1:278, Acid Grotesk Medium) */
.tt {
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  color: #474747;
  margin-bottom: 16px;
}

/* .th — "A verdade é: …" (node 1:278, Acid Grotesk Bold + gradient) */
.th {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #474747;
}

.th .grad-phrase {
  background: linear-gradient(-74.86deg, #a44257 16.92%, #d25b71 68.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================================
   H3 — PROBLEMA
   =================================================== */
#h3 {
  padding: 80px 0;
}

.pg {
  display: grid;
  grid-template-columns: 521px 598px;
  gap: 73px;
  align-items: start;
}

.pl {
  position: sticky;
  top: 60px;
  align-self: start;
}

.pl h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -2px;
  color: #474747;
  margin-bottom: 32px;
}

.pl h2 span {
  color: #d25b71;
}

.pl p {
  font-family: 'Albert Sans', sans-serif;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.78px;
  color: #474747;
  margin-bottom: 25px;
}

.pcards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pcard {
  background: #fffcf4;
  border: 2px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  padding: 39.5px 62px;
  display: flex;
  flex-direction: column;
  gap: 22.6px;
  height: 256px;
  justify-content: center;
}

.pcard h3 {
  font-family: 'IvyPresto Text', serif;
  font-weight: 600;
  font-size: 39.7px;
  line-height: 0.98;
  letter-spacing: -1.98px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--grad);
  background-clip: text;
  margin-bottom: 0;
}

.pcard p {
  font-family: 'Albert Sans', sans-serif;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: -0.78px;
  color: #606060;
}

.sbuy {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  max-width: 473px;
}

.sbuy-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sbuy-icon {
  height: 18px;
  width: auto;
  display: block;
}

.sbuy-logo {
  height: 14px;
  width: auto;
  display: block;
}

.dv {
  width: 1px;
  height: 14px;
  background: #ccc;
}

.sbuy span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #838383;
  letter-spacing: -0.43px;
}

/* ===================================================
   COMPARAÇÃO
   =================================================== */
#compare {
  padding: 80px 0;
}

#compare h2.cmp {
  font-size: 45px;
  line-height: 1.18;
  letter-spacing: -1.35px;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
  color: #474747;
}

#compare h2.cmp strong {
  color: #d25b71;
  font-weight: 700;
}

.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-col {
  display: flex;
  flex-direction: column;
}

.ccl {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 60px;
  min-height: 108px;
  box-sizing: border-box;
}

.ccl.old {
  background: #e4e4e4;
  border: 1px solid #cacaca;
}

.ccl.new {
  background: linear-gradient(to right, #ffe8ec, #dd6d82);
  border: 1px solid #cacaca;
  border-left: none;
}

.ccl.old img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 16px;
  background-color: #f7e6e6;
  border-radius: 14px;
}

.ccl.new img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 16px;
  background-color: #e2f5e4;
  border-radius: 14px;
}

.ctl {
  font-size: 23.7px;
  font-weight: 500;
  letter-spacing: -0.71px;
  color: #0d302a;
  margin-bottom: 11px;
}

.csl {
  font-size: 15.6px;
  letter-spacing: -0.47px;
  color: rgba(13, 48, 42, 0.8);
}

.ccl.new .ctl {
  color: white;
  font-weight: 500;
}

.ccl.new .csl {
  color: rgba(255, 255, 255, 0.8);
}

.cc {
  padding: 20px 60px;
  min-height: 99px;
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-top: none;
  box-sizing: border-box;
}

.compare-col.new .cc {
  border-left: none;
}

.cc.or {
  background: white;
}

.cc.nr {
  background: #f4f4f4;
}

.ci {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ci img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cc p {
  font-size: 16px;
  line-height: 20px;
  color: #0e3930;
}

/* ===================================================
   PARA VOCÊ
   =================================================== */
#fy {
  padding: 80px 0;
}

#fy h2.fh {
  font-size: 45px;
  font-weight: 400;
  letter-spacing: -1.35px;
  line-height: 1.3;
  color: #474747;
  max-width: 1100px;
  margin: 0 auto;
}

.fyg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.fyc {
  background: #edebea;
  border: 1.712px solid rgba(0, 0, 0, .1);
  border-radius: 21px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 16px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
}

.fyc.hl {
  background: radial-gradient(circle at 50% 20%,
      rgba(210, 91, 113, 0.45) 0%,
      rgba(224, 163, 174, 0.2) 50%,
      rgba(237, 235, 234, 0) 80%), #edebea;
}

.fyc img {
  width: 44px;
  height: 44px;
}

.fyc h3 {
  font-family: 'IvyPresto Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 38.5px;
  color: #474747;
  line-height: 1;
  text-align: center;
}

.fyc p {
  font-size: 16.9px;
  font-weight: 500;
  line-height: 25.7px;
  color: #474747;
  text-align: center;
  max-width: 320px;
}

/* ===================================================
   DEPOIMENTOS
   =================================================== */
#testi {
  padding: 80px 0;
  overflow: hidden;
}

.tsw {
  overflow: hidden;
  padding: 20px 0;
}

.ttrack {
  display: flex;
  gap: 22px;
  animation: scroll-r 30s linear infinite;
  width: max-content;
}

.ttrack:hover {
  animation-play-state: paused;
}

@keyframes scroll-r {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tc {
  background: #f2f2f2;
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: 25px;
  padding: 60px;
  width: 584px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.tc .qi {
  width: 45px;
  height: 32px;
}

.tc .qt {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: .2px;
  color: #2a1d1d;
}

.tc .au {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tc .au>div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tc .av {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  object-fit: cover;
}

.tc .an {
  font-size: 18px;
  letter-spacing: .18px;
  color: #2a1d1d;
}

.tc .ar {
  font-size: 14px;
  letter-spacing: .14px;
  color: #515e77;
}

/* ===================================================
   MÓDULOS
   =================================================== */
#mods {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Posição da imagem floral (flores.png) atrás do livro:
   - top: aumente para descer mais, diminua para subir
   - left: 50% centraliza na horizontal
   - rotate(15deg): rotação do desenho
   - width/height: tamanho da imagem */
#mods .morn {
  position: absolute;
  left: 48%;
  top: 600px;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 1000px;
  height: 1000px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.mbooks {
  position: relative;
  margin: 30px auto -30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  z-index: 2;
}

.mbooks img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

.sarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.sarrow.prev {
  left: -60px;
}

.sarrow.next {
  right: -60px;
}

.sarrow img {
  width: 16px;
  height: auto;
  opacity: 0.6;
}

.mg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  position: relative;
  z-index: 1;
}

.mc {
  background: #edebea;
  border: 1.772px solid rgba(0, 0, 0, .1);
  border-radius: 22px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.mi {
  width: 100%;
  height: 241px;
  border: 1.772px solid rgba(0, 0, 0, .1);
  border-radius: 18px;
  overflow: hidden;
}

.mi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mi.f2 {
  display: flex;
  gap: 3px;
  padding: 0;
  justify-content: flex-end;
  background: #edebea;
}

.mi.f2 .fb {
  width: 29px;
  height: 120%;
  margin-top: -10px;
  background: rgba(164, 66, 87, .15);
  border-radius: 4px;
  border: .4px solid #cfa862;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mstar {
  width: 33px;
  height: 33px;
}

.fl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 10.9px;
  background: linear-gradient(to right, #a44257, #d25b71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ftit {
  font-family: 'IvyPresto Display', serif;
  font-size: 39.8px;
  font-weight: 300;
  color: #565656;
  text-align: center;
  line-height: 1;
}

.ftit em {
  font-family: 'IvyPresto Display', serif;
  font-style: italic;
  font-weight: 600;
}

.ftit strong {
  font-style: italic;
  font-weight: 600;
}

.mdesc {
  font-size: 18px;
  text-align: center;
  color: #565656;
  line-height: 1.3;
}

.mbg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

text-align: center;
color: #565656;
line-height: 1.3;
}

.mbg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ===================================================
   PREÇO
   =================================================== */
#price {
  padding: 80px 0;
}

#price h2.ph {
  font-size: 50.5px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.3;
  text-align: center;
  color: #474747;
  margin-bottom: 48px;
}

.pbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
}

.pleft {
  background: white;
  border: 2px solid rgba(1, 43, 32, .1);
  border-right: none;
  border-radius: 21px 0 0 21px;
  padding: 60px 80px;
}

.pleft h3 {
  font-size: 36px;
  font-weight: 400;
  color: #0d302a;
  margin-bottom: 30px;
}

.pleft h3 strong {
  font-weight: 700;
}

.pit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  gap: 20px;
}

.pn {
  font-size: 18px;
  line-height: 1.3;
  color: #012d21;
  max-width: 220px;
}

.pn strong {
  font-weight: 700;
}

.pp {
  background: #f2f2f2;
  border: 1px solid rgba(14, 57, 48, .1);
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 700;
  color: #012d21;
  white-space: nowrap;
  flex-shrink: 0;
}

.ptot {
  background: #f2f2f2;
  border: 1px solid rgba(14, 57, 48, .1);
  border-radius: 9px;
  padding: 14px;
  text-align: center;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #012d21;
}

.pright {
  background: white;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 0 21px 21px 0;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pright::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 555px;
  height: 555px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 91, 113, .08) 0%, transparent 70%);
  pointer-events: none;
}

.pright hr {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
}

.rt {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.11;
  color: #474747;
  text-align: center;
  margin-bottom: 30px;
}

.pins {
  font-size: 44px;
  font-weight: 700;
  color: #474747;
  text-align: center;
  display: block;
}

.prow {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.prs {
  font-size: 36px;
  font-weight: 700;
  color: #474747;
  align-self: flex-start;
  margin-top: 20px;
}

.pval {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to bottom, #ce506b, #d8798b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pcash {
  font-size: 22px;
  font-weight: 500;
  color: #474747;
  text-align: center;
  text-transform: uppercase;
  margin: 8px 0 30px;
}

.picons {
  display: flex;
  align-items: center;
  gap: 1.4px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pico {
  width: 37.135px;
  height: 25.464px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================
   GARANTIA + SOBRE
   =================================================== */
#guar {
  padding: 80px 0;
}

.gi {
  display: flex;
  align-items: center;
  gap: 65px;
  justify-content: center;
  margin-bottom: 80px;
}

.gs {
  position: relative;
  width: 360px;
  height: 343px;
  flex-shrink: 0;
}

.selo-garantia {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.selo-7 {
  position: absolute;
  top: 0;
  left: 105.07px;
  width: 254.57px;
  height: 343px;
}

.selo-stars {
  position: absolute;
  top: 248.61px;
  left: 4px;
  width: 134px;
  height: 23.55px;
}

.selo-text-dias {
  position: absolute;
  top: 158.11px;
  left: 0.18px;
  width: 258.19px;
  height: 80.43px;
}

.selo-text-garantia {
  position: absolute;
  top: 130.34px;
  left: 0;
  font-family: 'Acid Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10.673px;
  color: #656565;
  letter-spacing: 11.6373px;
  line-height: 21.436px;
  white-space: nowrap;
}

.gt h3 {
  font-size: 55px;
  font-weight: 300;
  line-height: 45px;
  color: #474747;
  margin-bottom: 20px;
}

.gt p {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: #474747;
  max-width: 472px;
}

.gbg {
  font-size: 14px;
  letter-spacing: 5.74px;
  font-weight: 500;
  line-height: 53px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #474747;
}

.gbg .bk {
  color: #d25b71;
}

/* About */
.ai {
  display: grid;
  grid-template-columns: 529px 1fr;
  gap: 67px;
  align-items: center;
}

.apc {
  position: relative;
  width: 100%;
  max-width: 529px;
  background: transparent;
  border: none;
}

.apc-img {
  width: 100%;
  height: auto;
  display: block;
}

.pfb {
  position: absolute;
  top: 47px;
  left: 60px;
  right: 60px;
  height: 4px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.pbr {
  flex: 1;
  background: #74705a;
  border-radius: 7px;
  position: relative;
}

.pbr .prog {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #c4c2b3;
  border-radius: 7px;
  width: 60%;
}

.pbr.in {
  background: rgba(119, 119, 119, .2);
}

.api {
  position: absolute;
  top: 66px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.apu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.apav {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  object-fit: cover;
}

.apn {
  font-size: 16px;
  font-weight: 500;
  color: #525252;
}

.apt {
  font-size: 16px;
  font-weight: 500;
  color: #797979;
}

.apm {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100px;
  height: calc(100% - 100px);
  width: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 2;
}

.at .cl {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 6.2px;
  text-transform: uppercase;
  margin-bottom: 31.5px;
  color: #474747;
}

.at .cl .bk {
  color: #d25b71;
}

.at h2.ah {
  font-size: 59.7px;
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 31.5px;
  color: #474747;
}

.bio {
  font-size: 23.9px;
  font-weight: 500;
  line-height: 34.7px;
  color: #474747;
  margin: 0;
}

.bio .gr {
  font-weight: 700;
  background: linear-gradient(-84deg, #a44257 16.92%, #d25b71 68.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ===================================================
   FAQ
   =================================================== */
#faq {
  padding: 80px 0;
}

.fl2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fi {
  background: #edebea;
  border: 1.712px solid rgba(0, 0, 0, .1);
  border-radius: 21px;
  min-height: 92px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 51px;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.fi:hover {
  background: #e5e3e0;
  border-color: rgba(164, 66, 87, 0.25);
}

.fi.active {
  background: #fffcf8;
  border-color: #d25b71;
  box-shadow: 0 8px 25px rgba(164, 66, 87, 0.08);
}

.fi-header {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
}

.fi-header img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fi.active .fi-header img {
  transform: rotate(90deg);
}

.fq {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: #474747;
  flex: 1;
  transition: color 0.2s ease;
}

.fi.active .fq {
  color: #a44257;
  font-weight: 600;
}

.fa {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 51px;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.fi.active .fa {
  max-height: 250px;
  opacity: 1;
  margin-top: 14px;
}

.fa p {
  font-family: 'Albert Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* ===================================================
   CTA FINAL + FOOTER
   =================================================== */
#fin {
  text-align: center;
  position: relative;
}

.forn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  opacity: .07;
  pointer-events: none;
}

#fin h2.fh2 {
  font-size: 56.36px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.56px;
  color: #474747;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cw {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fstar {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

footer {
  text-align: center;
}

.flinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.flinks a {
  font-size: 16px;
  color: #8e8e8e;
  text-decoration: none;
  opacity: .7;
}

.flinks a:hover {
  opacity: 1;
}

.fcopy {
  font-size: 16px;
  color: #8e8e8e;
  opacity: .7;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
/* ===================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 auto 16px auto;
  }

  .hero-sub,
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn {
    margin: 0 auto;
  }

  .hero-badge {
    justify-content: center;
    margin: 18px auto 0 auto;
    width: 100%;
    max-width: 329px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-book {
    max-width: 360px;
  }

  .hero-flores {
    left: 50%;
    top: 50%;
    width: 900px;
    height: auto;
  }

  /* Ticker */
  .ticker-wrap {
    margin-top: 10px;
    height: 220px;
  }

  .ticker-band {
    width: 2000px;
    padding: 16px 0;
  }

  /* #h2 */
  #h2 {
    padding: 60px 0;
  }

  .h2g {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sec {
    font-size: 32px;
    line-height: 38px;
  }

  .tt {
    font-size: 19px;
    line-height: 26px;
  }

  .th {
    font-size: 21px;
    line-height: 28px;
  }

  /* #h3 Problema */
  #h3 {
    padding: 60px 0;
  }

  .pg {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pl {
    position: static;
  }

  .pl h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .pl p {
    font-size: 20px;
    line-height: 26px;
  }

  .pl .btn-lg {
    margin: 0 auto;
  }

  .sbuy {
    margin: 20px auto 0 auto;
    justify-content: center;
  }

  .pcard {
    height: auto;
    padding: 32px 40px;
  }

  .pcard h3 {
    font-size: 32px;
  }

  .pcard p {
    font-size: 20px;
    line-height: 26px;
  }

  /* Comparação */
  #compare {
    padding: 60px 0;
  }

  #compare h2.cmp {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .compare-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .compare-col {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  .ccl {
    padding: 18px 30px;
    min-height: auto;
    border: none !important;
  }

  .cc {
    padding: 18px 30px;
    min-height: auto;
    border: none !important;
    border-top: 1px solid #e5e5e5 !important;
  }

  /* Para Você */
  #fy {
    padding: 60px 0;
  }

  #fy h2.fh {
    font-size: 36px;
    line-height: 1.25;
  }

  .fyg {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fyc {
    background: #edebea;
    border: 1.712px solid rgba(0, 0, 0, .1);
    border-radius: 21px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
  }

  .fyc img {
    width: 44px;
    height: 44px;
  }

  .fyc h3 {
    font-family: 'IvyPresto Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 38.5px;
    color: #474747;
    line-height: 1;
    text-align: center;
  }

  .fyc p {
    font-size: 16.9px;
    font-weight: 500;
    line-height: 25.7px;
    color: #474747;
    text-align: center;
    max-width: 320px;
  }

  /* Testimonials */
  #testi {
    padding: 60px 0;
  }

  .tc {
    width: 440px;
    padding: 36px;
    gap: 22px;
  }

  .tc .qt {
    font-size: 17px;
    line-height: 24px;
  }

  /* Módulos */
  #mods {
    padding: 60px 0;
  }

  .mbooks {
    max-width: 380px;
    margin: 20px auto -20px auto;
  }

  #mods .morn {
    width: 750px;
    height: 750px;
    top: 500px;
  }

  .mg {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .ftit {
    font-size: 32px;
  }

  .sarrow {
    display: none;
  }

  /* Preço */
  #price {
    padding: 60px 0;
  }

  #price h2.ph {
    font-size: 38px;
    margin-bottom: 36px;
  }

  .pbox {
    grid-template-columns: 1fr;
  }

  .pleft {
    border-radius: 21px 21px 0 0;
    border-right: 2px solid rgba(1, 43, 32, .1);
    border-bottom: none;
    padding: 40px;
  }

  .pright {
    border-radius: 0 0 21px 21px;
    padding: 40px;
  }

  .pval {
    font-size: 88px;
  }

  /* Garantia */
  #guar {
    padding: 60px 0;
  }

  .gi {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 50px;
  }

  .gt p {
    margin: 0 auto;
  }

  /* Autora */
  .ai {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apc {
    max-width: 380px;
    margin: 0 auto;
    height: auto;
  }

  .at {
    text-align: center;
  }

  .at h2.ah {
    font-size: 42px;
  }

  .bio {
    font-size: 19px;
    line-height: 28px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* FAQ */
  #faq {
    padding: 60px 0;
  }

  .fi {
    min-height: 76px;
    padding: 18px 24px;
  }

  .fq {
    font-size: 18px;
  }

  .fa {
    padding-left: 45px;
  }

  .fa p {
    font-size: 16px;
    line-height: 1.55;
  }

  /* Fin */
  #fin h2.fh2 {
    font-size: 42px;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE (max-width: 640px)
   =================================================== */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-inner {
    padding-top: 30px;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 22px;
  }

  .hero-btn {
    width: 100%;
    max-width: 310px;
    height: 60px;
    min-height: 60px;
    font-size: 14px;
    justify-content: center;
    gap: 16px;
    padding: 9px 18px;
    box-sizing: border-box;
  }

  .hero-badge {
    width: 100%;
    max-width: 310px;
    justify-content: center;
    margin: 14px auto 0 auto;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 10px;
  }

  .hero-book {
    max-width: 280px;
  }

  .hero-flores {
    left: 50%;
    top: 50%;
    width: 620px;
    height: auto;
  }

  /* Ticker */
  .ticker-wrap {
    margin-top: -45px;
    height: 160px;
  }

  .ticker-band {
    width: 1800px;
    height: 40px;
    padding: 0;
    box-sizing: border-box;
  }

  .ti {
    font-size: 13px;
    gap: 20px;
    padding: 0 12px;
  }

  .ti img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
  }

  /* #h2 */
  #h2 {
    padding: 48px 0;
  }

  .h2-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .h2-btn {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }

  .sec {
    font-size: 25px;
    line-height: 31px;
  }

  .tt {
    font-size: 16px;
    line-height: 22px;
  }

  .th {
    font-size: 16px;
    line-height: 23px;
  }

  /* #h3 Problema */
  #h3 {
    padding: 48px 0;
  }

  .pl h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .pl p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .btn-lg,
  .pl .btn-lg {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60px;
    min-height: 60px;
    padding: 9px 50px;
    font-size: 13.5px;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .btn-lg .btn-arrow,
  .pl .btn-lg .btn-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }

  .sbuy {
    margin: 20px auto 0 auto;
    justify-content: center;
  }

  .pcard {
    padding: 24px 18px;
    gap: 14px;
  }

  .pcard h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .pcard p {
    font-size: 15px;
    line-height: 21px;
  }

  /* Comparação */
  #compare {
    padding: 48px 0;
  }

  #compare h2.cmp {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 28px;
  }

  .compare-wrap {
    gap: 24px;
  }

  .compare-col {
    border-radius: 14px;
  }

  .ccl {
    padding: 14px 16px;
    gap: 12px;
  }

  .ccl.old img,
  .ccl.new img {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .ctl {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .csl {
    font-size: 13px;
  }

  .cc {
    padding: 14px 16px;
  }

  .cc p {
    font-size: 14px;
    line-height: 19px;
  }

  /* Para Você */
  #fy {
    padding: 48px 0;
  }

  #fy h2.fh {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .fyg {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fyc {
    background: #edebea;
    border: 1.712px solid rgba(0, 0, 0, .1);
    border-radius: 21px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
  }

  .fyc img {
    width: 44px;
    height: 44px;
  }

  .fyc h3 {
    font-family: 'IvyPresto Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 38.5px;
    color: #474747;
    line-height: 1;
    text-align: center;
  }

  .fyc p {
    font-size: 16.9px;
    font-weight: 500;
    line-height: 25.7px;
    color: #474747;
    text-align: center;
    max-width: 320px;
  }

  /* Testimonials */
  #testi {
    padding: 48px 0;
  }

  .tc {
    width: 300px;
    padding: 24px 18px;
    gap: 16px;
    border-radius: 18px;
  }

  .tc .qt {
    font-size: 14px;
    line-height: 20px;
  }

  .tc .av {
    width: 40px;
    height: 40px;
  }

  .tc .an {
    font-size: 15px;
  }

  .tc .ar {
    font-size: 12px;
  }

  /* Módulos */
  #mods {
    padding: 48px 0;
  }

  h2.lg {
    font-size: 38px;
    line-height: 1.25;
  }

  .mbooks {
    max-width: 270px;
    margin: 10px auto -15px auto;
  }

  #mods .morn {
    width: 520px;
    height: 520px;
    top: 420px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
  }

  .mg {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mc {
    padding: 20px 16px;
    gap: 16px;
    border-radius: 18px;
  }

  .mi {
    height: 180px;
  }

  .ftit {
    font-size: 26px;
  }

  .mdesc {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Preço */
  #price {
    padding: 48px 0;
  }

  #price h2.ph {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 28px;
  }

  .pleft {
    padding: 24px 16px;
  }

  .pleft h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .pit {
    padding: 10px 0;
    gap: 8px;
  }

  .pn {
    font-size: 14px;
    max-width: none;
    flex: 1;
  }

  .pp {
    font-size: 13px;
    padding: 6px 8px;
  }

  .ptot {
    font-size: 16px;
    padding: 10px;
  }

  .pright {
    padding: 28px 16px;
  }

  .rt {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .pins {
    font-size: 22px;
  }

  .prow {
    align-items: baseline;
  }

  .prs {
    font-size: 22px;
    margin-top: 4px;
  }

  .pval {
    font-size: 64px;
  }

  .pcash {
    font-size: 16px;
    margin: 4px 0 20px;
  }

  .btn {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 60px;
    min-height: 60px;
    padding: 9px 55px 9px 20px;
    font-size: 14px;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Garantia */
  #guar {
    padding: 48px 0;
  }

  .gi {
    gap: 28px;
    margin-bottom: 36px;
  }

  .gs {
    width: 260px;
    height: 250px;
    transform: scale(0.72);
    transform-origin: top center;
    margin: 0 auto 0 auto;
  }

  .gt h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .gt p {
    font-size: 15px;
    line-height: 22px;
  }

  .gbg {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 30px;
    margin-top: 10px;
  }

  /* Autora */
  .ai {
    gap: 24px;
  }

  .apc {
    max-width: 280px;
  }

  .at .cl {
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .at h2.ah {
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .bio {
    font-size: 15px;
    line-height: 22px;
  }

  /* FAQ */
  #faq {
    padding: 48px 0;
  }

  .fl2 {
    gap: 10px;
  }

  .fi {
    min-height: 60px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .fi-header {
    gap: 12px;
  }

  .fq {
    font-size: 15px;
    line-height: 1.3;
  }

  .fi-header img {
    width: 24px;
    height: 24px;
  }

  .fa {
    padding-left: 36px;
  }

  .fi.active .fa {
    margin-top: 10px;
    max-height: 300px;
  }

  .fa p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Fin */
  #fin h2.fh2 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  /* Footer */
  .flinks {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 30px;
  }

  .fcopy {
    font-size: 13px;
  }

  .flinks span {
    font-size: 13px;
  }
}

.italic-s {
  font-family: 'Remixo', serif;
  font-weight: 400;
  font-style: normal;
}

.font-remixo {
  font-family: 'Remixo', serif;
  font-weight: 400;
  font-style: normal;
}

.bold-p {
  font-weight: 700;
}

.text-gray-dark {
  color: #474747;
}