/* ============================================
   O CAMINHO – Static Landing Page Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Sora", "Roboto", sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: rgb(243, 0, 0);
  text-align: center;
  padding: 14px 24px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.top-bar .countdown-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.countdown-digits {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.countdown-label {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: -0.1px;
}

.countdown-sep {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* --- WhatsApp Fixed Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
}

/* ============================================
   HERO SECTION (Section 1)
   ============================================ */
.hero-section {
  background-image: url("../img/hero-imersao-o-caminho-desktop.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 360px 0 119px;
  position: relative;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, transparent, rgb(102, 102, 102)) 1 /
    1 / 0 stretch;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}

.hero-logo {
  width: 280px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 46px;
  color: rgb(255, 255, 255);
  margin: 1.5em 0;
  width: 80%;
  max-width: 80%;
  text-align: center;
  align-self: center;
}

.hero-headline strong {
  font-weight: 700;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  position: relative;
  background-image: linear-gradient(
    45deg,
    rgb(50, 205, 50),
    rgb(0, 100, 0),
    rgb(50, 205, 50)
  );
  background-size: 400% 200%;
  color: rgb(255, 255, 255);
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  padding: 20px 50px;
  border-radius: 180px;
  box-shadow: rgba(50, 205, 50, 0.4) 0px 0px 32px -2px;
  transition: 0.8s;
  animation: textura 2.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite normal
    none running;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-cta::before {
  content: "";
  position: absolute;
  z-index: 999;
  inset: 0px;
  padding: 3px;
  border-radius: 180px;
  background: linear-gradient(
    35deg,
    rgb(50, 205, 50),
    transparent,
    transparent
  );
  mask:
    linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px) content-box
      exclude,
    linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px);
  margin: -1px;
}

.btn-cta:hover {
  border-radius: 180px;
  animation: textura 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite normal
    none running;
  background-image: linear-gradient(
    45deg,
    rgb(50, 205, 50),
    rgb(0, 100, 0),
    rgb(50, 205, 50)
  );
  background-size: 400% 200%;
  transition: 0.8s;
  box-shadow: rgba(50, 205, 50, 0.4) 0px 0px 32px -2px;
}

@keyframes textura {
  0% {
    background-position: 0px center;
  }
  100% {
    background-position: 100% 0px;
  }
}

.price-note {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-top: 12px;
  text-align: center;
  margin: auto;
}

.info-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: rgb(255, 183, 80);
}

.info-list li svg {
  flex-shrink: 0;
}

/* ============================================
   EVIDENCIAS SECTION (Section 2)
   ============================================ */
.evidencias-section {
  background: #111;
  padding: 130px 0 60px;
  text-align: center;
}

.evidencias-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 44px;
  color: rgb(245, 245, 245);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.evidencias-section h2 strong {
  font-weight: 700;
}

.carousel-research {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.carousel-research .swiper {
  width: 100%;
}

.carousel-research .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

/* ============================================
   O QUE VOCE VAI ENCONTRAR (Section 3)
   ============================================ */
.encontrar-section {
  background-image: url("../img/fundo-depoimentos-videos-desktop.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 117px 0 100px;
}

.encontrar-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 44px;
  color: rgb(245, 245, 245);
  margin-bottom: 40px;
  text-align: center;
}

.encontrar-section h2 strong {
  font-weight: 700;
}

.date-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: rgb(255, 255, 255);
}

.feature-item .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: #32cd32;
}

/* Target audience section */
.audience-section {
  background-image: url("../img/fundo-para-quem-profissionais-desktop.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 130px 0 76px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to left, transparent, rgb(102, 102, 102)) 1 /
    1 / 0 stretch;
}

.audience-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: rgb(236, 236, 236);
  margin-bottom: 32px;
  max-width: 50%;
  margin-left: auto;
}

.audience-section h2 strong {
  font-weight: 700;
}

.audience-list {
  list-style: none;
  margin: 20px 0 40px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 49%;
  padding-right: 20px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  line-height: 1.5;
}

.audience-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   DEPOIMENTOS (Section 4)
   ============================================ */
.depoimentos-section {
  background-image: url("../img/fundo-depoimentos-videos-desktop.webp");
  background-position: center top;
  background-size: cover;
  padding: 116px 0 60px;
}

.depoimentos-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: rgb(236, 236, 236);
  margin-bottom: 40px;
  max-width: 61%;
  text-align: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.depoimentos-section h2 strong {
  font-weight: 700;
}

.dep-swiper .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #32cd32 !important;
  opacity: 1;
}

/* ============================================
   VIDEO TESTIMONIALS (Section 5)
   ============================================ */
.videos-section {
  background-image: url("../img/fundo-depoimentos-videos-desktop.webp");
  background-position: center top;
  background-size: cover;
  padding: 80px 0 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 24px;
  height: 24px;
  fill: #333;
  margin-left: 4px;
}

/* ============================================
   ALAVANQUE SECTION (Section 6)
   ============================================ */
.alavanque-section {
  background-image: url("../img/fundo-alavanque-carreira-desktop.webp");
  background-position: center top;
  background-size: cover;
  padding: 170px 0;
  position: relative;
}

.alavanque-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0);
  opacity: 0.54;
}

.alavanque-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.alavanque-left {
  flex: 1;
  padding-right: 60px;
}

.alavanque-left h2 {
  font-family: "Sora", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 62px;
  color: rgb(236, 236, 236);
}

.alavanque-left h2 strong {
  font-weight: 700;
}

.alavanque-right {
  flex-shrink: 0;
}

.info-list-dark li {
  color: #333;
}

/* ============================================
   PRICE BOX (Section 7)
   ============================================ */
.price-section {
  background-image: url("../img/fundo-claudia-siqueira-inscricao.webp");
  background-position: center top;
  background-size: cover;
  padding: 157px 0 90px;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
  margin: 0;
  background: rgb(255, 255, 255);
  border-radius: 22px;
  padding: 60px 60px;
}

.price-box .logo {
  width: 240px;
  margin-bottom: 20px;
}

.price-details-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-details-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}

.price-amount {
  font-family: "Sora", sans-serif;
  font-size: 53px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgb(255, 80, 80);
  margin-bottom: 6px;
  line-height: 1.1;
  text-align: center;
}

.price-amount strong {
  font-size: 53px;
  color: rgb(255, 80, 80);
}

.price-or {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  text-align: center;
}

.price-badge {
  font-size: 14px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

/* ============================================
   BENEFITS / SUA VIDA APOS (Section 8)
   ============================================ */
.benefits-section {
  background: linear-gradient(rgb(39, 39, 39) 0%, rgb(0, 0, 0) 100%);
  border-radius: 144px;
  padding: 110px 80px;
  margin: 40px auto;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .benefits-section {
    border-radius: 80px;
    padding: 80px 40px;
  }
}

.benefits-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: rgb(236, 236, 236);
  margin-bottom: 30px;
  max-width: 61%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.benefits-section h2 strong {
  font-weight: 700;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-item .check-circle {
  width: 28px;
  height: 28px;
  background: #32cd32;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-item .check-circle svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.benefit-item p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}

/* ============================================
   CLAUDIA BIO (Section 9)
   ============================================ */
.claudia-section {
  background-image: url("../img/fundo-claudia-siqueira-inscricao.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 90px;
}

.claudia-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 55%;
  text-align: left;
}

.claudia-inner h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: rgb(236, 236, 236);
  margin-bottom: 18px;
}

.claudia-inner h2 strong {
  font-weight: 700;
}

.claudia-inner .bio-text {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(226, 226, 226);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 100%;
}

.claudia-inner .cta-text {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(224, 224, 224);
  margin-bottom: 24px;
  margin-top: 60px;
  text-align: center;
  align-self: center;
}

.claudia-inner .cta-text strong {
  font-weight: 700;
}

/* ============================================
   FAQ SECTION (Section 10)
   ============================================ */
.faq-section {
  background: linear-gradient(rgb(39, 39, 39) 0%, rgb(0, 0, 0) 100%);
  border-radius: 144px;
  padding: 100px 80px;
  margin: 40px auto;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .faq-section {
    border-radius: 60px;
    padding: 80px 28px;
  }
}

.faq-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: rgb(226, 226, 226);
  text-align: left;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgb(87, 87, 87);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 29px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background: rgb(29, 29, 29);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7em;
  color: rgb(255, 255, 255);
  transition: background 0.2s;
  user-select: none;
  gap: 16px;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: #32cd32;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 16px 24px 20px;
}

.faq-answer p {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(226, 226, 226);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #000;
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTION CENTER HELPERS
   ============================================ */
.text-center {
  text-align: center;
}

.mt-8 {
  margin: 8px auto 0;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-40 {
  margin-bottom: 40px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SWIPER CUSTOM
   ============================================ */
.swiper-container-custom {
  padding-bottom: 40px !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .info-list {
    align-items: center;
  }

  .videos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .alavanque-inner {
    flex-direction: column;
    text-align: center;
  }

  .alavanque-left h2 {
    max-width: 100%;
  }

  .audience-section h2,
  .audience-list {
    max-width: 60%;
  }

  .claudia-inner {
    max-width: 65%;
  }

  .benefits-section,
  .faq-section {
    border-radius: 80px;
    padding: 80px 40px;
  }
}

@media (max-width: 767px) {
  /* TOP BAR */
  .top-bar {
    font-size: 11px;
  }
  .top-bar .countdown-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  .countdown-digits {
    font-size: 16px;
  }
  .countdown-label {
    font-size: 13px;
  }

  /* HERO: exact background crop from original */
  .hero-section {
    padding: 80px 20px 80px;
    background-position: -257px -8px;
    background-size: 900px;
    background-repeat: no-repeat;
  }

  /* Hero logo: 202px wide, 150px top margin to push below background image area */
  .hero-logo {
    width: 202px;
    margin-top: 150px;
    margin-bottom: 0;
    align-self: center;
  }

  /* Hero headline: 22px on mobile, full width */
  .hero-headline {
    font-size: 22px;
    line-height: 1.3em;
    width: 100%;
    max-width: 100%;
    margin: 2.5em 0;
  }

  /* CTA button: 18px, padding 20px 40px on mobile */
  .btn-cta {
    font-size: 18px;
    padding: 20px 40px;
  }

  /* Info-list yellow date text: 13px on mobile */
  .info-list li {
    font-size: 13px;
  }

  /* EVIDENCIAS: padding 60px/60px, h2 25px full width */
  .evidencias-section {
    padding: 60px 0 60px;
  }
  .evidencias-section h2 {
    font-size: 25px;
    line-height: 1.5em;
    padding: 0;
    margin-bottom: 0;
  }

  /* ENCONTRAR: image contained (not cropped), padding 40px/80px with 20px sides */
  .encontrar-section {
    padding: 40px 20px 80px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .encontrar-section h2 {
    font-size: 25px;
    line-height: 1.5em;
    padding: 0;
  }

  /* Features list items: 15px on mobile */
  .feature-item {
    font-size: 15px;
  }

  /* AUDIENCE / PARA QUEM: mobile background image + 80px padding + centered text */
  .audience-section {
    background-image: url("../img/fundo-para-quem-profissionais-mobile.webp");
    background-size: cover;
    padding: 80px 20px 80px;
  }
  .audience-section h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 1.4em;
    margin-top: 300px;
    margin-bottom: 0;
  }
  .audience-list {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .audience-list li {
    font-size: 16px;
  }
  /* CTA button in audience section: 19px */
  .audience-section .btn-cta {
    font-size: 19px;
  }
  /* Yellow price note in audience section: 13px */
  .audience-section .price-note {
    font-size: 13px;
  }

  /* DEPOIMENTOS: 80px top, 20px bottom */
  .depoimentos-section {
    padding: 80px 20px 20px;
  }
  .depoimentos-section h2 {
    width: 100%;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: 0;
  }

  /* VIDEOS */
  .videos-section {
    padding: 80px 20px 20px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }

  /* ALAVANQUE: exact background positioning from original */
  .alavanque-section {
    padding: 80px 20px;
    background-position: -124px 0px;
    background-size: 1000px;
  }
  .alavanque-left {
    padding-right: 0;
    width: 100%;
  }

  .alavanque-left h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: -10px;
  }

  .price-box {
    margin: 0 auto;
    padding: 40px 24px;
    width: 100%;
    max-width: 100%;
  }

  /* PRICE SECTION: mobile-specific image */
  .price-section {
    background-image: url("../img/fundo-claudia-siqueira-mobile.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px 80px;
  }
  .price-amount {
    font-size: 42px;
  }
  /* CTA button in price: 21px */
  .price-section .btn-cta {
    font-size: 21px;
  }

  /* BENEFITS SECTION */
  .benefits-section {
    border-radius: 80px;
    padding: 80px 20px;
    margin: 20px 12px;
  }
  .benefits-section h2 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.5em;
    margin-bottom: 0;
  }

  /* CLAUDIA BIO: plain dark, sem imagem mobile */
  .claudia-section {
    background: #0d0d0d;
    padding: 60px 20px 80px;
  }
  .claudia-inner {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .claudia-inner h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .claudia-inner .bio-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .claudia-inner .cta-text {
    margin-top: 40px;
  }
  .claudia-section .btn-cta {
    font-size: 18px;
  }
  .claudia-section .price-note {
    font-size: 13px;
  }

  /* FAQ SECTION */
  .faq-section {
    border-radius: 60px;
    padding: 80px 20px 80px;
    margin: 20px 12px;
  }
  .faq-section h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .faq-item {
    width: 100%;
    max-width: 100%;
  }
  .faq-question {
    font-size: 15px;
    line-height: 1.7em;
  }
  .faq-answer p {
    font-size: 14px;
  }
  /* CTA button in FAQ: 16px, padding 15px 50px 10px */
  .faq-section .btn-cta {
    font-size: 16px;
    line-height: 1.4em;
    padding: 15px 50px 10px;
  }
  .faq-section .price-note {
    font-size: 13px;
  }
}
