/* Tipografía y colores */
:root {
   --bg: #FFFFFF;
   --text: #000000;
   --text-dark: #333333;
   --green: #4C6A38;
   --green-light: #E8ECD7;
   --shadow: rgba(0,0,0,0.08);
   --footer-h: 52px; /* altura reservada aproximada do footer fixo */
 }

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dark);
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.container {
   max-width: 960px;
   margin: 104px auto 125px;
   padding: 0 20px;
   padding-bottom: calc(var(--footer-h) + 24px);
 }

/* Barra de progreso superior */
.progress-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: #f2f2f2;
  z-index: 1000;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 300ms ease;
}

.title {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 22px;
  color: var(--text);
}
.subtitle {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.body-text { font-size: 16px; }

/* Pantallas */
.screen {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease;
}
.screen.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder de imagen */
.image-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #efefef, #e6e6e6);
  box-shadow: 0 8px 24px var(--shadow);
  margin: 12px 0 24px;
}

/* Botones de opciones */
.options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.btn {
  appearance: none;
  border: none;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px var(--shadow);
  text-align: left;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); }
.btn[disabled] {
  background: var(--green-light);
  color: var(--text-dark);
  cursor: not-allowed;
}

/* Lista de checkboxes */
.checkbox-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}
.checkbox-item {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px;
}

/* Testimonial */
.testimonial-card {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 24px var(--shadow);
}
.stars { color: #f5a623; font-size: 18px; }
.author { font-weight: 600; margin: 6px 0 8px; color: var(--text); }
.quote { margin: 0; }

.loading-block { margin-top: 20px; }
.loading-label { font-weight: 600; margin-bottom: 8px; }
.loading-progress {
  width: 100%; height: 10px; border-radius: 999px;
  background: #f0f0f0;
  overflow: hidden;
}
.loading-fill {
  height: 100%; background: var(--green);
  border-radius: 999px;
}
.loading-percent { margin-top: 6px; font-weight: 600; }

/* Final Offer */
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 18px 0;
}
.image-card {
  height: 120px; border-radius: 14px;
  background: linear-gradient(135deg, #efefef, #e6e6e6);
  box-shadow: 0 8px 20px var(--shadow);
}
.highlight-box {
  background: #FFF7D6; /* amarillo claro */
  border: 1px solid #FFECB3;
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0 16px;
}
.benefits {
  list-style: none; padding: 0; margin: 0 0 18px;
}
.benefits li { margin: 8px 0; }

.cta {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 16px;
  }

/* Footer */
.footer {
  position: fixed; bottom: 0; left: 0; right: 0;
  font-size: 12px; text-align: center;
  padding: 10px 12px;
  color: #888888; background: #fff; border-top: 1px solid #efefef;
}

/* Responsive */
@media (max-width: 640px) {
  .title { font-size: 24px; }
  .container { margin-top: 72px; }
}

/* Carousel */
.carousel {
    width: 80%;
    margin: 12px auto 24px;
    position: relative;
    z-index: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 0 8px 24px var(--shadow);
  }
.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 400ms ease;
}
.carousel-slide {
   flex: 0 0 100%;
   min-height: 208px;
   background: #fff;
   display: grid;
   place-items: center;
 }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(76,106,56,0.92);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--shadow);
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0 12px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: #d0d7c6;
}
.dot.is-active { background: var(--green); }

/* Noscript gallery fallback */
.gallery-noscript {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 14px;
  box-shadow: 0 8px 20px var(--shadow);
  background: #fafafa;
  padding: 8px;
}
.gallery-noscript img {
   width: 100%;
   height: 192px;
   object-fit: contain;
   background: #fff;
   border-radius: 10px;
   scroll-snap-align: center;
 }

/* Zoom modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-img {
  max-width: 92vw; max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  background: #fff;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  font-size: 24px; line-height: 1;
  border: none; border-radius: 999px;
  background: #fff; color: #333;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--shadow);
}

@media (max-width: 640px) {
  .carousel-slide { min-height: 220px; }
  .modal-img { max-width: 96vw; max-height: 80vh; }
}

@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}

@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
/* Ajuste de proporção do placeholder da imagem do Step 1 */
#step1 .image-placeholder {
  height: auto;
  aspect-ratio: var(--img-ar, 16 / 9);
  display: block;
}
#step1 .image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
#intro .benefits {
  margin-bottom: clamp(32px, 8vw, 96px);
}
#intro #startQuizBtn {
  margin-top: clamp(32px, 8vw, 96px);
  scroll-margin-bottom: calc(var(--footer-h) + 24px);
}
@media (max-width: 640px) {
  #intro #startQuizBtn {
    margin-top: clamp(28px, 10vw, 80px);
  }
}

@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
#step5 #continueStep5 {
  margin-top: clamp(24px, 6vw, 72px);
  /* mantém visibilidade ao rolar perto do footer fixo */
  scroll-margin-bottom: calc(var(--footer-h) + 24px);
}

/* Form block and text input styles for Step 7 */
.form-block {
  display: grid;
  justify-items: center;
  margin: 14px 0 18px;
}
.text-input {
  width: 100%;
  max-width: 520px;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 4px 12px var(--shadow);
  outline: none;
}
.text-input:focus {
  border-color: var(--green);
  box-shadow: 0 8px 20px var(--shadow);
}
#step7 #continueName {
  margin-top: clamp(20px, 6vw, 60px);
  scroll-margin-bottom: calc(var(--footer-h) + 24px);
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
.final-offer-wrap {
  margin: 18px 0;
  padding: clamp(18px, 4vw, 32px) 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3f2f24, #4c382a);
  box-shadow: 0 8px 24px var(--shadow);
}
.offer-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 30px);
  text-align: center;
  margin: 0 0 12px;
}
.offer-card {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  padding: clamp(14px, 3.5vw, 24px);
}
.offer-subtitle {
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 14px;
}
.price-block {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  margin: 8px 0 12px;
}
.price-original {
  color: #FF0000;
  text-decoration: line-through;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 22px);
}
.price-promo {
  color: #00B33C;
  font-weight: 800;
  font-size: clamp(24px, 6vw, 34px);
}
.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  color: var(--text-dark);
}
.offer-benefits li { margin: 8px 0; }
.btn-buy, .btn.btn-primary.cta {
  text-decoration: none;
}
.btn-buy {
  background: #00B33C;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 18px;
  box-shadow: 0 8px 20px var(--shadow);
}
.offer-guarantee {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin: 10px 0 12px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #333;
}
.payment-logos .logo {
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.payment-logos .sep { color: #999; }
.urgency-bar {
  margin-top: clamp(14px, 4vw, 20px);
  background: #FFE5E5;
  color: #a11a1a;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .offer-card { max-width: 92%; }
}
@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
.offer-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em; /* espaciado uniforme */
  width: min(420px, 90%); /* ancho fijo adecuado y responsive */
  margin: 12px auto 16px; /* centrar horizontalmente */
  text-align: left; /* mantener texto alineado con el ícono */
  font-family: inherit; /* tipografía consistente */
}
.offer-benefits li {
  display: flex;
  align-items: center; /* alinear el ícono ✅ con el texto */
  gap: 0.6em;
  line-height: 1.35; /* legibilidad */
}
.btn-buy {
  background: #00B33C;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 18px;
  box-shadow: 0 8px 20px var(--shadow);
}
.offer-guarantee {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin: 10px 0 12px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #333;
}
.payment-logos .logo {
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.payment-logos .sep { color: #999; }
.urgency-bar {
  margin-top: clamp(14px, 4vw, 20px);
  background: #FFE5E5;
  color: #a11a1a;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .offer-card { max-width: 92%; }
}
@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
.value-section {
  background: #000000;
  color: #FFFFFF;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 32px);
  margin: 12px 0 18px;
}
.value-title {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4.8vw, 34px);
  text-align: center;
  margin: 0 0 16px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px; /* vertical 16px, horizontal 24px */
  max-width: 1040px;
  margin: 0 auto;
}
.value-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  padding: clamp(14px, 3.2vw, 20px);
  min-height: 120px; /* altura mínima consistente */
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start; /* centralización vertical do bloco de texto em relação ao ícone */
  column-gap: 12px;
}
.card-icon {
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1;
  align-self: start;
}
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 110px; }
}
.offer-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em; /* espaciado uniforme */
  width: min(420px, 90%); /* ancho fijo adecuado y responsive */
  margin: 12px auto 16px; /* centrar horizontalmente */
  text-align: left; /* mantener texto alineado con el ícono */
  font-family: inherit; /* tipografía consistente */
}
.offer-benefits li {
  display: flex;
  align-items: center; /* alinear el ícono ✅ con el texto */
  gap: 0.6em;
  line-height: 1.35; /* legibilidad */
}
.btn-buy {
  background: #00B33C;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 18px;
  box-shadow: 0 8px 20px var(--shadow);
}
.offer-guarantee {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin: 10px 0 12px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #333;
}
.payment-logos .logo {
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.payment-logos .sep { color: #999; }
.urgency-bar {
  margin-top: clamp(14px, 4vw, 20px);
  background: #FFE5E5;
  color: #a11a1a;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .offer-card { max-width: 92%; }
}
@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
.value-section {
  background: #000000;
  color: #FFFFFF;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 32px);
  margin: 12px 0 18px;
}
.value-title {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4.8vw, 34px);
  text-align: center;
  margin: 0 0 16px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px; /* vertical 16px, horizontal 24px */
  max-width: 1040px;
  margin: 0 auto;
}
.value-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  padding: clamp(14px, 3.2vw, 20px);
  min-height: 120px; /* altura mínima consistente */
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start; /* centralización vertical do bloco de texto em relación al ícono */
  column-gap: 12px;
}
.card-icon {
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1;
  align-self: start;
}
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 110px; }
}
.offer-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em; /* espaciado uniforme */
  width: min(420px, 90%); /* ancho fijo adecuado y responsive */
  margin: 12px auto 16px; /* centrar horizontalmente */
  text-align: left; /* mantener texto alineado con el ícono */
  font-family: inherit; /* tipografía consistente */
}
.offer-benefits li {
  display: flex;
  align-items: center; /* alinear el ícono ✅ con el texto */
  gap: 0.6em;
  line-height: 1.35; /* legibilidad */
}
.btn-buy {
  background: #00B33C;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 18px;
  box-shadow: 0 8px 20px var(--shadow);
}
.offer-guarantee {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin: 10px 0 12px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #333;
}
.payment-logos .logo {
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.payment-logos .sep { color: #999; }
.urgency-bar {
  margin-top: clamp(14px, 4vw, 20px);
  background: #FFE5E5;
  color: #a11a1a;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .offer-card { max-width: 92%; }
}
@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
.value-section {
  background: #000000;
  color: #FFFFFF;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 32px);
  margin: 12px 0 18px;
}
.value-title {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4.8vw, 34px);
  text-align: center;
  margin: 0 0 16px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px; /* vertical 16px, horizontal 24px */
  max-width: 1040px;
  margin: 0 auto;
}
.value-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  padding: clamp(14px, 3.2vw, 20px);
  min-height: 120px; /* altura mínima consistente */
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start; /* centralización vertical do bloco de texto em relação ao ícone */
  column-gap: 12px;
}
.card-icon {
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1;
  align-self: start;
}
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 110px; }
}
.offer-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em; /* espaciado uniforme */
  width: min(420px, 90%); /* ancho fijo adecuado y responsive */
  margin: 12px auto 16px; /* centrar horizontalmente */
  text-align: left; /* mantener texto alineado con el ícono */
  font-family: inherit; /* tipografía consistente */
}
.offer-benefits li {
  display: flex;
  align-items: center; /* alinear el ícono ✅ con el texto */
  gap: 0.6em;
  line-height: 1.35; /* legibilidad */
}
.btn-buy {
  background: #00B33C;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 18px;
  box-shadow: 0 8px 20px var(--shadow);
}
.offer-guarantee {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin: 10px 0 12px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #333;
}
.payment-logos .logo {
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.payment-logos .sep { color: #999; }
.urgency-bar {
  margin-top: clamp(14px, 4vw, 20px);
  background: #FFE5E5;
  color: #a11a1a;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .offer-card { max-width: 92%; }
}
@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
.value-section {
  background: #000000;
  color: #FFFFFF;
  border-radius: 14px;
  padding: clamp(18px, 4vw, 32px);
  margin: 12px 0 18px;
}
.value-title {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4.8vw, 34px);
  text-align: center;
  margin: 0 0 16px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px; /* vertical 16px, horizontal 24px */
  max-width: 1040px;
  margin: 0 auto;
}
.value-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  padding: clamp(14px, 3.2vw, 20px);
  min-height: 120px; /* altura mínima consistente */
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start; /* centralización vertical do bloco de texto em relação ao ícone */
  column-gap: 12px;
}
.card-icon {
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1;
  align-self: start;
}
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 110px; }
}
.offer-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em; /* espaciado uniforme */
  width: min(420px, 90%); /* ancho fijo adecuado y responsive */
  margin: 12px auto 16px; /* centrar horizontalmente */
  text-align: left; /* mantener texto alineado con el ícono */
  font-family: inherit; /* tipografía consistente */
}
.offer-benefits li {
  display: flex;
  align-items: center; /* alinear el ícono ✅ con el texto */
  gap: 0.6em;
  line-height: 1.35; /* legibilidad */
}
.btn-buy {
  background: #00B33C;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 18px;
  box-shadow: 0 8px 20px var(--shadow);
}
.offer-guarantee {
  color: #555;
  text-align: center;
  font-size: 14px;
  margin: 10px 0 12px;
}
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #333;
}
.payment-logos .logo {
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}
.payment-logos .sep { color: #999; }
.urgency-bar {
  margin-top: clamp(14px, 4vw, 20px);
  background: #FFE5E5;
  color: #a11a1a;
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .offer-card { max-width: 92%; }
}
@media (max-width: 1024px) {
  .carousel, .gallery-noscript { width: 85%; }
  .carousel-slide { min-height: 196px; }
  .gallery-noscript img { height: 180px; }
}
@media (max-width: 640px) {
   .container { margin-top: 94px; padding-bottom: calc(var(--footer-h) + 48px); }
   .carousel, .gallery-noscript { width: 90%; }
   .carousel-slide { min-height: 176px; }
   .gallery-noscript img { height: 170px; }
 }
/* Ajustes de alinhamento para emojis e textos nos cards da página final */
#final .value-section .value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center; /* centralizar verticalmente ícone e texto */
  column-gap: 12px; /* espaçamento consistente entre ícone e texto */
}
#final .value-section .card-icon {
  align-self: center; /* garantir centralização vertical do emoji */
  justify-self: start; /* manter o emoji à esquerda */
}
#final .value-section .value-card p {
  line-height: 1.4; /* legibilidade do texto */
}