/* ==========================================================================
   DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
  /* Cores Principais */
  --bg-cream: #FAF3E7;
  --bg-cream-alt: #F0EFDD;
  --navy: #1B2E5C;
  --navy-dark: #0F1F4D;
  --terracotta: #D97D3C;
  --green: #2E9E4F;
  --green-hover: #23823f;
  --green-light: #D8E8CE;
  --red-soft: #C0392B;v
  --red-soft-light: #FCEBEA;
  --text-body: #3A3A3A;
  --text-muted: #6B7280;
  --white: #FFFFFF;

  /* Cores e Destaques para Seções de Fundo Escuro */
  --text-light: #E8E8F0;
  --text-light-muted: rgba(232, 232, 240, 0.75);
  --accent-terracotta-bright: #FFA066;
  --accent-green-bright: #6EE7B7;

  /* Bordas e Sombras Suaves */
  --border-light: rgba(27, 46, 92, 0.08);
  --border-medium: rgba(27, 46, 92, 0.15);
  --shadow-sm: 0 2px 8px rgba(27, 46, 92, 0.04);
  --shadow-md: 0 8px 24px rgba(27, 46, 92, 0.07);
  --shadow-lg: 0 16px 36px rgba(27, 46, 92, 0.1);
  --shadow-cta: 0 8px 22px rgba(46, 158, 79, 0.32);
  --shadow-cta-hover: 0 12px 28px rgba(46, 158, 79, 0.42);

  /* Raios de Arredondamento */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 50px;

  /* Transições Suaves */
  --transition-default: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET BÁSICO & CONFIGURAÇÃO MOBILE-FIRST
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-body);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2rem; /* 32px mobile */
  line-height: 1.18;
}

h2 {
  font-size: 1.5rem; /* 24px mobile */
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1.75rem;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

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

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

/* ==========================================================================
   CONTAINERS & LAYOUT GERAL
   ========================================================================== */
section, footer {
  width: 100%;
  padding: 44px 20px;
}

/* Largura máxima de conteúdo centralizado: 680px */
.hero-container,
.testimonials-container,
.pain-container,
.diagnosis-container,
.how-it-works-container,
.whats-included-container,
.material-preview-container,
.who-its-for-container,
.offer-container,
.guarantee-container,
.author-container,
.faq-container,
.final-cta-container,
.footer-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   BOTÕES CTA (ESTILO PÍLULA PADRONIZADO)
   ========================================================================== */
.btn-cta,
.btn-cta-large,
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  color: var(--white) !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  transition: var(--transition-default);
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: 100%;
  max-width: 380px;
  margin: 0;
}

.btn-cta:hover,
.btn-cta-large:hover,
.btn-cta-final:hover {
  background-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
}

.btn-cta:active,
.btn-cta-large:active,
.btn-cta-final:active {
  transform: translateY(0);
}

.btn-cta-large {
  font-size: 1.15rem;
  padding: 18px 36px;
  max-width: 440px;
}

.section-cta {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   1. HERO (#hero)
   ========================================================================== */
#hero {
  position: relative;
  background-color: var(--bg-cream);
  background-image: url('https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 52px;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-cream);
  opacity: 0.88;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-align: center;
}

#hero h1 {
  margin-bottom: 1rem;
}

#hero h1 .highlight,
.highlight {
  color: var(--terracotta);
}

#hero .subheadline {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-media {
  margin: 1.75rem auto;
  display: flex;
  justify-content: center;
}

.hero-product-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(27, 46, 92, 0.16);
  border: 1px solid var(--border-light);
  transform: rotate(-1deg);
  transition: var(--transition-default);
  display: block;
  margin: 0 auto;
}

.hero-product-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-cta {
  margin-top: 1.75rem;
}

/* ==========================================================================
   2. DEPOIMENTOS (#testimonials)
   ========================================================================== */
#testimonials {
  background-color: var(--bg-cream-alt);
}

.testimonials-badge {
  display: table;
  background-color: var(--green-light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 0 auto 12px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.user-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--terracotta);
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(217, 125, 60, 0.2);
}

.user-rating {
  color: var(--terracotta);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.user-comment {
  font-style: italic;
  font-size: 0.95rem;
  color: #4A4A4A;
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.55;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

/* ==========================================================================
   3. DOR (#pain)
   ========================================================================== */
#pain {
  background-color: var(--bg-cream);
}

.pain-bullets {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.pain-bullets li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.55;
}

.pain-bullets li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background-color: var(--red-soft-light);
  color: var(--red-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.pain-highlight {
  margin-top: 1.75rem;
}

.pain-highlight blockquote {
  background-color: rgba(217, 125, 60, 0.08);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* ==========================================================================
   4. DIAGNÓSTICO (#diagnosis)
   ========================================================================== */
#diagnosis {
  background-color: var(--bg-cream-alt);
}

.diagnosis-transition {
  margin-top: 1.75rem;
}

.diagnosis-transition blockquote {
  background-color: var(--green-light);
  border: 1px solid rgba(46, 158, 79, 0.3);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-align: center;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}

/* ==========================================================================
   5. COMO FUNCIONA (#how-it-works) - FUNDO ESCURO
   ========================================================================== */
#how-it-works {
  background-color: var(--navy-dark);
  color: var(--text-light);
}

.how-it-works-badge {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin: 0 auto 12px;
  text-align: center;
}

#how-it-works h2 {
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 1.5rem;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.step-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(217, 125, 60, 0.4);
  line-height: 1;
}

.step-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================================================
   6. O QUE ESTÁ INCLUSO (#whats-included)
   ========================================================================== */
#whats-included {
  background-color: var(--bg-cream);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.included-card {
  background-color: var(--bg-cream-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(217, 125, 60, 0.25);
}

.included-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.included-card p {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   7. EXEMPLO DO MATERIAL (#material-preview)
   ========================================================================== */
#material-preview {
  background-color: var(--bg-cream-alt);
  text-align: center;
}

#material-preview p {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
}

.material-preview-media {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.material-mockup-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
  transition: var(--transition-default);
}

.material-mockup-img:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.16));
}

/* ==========================================================================
   8. PARA QUEM É / NÃO É (#who-its-for)
   ========================================================================== */
#who-its-for {
  background-color: var(--bg-cream);
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.column-for,
.column-not-for {
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}

.column-for {
  background-color: rgba(46, 158, 79, 0.06);
  border: 1.5px solid rgba(46, 158, 79, 0.3);
}

.column-for h3 {
  color: var(--green);
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.column-not-for {
  background-color: rgba(192, 57, 43, 0.05);
  border: 1.5px solid rgba(192, 57, 43, 0.25);
}

.column-not-for h3 {
  color: var(--red-soft);
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.check-list,
.cross-list {
  list-style: none;
  padding-left: 0;
}

.check-list li,
.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.badge-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background-color: var(--red-soft);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ==========================================================================
   9. OFERTA (#offer)
   ========================================================================== */
#offer {
  background-color: var(--bg-cream-alt);
}

.offer-items-list {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.offer-items-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}

.offer-items-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(27, 46, 92, 0.1);
  font-size: 0.95rem;
}

.offer-items-list li:last-child {
  border-bottom: none;
}

.item-name {
  color: var(--navy);
  font-weight: 500;
}

.item-old-price del {
  color: var(--text-muted);
  text-decoration: line-through;
}

.total-strikethrough {
  text-align: right;
  padding-top: 12px;
  border-top: 1.5px solid var(--border-medium);
  font-weight: 700;
  color: var(--navy);
}

.total-strikethrough p {
  margin-bottom: 0;
}

.total-strikethrough del {
  color: var(--red-soft);
  text-decoration: line-through;
  margin-left: 4px;
}

.offer-highlight-box {
  background-color: var(--green-light);
  border: 2px solid rgba(46, 158, 79, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.anchoring-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.anchoring-note {
  font-size: 0.95rem;
  color: #4A4A4A;
  font-style: italic;
  margin-bottom: 12px;
}

.anchoring-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 6px;
}

.final-price {
  margin: 14px 0 16px;
}

.installments {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.cash-price {
  display: block;
  font-size: 1rem;
  color: #4A4A4A;
  font-weight: 600;
  margin-top: 6px;
}

.offer-urgency {
  font-size: 0.85rem;
  color: var(--red-soft);
  font-weight: 700;
  margin-bottom: 22px;
}

/* ==========================================================================
   10. GARANTIA (#guarantee)
   ========================================================================== */
#guarantee {
  background-color: var(--bg-cream);
  text-align: center;
}

.guarantee-container {
  background-color: var(--white);
  border: 2px solid rgba(217, 125, 60, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  box-shadow: 0 4px 28px rgba(217, 125, 60, 0.1), var(--shadow-md);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Faixa decorativa de fundo */
.guarantee-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), #f0a060, var(--terracotta));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Ícone em círculo */
.guarantee-icon-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(217, 125, 60, 0.12), rgba(217, 125, 60, 0.06));
  border: 2px solid rgba(217, 125, 60, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

/* Pílula de destaque */
.guarantee-pill {
  display: inline-block;
  background-color: rgba(217, 125, 60, 0.1);
  color: var(--terracotta);
  border: 1px solid rgba(217, 125, 60, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 14px;
}

/* Título */
#guarantee h2 {
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.guarantee-highlight {
  color: var(--terracotta);
}

/* Parágrafo lead */
.guarantee-lead {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-lead strong {
  color: var(--navy);
  font-weight: 700;
}

/* Lista de garantias */
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.5;
}

.guarantee-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Nota final */
.guarantee-note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}


/* ==========================================================================
   11. AUTORIDADE (#author) - FUNDO ESCURO
   ========================================================================== */
#author {
  background-color: var(--navy-dark);
  color: var(--text-light);
  text-align: center;
}

#author h2,
#author h3 {
  color: var(--white);
}

.author-photo {
  margin-bottom: 20px;
}

.author-photo img,
.author-avatar {
  width: 130px;
  height: 130px;
  min-width: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-terracotta-bright);
  margin: 0 auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.author-credentials {
  color: var(--accent-terracotta-bright);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.author-bio p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.author-bio p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   12. FAQ (#faq)
   ========================================================================== */
#faq {
  background-color: var(--bg-cream-alt);
}

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

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-default);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-left: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 18px;
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 0;
}

/* ==========================================================================
   13. ÚLTIMA CHAMADA (#final-cta)
   ========================================================================== */
#final-cta {
  background-color: var(--bg-cream);
  text-align: center;
}

.final-cta-container {
  background: linear-gradient(135deg, var(--bg-cream-alt) 0%, rgba(216, 232, 206, 0.45) 100%);
  border: 1.5px solid rgba(46, 158, 79, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  box-shadow: var(--shadow-md);
}

.final-cta-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 22px;
}

.final-cta-guarantee {
  font-size: 0.85rem;
  color: #555555;
  margin-top: 14px;
  margin-bottom: 0;
  font-weight: 500;
}

/* ==========================================================================
   14. RODAPÉ (#footer) - FUNDO ESCURO
   ========================================================================== */
#footer {
  background-color: var(--navy-dark);
  color: var(--text-light);
  text-align: center;
  padding: 60px 20px 48px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Trust Cards ── */
.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;        /* mobile: 1 coluna */
  gap: 16px;
  width: 100%;
}

.trust-card {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition-default);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trust-card:hover {
  background-color: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-card-icon {
  color: var(--accent-green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.trust-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
}

.trust-card-subtitle {
  font-size: 0.83rem;
  color: var(--text-light-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Métodos de Pagamento ── */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
}

.payment-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}

.payment-method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(232, 232, 240, 0.65);
  transition: color 0.2s ease;
}

.payment-method-item:hover {
  color: var(--text-light);
}

.payment-method-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Copyright & Contato ── */
.footer-copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  line-height: 1.7;
}

.footer-copyright p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  letter-spacing: 0.4px;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-contact {
  margin-top: 8px !important;
  font-size: 0.8rem !important;
  color: rgba(232, 232, 240, 0.55) !important;
  font-weight: 400 !important;
}

.footer-contact a {
  color: rgba(232, 232, 240, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent-green-bright);
  text-decoration: underline;
}

.footer-contact-sep {
  margin: 0 6px;
  opacity: 0.4;
}


/* ==========================================================================
   MEDIA QUERIES (TABLET: min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  section, footer {
    padding: 60px 24px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.9rem;
    margin-bottom: 2.25rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .comparison-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .installments {
    font-size: 2.6rem;
  }

  .trust-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

}

/* ==========================================================================
   MEDIA QUERIES (DESKTOP: min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  section, footer {
    padding: 72px 24px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  #hero {
    padding-top: 64px;
    padding-bottom: 68px;
  }
}
