/* ===== Global ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #F8F6EF;
  color: #5C5C5C;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
}

#app-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Header ===== */
.header-bar {
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #556b2f;
}

.logo-icon {
  width: 200px;
  height: auto;
  display: block;
}

/* ===== Section Hero ===== */
#section-head,
main {
  width: 100%;
  max-width: 1120px;
  padding: 1.25rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  color: #4D5C35;
  margin: 0 auto 1rem;
  max-width: 860px;
}

#section-head h1,
main h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: normal;
  font-weight: 400;
  color: #5C5C5C;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

#section-head h1 strong,
main h1 strong {
  font-weight: 700;
  font-style: italic;
  font-size: 1.05em;
}

.hero-intro .destaque,
main#section-head h1 .destaque,
#section-head h1 .destaque,
main h1 .destaque {
  color: #93A867 !important;
  font-style: italic;
}

.description {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #5C5C5C;
  margin-bottom: 1rem;
  max-width: 860px;
}

/* Hero: texto completo no desktop, versão reduzida no mobile */
.description-mobile {
  display: none;
}

@media (max-width: 768px) {
  .description-desktop {
    display: none;
  }

  .description-mobile {
    display: block;
  }

  #section-head,
  main {
    padding: 1rem 1rem 1.5rem;
  }

  #section-head h1,
  main h1 {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-intro {
    font-size: 1.45rem;
    line-height: 1.15;
  }

  .disclaimer {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .video-wrapper {
    margin-bottom: 1.25rem;
    border-radius: 6px;
  }

  .section-praquem {
    padding: 1.5rem 1rem 1rem;
  }

  .section-praquem .section-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .section-praquem .section-title {
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
  }

  .section-praquem .section-outro {
    margin-bottom: 0;
    font-size: 0.92rem;
  }

  .section-prints {
    padding: 1.5rem 1rem 3rem;
  }
}

.disclaimer {
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #8B9E72;
  margin-bottom: 2rem;
  max-width: 800px;
}

.video-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(85, 107, 47, 0.12);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

/* ===== Smart Video Player ===== */
.player-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
}

.video-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
}

.video-loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: videoSpin 0.8s linear infinite;
}

@keyframes videoSpin {
  to { transform: rotate(360deg); }
}

#video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.player-container .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
}

.player-container .overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

.play-button {
  width: 80px;
  height: 80px;
  background: #D93C4F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(217, 60, 79, 0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  margin-bottom: 0.75rem;
  animation: pulseBtn 2s infinite;
}

.play-button svg {
  width: 38px;
  height: 38px;
  fill: #fff;
  margin-left: 4px;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(217, 60, 79, 0.4); }
  70% { box-shadow: 0 0 0 25px rgba(217, 60, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 60, 79, 0); }
}

.player-container:hover .play-button {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 15px 40px rgba(217, 60, 79, 0.5);
}

.overlay-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.progress-bar-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #93A867, #A7C957);
  box-shadow: 0 0 12px #93A867;
  transition: width 0.3s linear;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: relative;
}

.progress-bar-fill::before {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px #93A867;
  opacity: 0;
  transition: opacity 0.3s;
}

.progress-bar-fill.active::before {
  opacity: 1;
}

.speed-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.speed-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .play-button {
    width: 64px;
    height: 64px;
  }
  .play-button svg {
    width: 28px;
    height: 28px;
  }
  .overlay-text {
    font-size: 0.8rem;
  }
  .player-container {
    border-radius: 8px;
  }
}

.cta-button {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #D93C4F;
  padding: 1rem 2.25rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
}

.cta-button:hover {
  background-color: #c23545;
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

/* ===== Section Curso / Pra quem ===== */
.section-praquem {
  width: 100%;
  max-width: 1120px;
  padding: 2rem 1.5rem 4rem;
  margin: 0 auto;
}

.section-praquem .section-intro {
  font-size: 1.15rem;
  font-weight: 400;
  color: #6F6F61;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-praquem .section-title {
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  text-align: center;
  line-height: 1.0;
  margin-bottom: 2rem;
}

.section-praquem .section-title .mamae-que {
  color: #93A867;
}

.section-praquem .grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-praquem .card {
  background: #fff;
  border: 1.5px solid #A7C957;
  border-radius: 24px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-praquem .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-praquem .card-img-wrap {
  border: 1.5px solid #A7C957;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #fff;
}

.section-praquem .card-img {
  width: 100%;
  aspect-ratio: 4 / 1.89; /* altura ~10% menor que 2.1 */
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.section-praquem .card-text {
  padding: 0 0.25rem 0.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
  text-align: center;
  flex: 1;
}

.section-praquem .card-text strong {
  color: #A7C957;
  font-weight: 700;
}

.section-praquem .section-outro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  color: #5C5C5C;
  max-width: 960px;
  margin: 0 auto;
}

.section-praquem .section-outro > div {
  margin-bottom: 0;
  line-height: 1.5;
}

/* Quebra após "passam" só no mobile; no desktop fica na mesma linha */
@media (min-width: 769px) {
  .br-mobile-only {
    display: none;
  }
}

.br-desktop-only {
  display: none;
}

@media (min-width: 769px) {
  .br-desktop-only {
    display: inline;
  }
}

@media (max-width: 768px) {
  .section-praquem .grid-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-praquem .card {
    padding: 1rem;
    border-radius: 16px;
  }

  .section-praquem .card-img-wrap {
    margin-bottom: 0.75rem;
  }

  .section-praquem .card-text {
    font-size: 0.9rem;
    padding: 0 0.15rem 0.25rem;
  }
}

/* ===== Section Benefícios (Benefícios que transformam a rotina da família) ===== */
.section-beneficios {
  width: 100%;
  align-self: stretch;
  background-color: #FCFCF9;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

.section-beneficios-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-beneficios .beneficios-title {
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  text-align: center;
  line-height: 1.0;
  margin-bottom: 0.75rem;
}

.section-beneficios .beneficios-title .destaque {
  color: #93A867;
}

.section-beneficios .beneficios-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.beneficio-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.beneficio-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #545C44;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.beneficio-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .section-beneficios {
    padding: 2rem 1rem 2.5rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .beneficio-card {
    padding: 1.25rem 1rem;
  }

  .section-beneficios .beneficios-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .section-beneficios .beneficios-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
  }
}

/* ===== Section Informativo (O Bebê não precisa...) ===== */
.section-informativo {
  width: 100%;
  align-self: stretch;
  background: #fff;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
}

.section-informativo-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-informativo .bebe-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 2rem;
}

.section-informativo .bebe-title .destaque {
  color: #93A867;
}

.section-informativo .bebe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.section-informativo .bebe-img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.section-informativo .bebe-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.section-informativo .bebe-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-informativo .bebe-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #5C5C5C;
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .section-informativo {
    padding: 2rem 1rem 2.5rem;
  }

  .section-informativo .bebe-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }

  .section-informativo .bebe-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-informativo .bebe-img-wrap {
    order: 1;
  }

  .section-informativo .bebe-text {
    order: 2;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-informativo .bebe-text p {
    font-size: 0.92rem;
  }
}

/* ===== Section Método SPA (Eu tenho um plano detalhado...) ===== */
.section-metodospa {
  width: 100%;
  align-self: stretch;
  background: #F9F8F5;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
}

.section-metodospa-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.section-metodospa .plano-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-metodospa .plano-title .destaque {
  color: #93A867;
}

.section-metodospa .plano-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #7A7A7A;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.plano-outro {
  text-align: center;
  max-width: 720px;
  margin: -1rem auto 0;
  padding-top: 0;
}

.plano-outro-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin: 0 0 1.75rem;
}

.plano-outro .cta-button {
  display: inline-block;
}

/* Método SPA – disposição inspirada na referência (linha central, rows alternados, conectores, dots) */
.section-metodospa {
  background-color: #FDFCF8;
  font-family: "DM Sans", sans-serif;
}

.method-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px 2rem 88px 2rem;
  box-sizing: border-box;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 178px;
  width: 4px;
  background-color: #AABD61;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 4px;
}

.method-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: -140px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.method-row:last-child {
  margin-bottom: 0;
}

.method-content-wrapper {
  width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.method-row.left {
  flex-direction: row;
}

.method-row.right {
  flex-direction: row-reverse;
}

.baby-header-img {
  height: 220px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  margin-bottom: 0;
  position: relative;
  display: block;
}

.method-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #ECECEC;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 380px;
}

.method-card-header {
  background-color: #AABD61;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.method-card-header .big-letter {
  font-size: 22px;
  font-weight: 800;
}

.method-card-body {
  padding: 25px 20px;
  text-align: center;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-family: "DM Sans", sans-serif;
}

.orange-theme .method-card-header {
  background-color: #F5B56A;
}

/* Círculo alinhado ao centro vertical do card (título + descrição), não da imagem */
.timeline-dot {
  width: 30px;
  height: 30px;
  background-color: #AABD61;
  border: 5px solid #FDFCF8;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 65px; /* 80px (metade da imagem 160px) - 15px (metade do dot) = centro do card */
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px #AABD61;
  z-index: 2;
}

.orange-theme-dot {
  background-color: #F5B56A;
  box-shadow: 0 0 0 1px #F5B56A;
  margin-top: 100px;
}

.method-row.orange-theme .timeline-dot {
  margin-top: 100px;
}

/* Potilhado alinhado ao centro vertical do card (título + descrição) */
.connector-line {
  position: absolute;
  top: 50%;
  margin-top: 64px; /* alinha ao centro do card (80px - 1px da linha) */
  height: 2px;
  border-top: 2px dashed #AABD61;
  width: 12%;
}

.orange-connector {
  border-top-color: #F5B56A;
}

.method-row.orange-theme .connector-line {
  margin-top: 99px;
}

/* Potilhado sempre na direção do card: da linha central em direção ao card */
.method-row.left .connector-line {
  right: 50%;
  left: auto;
  width: 8%;
}

.method-row.right .connector-line {
  left: 50%;
  right: auto;
  width: 8%;
}

.spa-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.spa-list li {
  color: #F5B56A;
  text-align: center;
}

.spa-list .first-letter {
  font-size: 24px;
  font-weight: 800;
}

.spa-list .rest {
  font-weight: 400;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .section-metodospa {
    padding: 2rem 1rem 2.5rem;
  }

  .section-metodospa .plano-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .section-metodospa .plano-text {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .method-container {
    padding: 20px 0 60px 0;
  }

  .timeline-line {
    left: 20px;
    transform: translateX(-50%);
  }

  .method-row,
  .method-row.right {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 42px;
    margin-bottom: 1rem;
    width: calc(100% - 62px);
    box-sizing: border-box;
  }

  .method-row:last-child {
    margin-bottom: 0;
  }

  .method-content-wrapper {
    width: 100%;
    margin-bottom: 0;
  }

  .baby-header-img {
    height: 140px;
    margin-bottom: 0;
    display: block;
  }

  .method-card {
    max-width: none;
  }

  .method-card-body {
    font-size: 0.88rem;
    padding: 16px 14px;
  }

  .timeline-dot {
    left: -22px;
    top: 50%;
    margin-top: 65px;
    transform: translate(-50%, -50%);
  }

  .connector-line {
    left: -7px !important;
    width: 7px !important;
    right: auto !important;
    top: 50%;
    margin-top: 64px;
  }

  .plano-outro-text {
    font-size: 0.92rem;
  }
}

/* ===== Section Prints (Depoimentos em imagem) ===== */
.section-prints {
  width: 100%;
  max-width: none;
  padding: 3rem 1.5rem 4rem;
  margin: 0;
  text-align: center;
  background: #fff;
  align-self: stretch;
  box-sizing: border-box;
}

.section-prints .section-depoimentos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-prints .depoimentos-title {
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  margin-bottom: 0.75rem;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-prints .depoimentos-title .destaque {
  color: #93A867;
}

/* Depoimentos: título completo no desktop, sem "e hoje tem um bebê..." no mobile */
.section-prints .depoimentos-title-mobile {
  display: none;
}

@media (max-width: 768px) {
  .section-prints .depoimentos-title-desktop {
    display: none;
  }

  .section-prints .depoimentos-title-mobile {
    display: block;
  }
}

.section-prints .depoimentos-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555555;
  margin-bottom: 2rem;
  text-align: center;
}

.carousel-wrap {
  position: relative;
  margin: 0 auto 2rem;
  max-width: 1200px;
  padding: 0 52px;
  box-sizing: border-box;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.35s ease;
  gap: 1rem;
}

.carousel-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: calc((100% - 2rem) / 3);
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #5C5C5C;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.carousel-btn:hover {
  background: #fff;
  color: #4D5C35;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

@media (max-width: 768px) {
  .carousel-wrap {
    max-width: 100%;
    padding: 0 44px;
  }

  .carousel-slide {
    flex: 0 0 calc((100% - 1rem) / 2);
    min-width: calc((100% - 1rem) / 2);
  }

  .section-prints .depoimentos-title {
    font-size: 1.35rem;
  }

  .section-prints .depoimentos-subtitle {
    font-size: 0.92rem;
  }

  .section-prints .depoimentos-text {
    font-size: 0.92rem;
  }
}

.section-prints .depoimentos-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #5C5C5C;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.section-prints .cta-button {
  margin-top: 0.5rem;
}

@media (max-width: 560px) {
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
}

/* ===== Section Vídeos de depoimentos (Histórias em vídeo) ===== */
.section-videos-depoimentos {
  width: 100%;
  align-self: stretch;
  background: #F8F6EF;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
}

.section-videos-depoimentos-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-videos-depoimentos .videodep-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  margin-bottom: 0.75rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-videos-depoimentos .videodep-title .destaque {
  color: #93A867;
}

.section-videos-depoimentos .videodep-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #4A4A4A;
  margin-bottom: 2rem;
}

.videodep-carousel-wrap {
  position: relative;
  margin: 0 auto 2rem;
  max-width: 1200px;
  padding: 0 52px;
  box-sizing: border-box;
}

.videodep-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
}

.videodep-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.35s ease;
  gap: 1rem;
}

.videodep-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: calc((100% - 2rem) / 3);
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  transition: transform 0.25s ease;
}

.videodep-card:hover {
  transform: translateY(-4px);
}

.videodep-thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 – thumb em tamanho maior */
  overflow: hidden;
  background: #eee;
  border-radius: 12px 12px 0 0;
  clip-path: inset(0 round 12px 12px 0 0);
}
.videodep-thumb > img,
.videodep-thumb > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.videodep-thumb[data-video-id] {
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.videodep-thumb[data-video-id]:hover .videodep-play {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.videodep-thumb[data-video-id]:hover .videodep-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
}

.videodep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
  border-radius: 12px 12px 0 0;
}

/* Modal: player em janela com fundo desfocado */
.videodep-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.videodep-modal.is-open {
  display: flex;
}
.videodep-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.videodep-modal-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 900px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.videodep-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.videodep-modal-close:hover {
  background: #fff;
}
.videodep-modal-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.videodep-modal-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.videodep-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: url("../images/icon-player.png") center center no-repeat;
  background-size: contain;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  z-index: 1;
}

.videodep-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #4A4A4A;
  line-height: 1.3;
  margin: 1rem 1rem 0.5rem;
  padding: 0;
}

.videodep-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #5C5C5C;
  line-height: 1.55;
  margin: 0 1rem 1rem;
  flex: 1;
}

.videodep-card-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8CA06F;
  text-align: right;
  margin: 0 1rem 1rem;
  padding: 0;
}

.section-videos-depoimentos .videodep-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #5C5C5C;
  max-width: 860px;
  margin: 0 auto 1rem;
}

.section-videos-depoimentos .cta-button {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .section-videos-depoimentos {
    padding: 2rem 1rem 2.5rem;
  }

  .section-videos-depoimentos .videodep-title {
    font-size: 1.35rem;
  }

  .videodep-carousel-wrap {
    max-width: 100%;
    padding: 0 44px;
  }

  .videodep-card {
    flex: 0 0 calc((100% - 1rem) / 2);
    min-width: calc((100% - 1rem) / 2);
  }

  .videodep-card-title {
    font-size: 0.9rem;
    margin: 0.75rem 0.75rem 0.35rem;
  }

  .videodep-card-desc {
    font-size: 0.82rem;
    margin: 0 0.75rem 0.75rem;
  }

  .videodep-card-author {
    font-size: 0.82rem;
    margin: 0 0.75rem 0.75rem;
  }
}

@media (max-width: 560px) {
  .videodep-carousel-wrap {
    padding: 0 44px;
  }

  .videodep-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* ===== Section Jeito certo e errado ===== */
.section-jeitocerto-jeitoerrado {
  width: 100%;
  align-self: stretch;
  background: #FFFFFF;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

.metodo-spa-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.metodo-spa-title {
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  margin-bottom: 0.75rem;
}

.metodo-spa-title .destaque {
  color: #93A867;
}

.metodo-spa-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #5C5C5C;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.metodo-spa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.0rem;
  row-gap: 0.9rem;
  align-items: start;
}

.metodo-spa-header {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}

.metodo-spa-header-errado {
  color: #D93C4F;
  max-width: 430px;
  width: 100%;
  justify-self: end;
}

.metodo-spa-header-certo {
  color: #7C9647;
  max-width: 430px;
  width: 100%;
  justify-self: start;
}

.metodo-spa-item {
  border-radius: 20px;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  max-width: 430px;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodo-spa-item-errado {
  background-color: #D93C4F;
  justify-self: end;
}

.metodo-spa-item-certo {
  background-color: #AABD61;
  justify-self: start;
}

@media (max-width: 768px) {
  .section-jeitocerto-jeitoerrado {
    padding: 2rem 1rem 2.5rem;
  }

  .metodo-spa-title {
    font-size: 1.35rem;
  }

  .metodo-spa-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .metodo-spa-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    max-width: 100%;
  }

  .metodo-spa-header {
    padding: 0.75rem 0.5rem;
    border-radius: 16px;
    font-size: 0.9rem;
    margin-bottom: 0;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .metodo-spa-header-errado {
    background-color: #D93C4F;
    color: #FFFFFF;
    justify-self: stretch;
    max-width: none;
  }

  .metodo-spa-header-certo {
    background-color: #AABD61;
    color: #FFFFFF;
    justify-self: stretch;
    max-width: none;
  }

  .metodo-spa-item {
    padding: 0.75rem 0.6rem 0.75rem 1.8rem;
    font-size: 0.78rem;
    min-height: 80px;
    height: auto;
    max-width: none;
    justify-self: stretch;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    border-radius: 16px;
  }

  .metodo-spa-item-errado {
    background-color: #D93C4F;
    color: #FFFFFF;
    justify-self: stretch;
  }

  .metodo-spa-item-errado::before {
    content: "✕";
    position: absolute;
    left: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .metodo-spa-item-certo {
    background-color: #AABD61;
    color: #FFFFFF;
    justify-self: stretch;
  }

  .metodo-spa-item-certo::before {
    content: "✓";
    position: absolute;
    left: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
  }
}

@media (min-width: 769px) {
  .metodo-spa-item {
    height: 72px;
  }
}

/* ===== Section Oferta (O que você vai aprender...) ===== */
.section-oferta {
  width: 100%;
  align-self: stretch;
  background: #F8F6EF;
  padding: 3rem 1.5rem 2.5rem;
  box-sizing: border-box;
}

.section-oferta-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.oferta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  margin: 0 0 1rem;
}

.oferta-title .destaque {
  color: #93A867;
}

.oferta-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #5C5C5C;
  margin: 0 0 0.75rem;
}

.oferta-modulos {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.oferta-bonus-intro {
  margin: 1.8rem 0 1.8rem;
}

.oferta-bonus-intro .destaque {
  color: #93A867;
}

.oferta-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.oferta-cover {
  position: relative;
  width: 100%;
  min-height: 220px;
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  cursor: pointer;
}

.oferta-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.oferta-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.oferta-cover .oferta-pill,
.oferta-cover .oferta-cover-title,
.oferta-cover .oferta-bonus-price {
  position: relative;
  z-index: 2;
}

.oferta-bonus-price .oferta-price-riscado {
  color: #F5B56A;
  text-decoration: line-through;
}

.oferta-panel {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid #F0F0E8;
}

.oferta-panel-single {
  padding: 0.5rem 1.2rem 0.9rem;
  text-align: center;
}

.oferta-panel-single .oferta-body-intro {
  text-align: center;
  margin: 0;
}

.oferta-cover-1 {
  background: linear-gradient(135deg, #F4A261, #E76F51);
}

.oferta-cover-2 {
  background: linear-gradient(135deg, #90BE6D, #4D908E);
}

.oferta-cover-3 {
  background: linear-gradient(135deg, #577590, #264653);
}

.oferta-cover-bonus1 {
  background: linear-gradient(135deg, #F6C453, #E67E22);
}

.oferta-cover-bonus2 {
  background: linear-gradient(135deg, #8BC6EC, #4A90E2);
}

.oferta-cover-bonus3 {
  background: linear-gradient(135deg, #D1A6E8, #A855F7);
}

.oferta-cover-bonus4 {
  background: linear-gradient(135deg, #7DD3C0, #38A89D);
}

.oferta-cover-bonus5 {
  background: linear-gradient(135deg, #F9A8D4, #EC4899);
}

.oferta-pill {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.oferta-cover-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.oferta-toggle {
  margin: 0;
  padding: 0.85rem 1.1rem;
  border: none;
  border-top: 1px solid #F0F0E8;
  background: #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4D5C35;
  text-align: left;
  width: 100%;
}

.oferta-toggle-text {
  text-align: left;
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

.oferta-toggle-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.oferta-card.open .oferta-toggle-icon {
  transform: rotate(180deg);
}

.oferta-body {
  padding: 0 1.2rem 0.9rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.oferta-card.open .oferta-body {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.9rem;
}

.oferta-bonus1-intro,
.oferta-bonus-intro {
  padding: 0.5rem 1.2rem 0.3rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5C5C5C;
}

.oferta-body-intro {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5C5C5C;
  margin: 0 0 0.6rem;
  text-align: left;
}

.oferta-lessons {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  text-align: left;
}

.oferta-lessons li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5C5C5C;
  margin-bottom: 0.2rem;
}

.oferta-pricing {
  margin-top: 3rem;
  text-align: center;
}

.oferta-pricing-intro {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5C5C5C;
  margin: 0 0 1.2rem;
}

.oferta-pricing-intro strong {
  font-weight: 700;
}

.oferta-price-old {
  margin: 0 0 0.25rem;
}

.oferta-price-riscado {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #D93C4F;
  text-decoration: line-through;
}

.oferta-price {
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 0.6rem;
}

.oferta-price-dia {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #5C5C5C;
  margin: 0 0 1.6rem;
}

.oferta-price-parcelas {
  font-size: 1.6rem;
  font-weight: 500;
  color: #9CB45B;
  margin-right: 0.25rem;
}

.oferta-price-valor {
  font-size: 3rem;
  font-weight: 800;
  color: #9CB45B;
}

.oferta-benefits-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0.45rem 1rem;
  width: fit-content;
  margin: 0 auto 1.6rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.oferta-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #4D5C35;
}

.oferta-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: #EFF4E3;
  color: #4D5C35;
  font-size: 0.8rem;
}

.oferta-benefit-label {
  font-weight: 500;
}

.oferta-pricing-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5C5C5C;
  margin: 0 0 1.5rem;
}

.oferta-cta-button {
  margin-top: 0;
}

@media (max-width: 768px) {
  .section-oferta {
    padding: 2rem 1rem 2rem;
  }

  .oferta-title {
    font-size: 1.35rem;
  }

  .oferta-text {
    font-size: 0.92rem;
  }

  .oferta-modulos {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .oferta-cover {
    min-height: 170px;
    padding: 1rem;
  }

  .oferta-cover-img {
    object-position: left center;
  }

  .oferta-cover-title {
    font-size: 1.15rem;
  }

  .oferta-pill {
    font-size: 0.72rem;
  }

  .oferta-bonus-price {
    font-size: 0.82rem;
  }

  .oferta-toggle {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
  }

  .oferta-body-intro {
    font-size: 0.85rem;
  }

  .oferta-lessons li {
    font-size: 0.85rem;
  }

  .oferta-benefits-row {
    justify-content: center;
    gap: 10px;
    padding: 0.4rem 0.75rem;
  }

  .oferta-benefit {
    font-size: 0.65rem;
  }

  .oferta-pricing-intro {
    font-size: 0.9rem;
  }

  .oferta-pricing-text {
    font-size: 0.9rem;
  }

  .oferta-price-valor {
    font-size: 2.4rem;
  }

  .oferta-price-parcelas {
    font-size: 1.3rem;
  }

  .oferta-bonus-intro {
    margin: 1.25rem 0;
  }
}

/* ===== Section Garantia ===== */
.section-garantia {
  width: 100%;
  align-self: stretch;
  background: #4D5C35;
  padding: 2.5rem 1.5rem 2.8rem;
  box-sizing: border-box;
}

.section-garantia-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.garantia-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.garantia-image {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.garantia-7dias {
  font-weight: 900;
}

.garantia-seal {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.garantia-seal-dias {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #4D5C35;
  line-height: 1;
}

.garantia-seal-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #4D5C35;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1;
  margin-top: -0.15rem;
}

.garantia-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.garantia-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.garantia-title-light {
  font-weight: 500;
  opacity: 0.95;
}

.garantia-text {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.garantia-text p {
  margin: 0 0 0.85rem;
}

.garantia-text p:last-child {
  margin-bottom: 0;
}

.garantia-risco {
  font-weight: 700;
  color: #FFFFFF;
}

.garantia-cta-text {
  font-weight: 600;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .section-garantia {
    padding: 2rem 1rem 2.25rem;
  }

  .section-garantia-inner {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .garantia-visual {
    flex-direction: column;
    justify-content: center;
  }

  .garantia-image {
    max-height: 400px;
  }

  .garantia-seal {
    width: 200px;
    height: 200px;
  }

  .garantia-seal-dias {
    font-size: 2.8rem;
  }

  .garantia-seal-label {
    font-size: 1.4rem;
  }

  .garantia-title {
    font-size: 1.35rem;
  }

  .garantia-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) {
  .oferta-cover {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .oferta-cover {
    min-height: 150px;
  }
}

/* ===== Section FAQ (Perguntas frequentes) ===== */
.section-faq {
  width: 100%;
  align-self: stretch;
  background: #F8F6EF;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
}

.section-faq-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  margin-bottom: 0.5rem;
}

.faq-title .destaque {
  color: #93A867;
}

.faq-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #5C5C5C;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
  overflow: hidden;
}

.faq-header {
  width: 100%;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background-color: #A6BE63;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
}

.faq-question {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #646464;
  text-align: left;
}

.faq-icon {
  font-size: 0.9rem;
  color: #9FA8A3;
}

.faq-body {
  padding: 0 1.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #7A8B62;
  line-height: 1.5;
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

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

@media (max-width: 600px) {
  .section-faq {
    padding: 2rem 1rem 2.5rem;
  }

  .section-faq-inner {
    max-width: 100%;
  }

  .faq-title {
    font-size: 1.35rem;
  }

  .faq-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }

  .faq-header {
    padding: 0.75rem 0.9rem;
  }

  .faq-question {
    font-size: 0.88rem;
  }

  .faq-body {
    padding: 0 1rem 0.75rem;
    font-size: 0.85rem;
  }

  .faq-badge {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }
}

/* CTA final após FAQ */
.section-faq-cta {
  width: 100%;
  align-self: stretch;
  background: #FFFFFF;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
  text-align: center;
}

.section-faq-cta-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-cta-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #5C5C5C;
  margin: 0 0 1.75rem;
}

.faq-cta-button {
  font-size: 1rem;
  padding-inline: 2.75rem;
}

@media (max-width: 600px) {
  .section-faq-cta {
    padding: 2rem 1rem 2.5rem;
  }

  .faq-cta-text {
    font-size: 0.92rem;
  }
}

/* ===== Section Quem é Vanessa ===== */
.section-vanessa {
  width: 100%;
  align-self: stretch;
  background: #F8F6EF;
  padding: 0; /* padding zerado conforme pedido */
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: -24px; /* puxa a base da seção até encostar no rodapé amarelo */
}

.section-vanessa-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.quem-image-wrap {
  flex: 0 0 auto;
  max-width: 620px; /* aumenta a altura, aproximando do rodapé amarelo */
  margin-right: 1.25rem;
  margin-top: -10px; /* mantém a cabeça na faixa branca ao crescer */
}

.quem-image {
  width: 100%;
  height: auto;
  display: block;
}

.quem-content {
  max-width: 500px;
  text-align: left;
  padding-bottom: 4.5rem; /* afasta ainda mais o texto do rodapé amarelo */
}

.quem-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6C7C3D;
  margin: 0 0 0.2rem;
}

.quem-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #545B40;
  line-height: 1.0;
  margin: 0 0 0.5rem;
}

.quem-highlight {
  color: #93A867;
}

.quem-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border-radius: 9999px;
  background: #FFFFFF;
  color: #7A7A7A;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.quem-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #5C5C5C;
  margin: 0 0 0.9rem;
}

@media (max-width: 768px) {
  .section-vanessa {
    margin-bottom: -12px;
  }

  .section-vanessa-inner {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .quem-content {
    max-width: 100%;
    padding: 0 1rem 2.5rem;
    text-align: center;
  }

  .quem-title {
    font-size: 1.5rem;
  }

  .quem-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .quem-image-wrap {
    max-width: 280px;
    margin: 0 0 1.25rem;
  }
}

/* ===== Rodapé amarelo ===== */
.site-footer {
  width: 100%;
  align-self: stretch;
  background: #E9B66A;
  padding: 1.4rem 1.5rem;
  box-sizing: border-box;
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #FFFFFF;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  font-weight: 600;
}

.footer-link {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
}

/* ── Pre-Checkout Modal ───────────────── */
.precheckout-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.precheckout-overlay.active {
  opacity: 1;
  visibility: visible;
}

.precheckout {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.precheckout-overlay.active .precheckout {
  transform: translateY(0) scale(1);
}

.precheckout__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  color: #999;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  line-height: 1;
}

.precheckout__close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
  transform: rotate(90deg);
}

.precheckout__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(147, 168, 103, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.precheckout__icon svg {
  width: 26px;
  height: 26px;
  fill: #93A867;
}

.precheckout__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 6px;
}

.precheckout__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}

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

.precheckout__field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.precheckout__field input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.precheckout__field input:focus {
  border-color: #93A867;
  background: rgba(147, 168, 103, 0.04);
  box-shadow: 0 0 0 3px rgba(147, 168, 103, 0.12);
}

.precheckout__field input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.03);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.precheckout__submit {
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  border: none;
  background: #93A867;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.precheckout__submit:hover {
  background: #7a8e53;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(147, 168, 103, 0.3);
}

.precheckout__submit:active {
  transform: translateY(0);
}

.precheckout__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.precheckout__spinner {
  width: 18px;
  height: 18px;
  animation: pcSpinLoader 0.8s linear infinite;
}

@keyframes pcSpinLoader {
  to { transform: rotate(360deg); }
}

@media (max-width: 400px) {
  .precheckout {
    padding: 32px 22px 28px;
    border-radius: 20px;
  }
  .precheckout__title {
    font-size: 1.15rem;
  }
  .precheckout__desc {
    font-size: 0.8rem;
  }
  .precheckout__field input {
    padding: 12px 14px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
  .precheckout__submit {
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 1.25rem 1rem;
  }

  .footer-links {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
  }

  .footer-copy {
    font-size: 0.75rem;
    text-align: center;
  }
}
