:root {
  --green-dark: #124F43;
  --green: #3AAE82;
  --beige: #F7F3EE;
  --white: #FFFFFF;
  --soft-gray: #F2F2F2;
  --text-dark: #1A1A1A;
  --text-soft: #6F6F6F;
  --radius: 18px;
  --shadow: 0 8px 25px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--beige);
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
}

.page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
}
html,
body {
  overflow-x: hidden;
}

/* ========== HEADER ========== */

.header {
  width: 100%;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 99;
}

.logo {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 18px;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.secure-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(58, 174, 130, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Menu hamburguer */

.hamburger {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(18, 79, 67, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.hamburger-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ========== HERO ========== */

.hero {
  padding: 28px 20px 32px;
  background: linear-gradient(150deg, #F7F3EE 0%, #FFFFFF 40%, #E0F1EA 100%);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.hero-title span {
  color: var(--green);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Wrapper da imagem + sombra + recorte suave */

.hero-img-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

/* leve degradê no rodapé da imagem (faz ela “sumir” suave) */
.hero-img-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 238, 0) 0%,
    #f7f3ee 100%
  );
  pointer-events: none;
}

/* animação de flutuar da imagem */

.hero-img-wrapper img {
  width: 100%;
  display: block;
  animation: float 4s ease-in-out infinite;
  transform-origin: center;
}

/* CTA */

.cta {
  margin-top: 22px;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border-radius: 999px;
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(58, 174, 130, 0.4);
}

/* Keyframes da animação */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* ========== SEÇÃO BENEFÍCIOS VISUAIS ========== */

.section {
  padding: 24px 20px 28px;
}

.section-benefits {
  background: var(--white);
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Imagens em estilo “card” premium */

.feature-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.feature-img-wrapper img {
  width: 100%;
  display: block;
}
/* ========== CHECKLIST PREMIUM ========== */

.section-checklist {
  background: var(--white);
  padding: 26px 22px 30px;
}

.checklist-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 18px;
  text-align: left;
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Ícone de check minimalista */
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* Desenha o “v” dentro do quadrado via CSS */
.check-icon::after {
  content: "";
  width: 6px;
  height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-top: -2px;
}
/* ========== ANIMAÇÃO DE REVEAL NO SCROLL ========== */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========== BARRA DE CONFIANÇA ========== */

.trust-bar {
  /* sem fundo, só espaço em volta dos botões */
  background: transparent;
  padding: 10px 0 16px;
}

.trust-scroll {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* esconder barra de rolagem */
.trust-scroll::-webkit-scrollbar {
  display: none;
}
.trust-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* cada botão é um bloco independente */
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0b2f29; /* verde petróleo do botão */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.trust-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-main {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.trust-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
/* ========== SEÇÃO KIT (TAMANHOS + MEDIDAS) ========== */

.section-kit {
  background: var(--white);
  padding: 26px 20px 32px;
}

.section-kit .section-title {
  margin-bottom: 6px;
}

.section-kit .section-subtitle {
  margin-bottom: 18px;
}

.kit-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.kit-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.kit-item-brinde {
  background: #e9f7f1;
  border-color: rgba(58, 174, 130, 0.25);
}

.kit-capacity {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kit-qty {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  margin-top: 2px;
}

.kit-desc {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 6px;
}

/* badge de brinde */

.kit-badge-brinde {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
}

/* card das medidas */

.kit-measures-card {
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: #fdf9f2;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.kit-measures-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.kit-measures-subtitle {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.kit-measures-img-wrapper {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.kit-measures-img-wrapper img {
  width: 100%;
  display: block;
}
/* ========== SEÇÃO DE OFERTA ========== */

.section-offer {
  background: var(--white);
  padding: 34px 20px 38px;
  text-align: center;
}

.offer-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.offer-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.offer-img-wrapper {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 22px;
}

.offer-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.offer-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #a3a3a3;
}

.new-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-dark);
}

.installments {
  font-size: 13px;
  color: var(--text-soft);
}

.offer-button {
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  padding: 14px 20px;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.offer-seals {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.seal-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.seal-item img {
  width: 20px;
  height: 20px;
}

.seal-item span {
  font-size: 11px;
  color: var(--text-soft);
}
/* MINI CHECKLIST ENTRE PREÇO E CTA */

.offer-checklist {
  list-style: none;
  margin: 10px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 500;
  margin: 0 auto;          /* centraliza dentro da seção */
}

/* deixo o ícone um pouco menor que o de cima */
.check-icon-small {
  width: 16px;
  height: 16px;
}
/* ========== CARROSSEL DE FEATURES ========== */

.section-carousel {
  padding: 26px 20px 34px;
  background: #fff;
}

.carousel-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 85%;
  background: #fdf9f2;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.carousel-slide img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
}

.carousel-slide h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.carousel-slide p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Pontinhos do carrossel */

.carousel-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  background: #d1d1d1;
  border-radius: 50%;
}

.carousel-dots .dot.active {
  background: var(--green-dark);
}
/* Animação premium de pulsar */
@keyframes pulseCTA {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 175, 120, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(0, 175, 120, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 175, 120, 0.4);
  }
}

/* Aplicar no botão */
.offer-button {
  animation: pulseCTA 2s infinite ease-in-out;
}
/* ========== CARROSSEL DE DEPOIMENTOS ========== */

/* ========== CARROSSEL DE DEPOIMENTOS ========== */

.section-reviews {
  padding: 30px 20px 34px;
  background: #ffffff;
}

.reviews-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.reviews-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.review-slide {
  min-width: 85%;
  background: #fdf9f2;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* cabeçalho: perfil + nome + estrelas */
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  display: block;
}

.review-stars {
  font-size: 13px;
  color: #f5b500;
  letter-spacing: 1px;
}

.review-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* imagem do produto da cliente */
.review-product-img {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 4px;
}

.review-product-img img {
  width: 100%;
  display: block;
}

/* bolinhas do carrossel */
.reviews-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.review-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d1d1;
}

.review-dot.active {
  background: var(--green-dark);
}
/* ========== BARRA DE CONTADOR DE CLIENTES ========== */

.section-stats {
  padding: 24px 20px 30px;
  background: #ffffff;
}

.stats-text {
  text-align: center;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 13px;
  color: var(--text-soft);
}

.stats-number-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.stats-plus {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

#stats-counter {
  font-size: 24px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: var(--green-dark);
}

.stats-label-end {
  font-size: 13px;
  color: var(--text-soft);
}

/* barra de progresso */

.stats-bar-bg {
  width: 100%;
  max-width: 360px;
  height: 8px;
  border-radius: 999px;
  margin: 10px auto 0;
  background: #e5ece9;
  overflow: hidden;
}

.stats-bar-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--green-dark);
  transition: width 0.2s linear;
}
/* ========== FAQ / PERGUNTAS FREQUENTES ========== */

.section-faq {
  padding: 30px 20px 36px;
  background: #ffffff;
}

.faq-title-main {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card da pergunta */

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  background: #0e8f6d; /* verde petróleo mais vivo */
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 12px 14px;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.faq-toggle {
  font-size: 18px;
  font-weight: 700;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

/* área da resposta */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  background: #0b7357;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 0 10px;
}

/* estado aberto */

.faq-item.open .faq-answer {
  max-height: 200px; /* suficiente para o texto */
  opacity: 1;
  padding: 0 14px 10px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg); /* vira um "x" estilizado */
}
/* ========== CTA FINAL ========== */

.section-final-cta {
  padding: 28px 20px 36px;
  background: #0b3c32; /* fundo verde petróleo escuro */
}

.final-cta-card {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 18px 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* imagem dentro do CTA */
.final-cta-img {
  margin: -8px -10px 10px;
  border-radius: 18px;
  overflow: hidden;
}

.final-cta-img img {
  width: 100%;
  display: block;
}

.final-cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.final-cta-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 14px;
}

/* preços */

.final-cta-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}

.final-old-price {
  font-size: 13px;
  text-decoration: line-through;
  color: #a3a3a3;
}

.final-new-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-dark);
}

.final-installments {
  font-size: 12px;
  color: var(--text-soft);
}

/* checklist */

.final-cta-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.final-cta-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 500;
  margin: 0 auto;
}

/* botão final */

.final-cta-button {
  display: block;
  margin: 0 auto;
  margin-top: 4px;
  padding: 14px 20px;
  background: var(--green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  animation: pulseCTA 2.2s infinite ease-in-out; /* usa a animação que já fizemos */
}

.final-cta-note {
  margin-top: 10px;
  font-size: 11px;
  color: #777;
}
/* ========== BLOCO SOBRE A LOJA / CONFIANÇA ========== */

.section-store {
  padding: 28px 20px 34px;
  background: #f7f3ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.store-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 16px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.store-title {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.store-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
  margin-bottom: 10px;
}

.store-text.small {
  font-size: 12px;
}

/* Card 1 – garantia e entrega */

.store-highlight {
  background: #e9f7f1;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.store-highlight h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.store-highlight p {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.store-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  color: var(--text-soft);
}

.store-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--green-dark);
}

.store-image {
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
}

.store-image img {
  width: 100%;
  display: block;
}

/* Card 2 – fundadora e equipe */

.store-founder,
.store-team {
  margin-top: 8px;
}

.store-founder-img,
.store-team-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 8px;
}

.store-founder-img img,
.store-team-img img {
  width: 100%;
  display: block;
}

/* Card 3 – segurança / galpão / RA */

.store-hub {
  margin: 8px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-hub-img {
  border-radius: 18px;
  overflow: hidden;
}

.store-hub-img img {
  width: 100%;
  display: block;
}

.store-hub-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: #0e8f6d;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.store-hub-label {
  font-size: 11px;
  color: var(--text-soft);
}

/* lista com ícones (pode usar ícones nas li depois, se quiser) */
.store-list.icons li {
  font-size: 12px;
}

/* bloco Reclame Aqui */

/* BLOCÃO RECLAME AQUI - Responsivo */
.store-ra-card {
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: #0b3c32;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

/* texto */
.store-ra-title {
  font-size: 12px;
  opacity: 0.85;
}

.store-ra-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.store-ra-text {
  font-size: 13px;
  line-height: 1.45;
}

/* imagem ficando GRANDONA */
.store-ra-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.store-ra-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ajuste fino opcional para celulares muito estreitos */
@media (max-width: 380px) {
  .store-ra-logo {
    font-size: 18px;
  }
}
/* ========== RODAPÉ ========== */

.footer {
  background: #0b3c32; /* verde petróleo mais escuro */
  color: #f9f9f9;
  padding: 20px 18px 0;
  font-size: 12px;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 16px;
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-text {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.footer-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-list li {
  color: rgba(255, 255, 255, 0.85);
}

.footer-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-label {
  font-weight: 600;
}

.footer-bottom {
  max-width: 480px;
  margin: 14px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 8px;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.footer-legal.small {
  margin-top: 4px;
}

/* faixa final */

.footer-strip {
  margin-top: 10px;
 background: #0f564a;
  color: #ffffff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 10px;
}

/* responsivo mobile estreito */
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
/* ========== MENU MOBILE ========== */

/* altura do header (ajusta se precisar) */
:root {
  /* se já tiver :root lá em cima, só adiciona essa linha nele */
  --header-height: 60px;
}

/* ========= MENU MOBILE ========== */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: flex-end;
  z-index: 98;
}


.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  width: 70%;
  max-width: 260px;
  background: #ffffff;
  padding: 20px 18px 26px;
  border-radius: 20px 0 0 20px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu li {
  list-style: none;
}

.mobile-menu a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 999px;
}

.mobile-menu a:hover {
  background: rgba(18, 79, 67, 0.06);
}

/* animação do ícone hamburguer virando X */

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* scroll suave geral (caso ainda não tenha) */
html {
  scroll-behavior: smooth;
}
/* ========== ANIMAÇÕES DE SEÇÃO NO SCROLL ========== */

/* estado inicial: escondido */
.scroll-animate {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* variar direção com data-anim */
.scroll-animate[data-anim="up"] {
  transform: translateY(18px);
}

.scroll-animate[data-anim="left"] {
  transform: translateX(-24px);
}

.scroll-animate[data-anim="right"] {
  transform: translateX(24px);
}

/* quando aparece na tela */
.scroll-animate.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.footer-social.center {
  justify-content: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.footer-social-link:hover .footer-ig-icon {
  color: #1dbf73; /* verde clarinho ao passar o mouse */
}

.footer-ig-icon {
  color: #ffffff;
  transition: 0.3s ease;
}
/* ========== BARRA PROMOCIONAL TOPO ========== */

.top-bar {
  width: 100%;
  background: var(--green-dark); /* verde petróleo */
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
}

.top-bar-inner {
  max-width: 480px;
  margin: 0 auto;
  height: 16px; /* altura fixa pra não ficar pulando */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.top-bar-item {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 8px);
  opacity: 0;
  white-space: nowrap;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.top-bar-item.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
/* ===== CHECKLIST PILL PREMIUM - FORÇA TUDO DAQUI PRA BAIXO ===== */

.section.section-checklist {
  padding: 20px 18px;
  background: #ffffff;
}

.section.section-checklist .checklist-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b3c32; /* verde petróleo */
  margin-bottom: 14px;
}

/* lista */
.section.section-checklist .benefits-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* pill */
.section.section-checklist .benefit-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 60, 50, 0.18);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

/* ícone de check */
.section.section-checklist .benefit-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #0b3c32;
  position: relative;
  flex-shrink: 0;
}

.section.section-checklist .benefit-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* texto */
.section.section-checklist .benefit-text {
  color: #0b3c32;
  font-size: 14px;
  font-weight: 500;
}

/* Animação só para o checklist premium */

.benefit-pill {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* quando aparecer */
.benefit-pill.show {
  opacity: 1;
  transform: translateY(0);
}
