/* ══════════════════════════════════════════════════
   COZINHA LEVE — styles.css
   Mobile-first · Poppins · max-width 720px
   Organizado por seção com comentários
══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   SCROLL FADE (IntersectionObserver)
───────────────────────────────────────────── */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   TIPOGRAFIA GLOBAL
───────────────────────────────────────────── */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

/* ─────────────────────────────────────────────
   UTILITÁRIOS DE SEÇÃO
───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}
.section-label--white { color: rgba(255,255,255,0.75); }

.section-title {
  font-size: clamp(1.55rem, 5vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.section-title--white { color: #fff; }
.section-title--lg { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 520px;
}
.section-sub--white { color: rgba(255,255,255,0.8); }

.text-green  { color: var(--green); }
.text-orange { color: var(--orange); }

/* ─────────────────────────────────────────────
   PAGE DIVIDERS — ondas SVG suaves entre seções
───────────────────────────────────────────── */
.divider {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.divider svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ─────────────────────────────────────────────
   BOTÃO FEEDBACK
───────────────────────────────────────────── */
.btn-primary, .btn-green {
  will-change: transform;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

/* ─────────────────────────────────────────────
   2. VSL SECTION
───────────────────────────────────────────── */
.vsl-section {
  background: #fff;
  padding: 48px 0 56px;
  text-align: center;
}

.vsl-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 32px;
  aspect-ratio: 9 / 16;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  overflow: hidden;
  position: relative;
}

.vsl-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #F5F5F5;
}

.vsl-play-btn {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}
.vsl-play-btn svg { margin-left: 4px; }

.vsl-hint {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.vsl-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-primary--lg {
  font-size: 1.1rem;
  padding: 18px 48px;
}

/* Barra de confiança */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   3. IMAGINE SUA ROTINA ASSIM
   Cards 3D brancos sobre fundo verde
───────────────────────────────────────────── */
.imagine-section {
  background: linear-gradient(160deg, #1DB954 0%, #0A8C3A 50%, #065f24 100%);
  padding: 56px 0 64px;
  text-align: center;
}

.imagine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0;
}
@media (min-width: 580px) {
  .imagine-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Cards 3D brancos */
.imagine-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 22px 28px;
  text-align: center;
  box-shadow:
    5px 8px 0 rgba(0,0,0,0.13),
    0 16px 40px rgba(0,0,0,0.09);
  border: 1px solid rgba(255,255,255,0.9);
  transition: transform 0.2s, box-shadow 0.2s;
}
.imagine-card:hover {
  transform: translateY(-4px);
  box-shadow:
    7px 12px 0 rgba(0,0,0,0.11),
    0 24px 50px rgba(0,0,0,0.13);
}

.imagine-icon {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}

.imagine-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 10px;
  line-height: 1.35;
}
.imagine-card p {
  font-size: 0.85rem;
  color: #3a9e5f;
  line-height: 1.6;
  margin: 0;
}

/* Divisor decorativo: linha + ícone + linha */
.icon-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 44px 0 36px;
}
.icon-divider__line {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}
.icon-divider__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Checklist abaixo das cards */
.imagine-checklist-wrap {
  text-align: center;
}
.imagine-checklist-title {
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.3;
}
.imagine-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.imagine-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.96);
  font-weight: 500;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  line-height: 1.45;
}
.imagine-checklist li::before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230A8C3A' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ─────────────────────────────────────────────
   4. O QUE VOCÊ RECEBE + BÔNUS
   Cards mockup brancos sobre verde escuro
───────────────────────────────────────────── */
.receives-section {
  background: linear-gradient(160deg, #065f24 0%, #0A8C3A 100%);
  padding: 56px 0 64px;
  color: #fff;
  text-align: center;
}

/* Grid de módulos com mockup */
.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
@media (min-width: 540px) {
  .module-grid { grid-template-columns: 1fr 1fr; }
}

.module-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    5px 7px 0 rgba(0,0,0,0.13),
    0 12px 32px rgba(0,0,0,0.09);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow:
    7px 10px 0 rgba(0,0,0,0.11),
    0 20px 42px rgba(0,0,0,0.12);
}
@keyframes glow-kids {
  0%, 100% {
    box-shadow:
      5px 7px 0 rgba(0,0,0,0.13),
      0 12px 32px rgba(0,0,0,0.09),
      0 0 0 0 rgba(255,209,102,0.85);
  }
  50% {
    box-shadow:
      5px 7px 0 rgba(0,0,0,0.13),
      0 12px 32px rgba(0,0,0,0.09),
      0 0 0 10px rgba(255,209,102,0);
  }
}
.module-card--featured {
  border: 2px solid var(--yellow);
  animation: glow-kids 1.8s ease-in-out infinite;
}

.module-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--green-bg);
}
.module-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.module-card-body {
  padding: 18px 20px 22px;
}
.module-card-body h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 12px;
  line-height: 1.3;
}
.module-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--yellow);
  color: #1A1A1A;
  border-radius: 30px;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* Header do Módulo Kids com indicador piscando */
.module-kids-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}
.module-kids-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: blink-dot 1.2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255,107,53,0.6);
}

.module-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.module-checklist li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 28px;
  position: relative;
  line-height: 1.45;
}
.module-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Banner "E não para por aí" — destaque total */
.receives-more-banner {
  position: relative;
  margin: 0 -4px 32px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(255,107,53,0.18) 0%, rgba(255,209,102,0.14) 100%);
  border: 2px solid rgba(255,209,102,0.4);
  border-radius: 22px;
  overflow: hidden;
}
.receives-more-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.receives-more-icon-wrap {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.receives-more-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}
.receives-more-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  max-width: 480px;
}
.receives-more-text strong { color: var(--yellow); }
.receives-more-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.receives-more-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(255,107,53,0.4);
}

/* Bônus preview cards */
.bonus-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) {
  .bonus-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

.bonus-preview-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    4px 6px 0 rgba(0,0,0,0.12),
    0 10px 28px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.2s;
}
.bonus-preview-card:hover { transform: translateY(-3px); }

.bonus-preview-img {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: var(--green-bg);
}
.bonus-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bonus-preview-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}

.bonus-preview-body {
  padding: 14px 16px 18px;
}
.bonus-preview-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}
.bonus-preview-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ─────────────────────────────────────────────
   5. MOCKUP DO APP
   Sem frame de celular — só a imagem
───────────────────────────────────────────── */
.mockup-section {
  background: #fff;
  padding: 40px 0 56px;
  text-align: center;
}

.mockup-img-wrap {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─────────────────────────────────────────────
   6. POR QUE FUNCIONA — Pilares
───────────────────────────────────────────── */
.pillars-section {
  background: var(--bg);
  padding: 48px 0 64px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 580px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow:
    5px 8px 0 rgba(0,0,0,0.08),
    0 16px 40px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    7px 12px 0 rgba(0,0,0,0.07),
    0 24px 50px rgba(0,0,0,0.10);
}
.pillar-icon {
  width: 72px;
  height: 72px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   7. CARROSSEL DE DEPOIMENTOS
───────────────────────────────────────────── */
.testimonials-section {
  background: #fff;
  padding: 48px 0 64px;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  user-select: none;
}

.carousel-track {
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s, box-shadow 0.15s;
}
.carousel-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.carousel-dot.is-active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────
   8. PLANOS E OFERTA
───────────────────────────────────────────── */
.offer-section {
  background: linear-gradient(135deg, #0A8C3A 0%, #1DB954 100%);
  padding: 56px 0 64px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.pricing-card {
  background: #FFF0F5;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border: 2px solid #FFB3C6;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.pricing-card--featured {
  background: #fff;
  border-color: var(--yellow);
  border-width: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 0 24px rgba(255,209,102,0.35);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.pricing-badge--neutral {
  background: var(--border);
  color: var(--muted);
}
.pricing-badge--top {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #1A1A1A;
  font-size: 0.78rem;
  padding: 6px 18px;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.pricing-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.pricing-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.pricing-old {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
}
.pricing-price--big {
  font-size: 3rem;
  color: var(--green-dark);
}
.pricing-period {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Checkmarks circulares */
.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.87rem;
  color: var(--text);
  padding-left: 32px;
  position: relative;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.pricing-features li strong { font-weight: 700; }

.offer-urgency {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

/* ─────────────────────────────────────────────
   9. GARANTIA
───────────────────────────────────────────── */
.guarantee-section {
  background: var(--bg);
  padding: 56px 0 64px;
}

.guarantee-card {
  background: #fff;
  border-radius: 24px;
  border: 2px solid rgba(29,185,84,0.2);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
@media (min-width: 520px) {
  .guarantee-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.guarantee-img-wrap {
  flex-shrink: 0;
}
.guarantee-img-wrap img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.guarantee-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.guarantee-days { color: var(--green); }

.guarantee-content p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────
   10. AUTORIDADE
───────────────────────────────────────────── */
.authority-section {
  background: #fff;
  padding: 56px 0 64px;
  text-align: center;
}

.authority-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 520px) {
  .authority-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.authority-photo-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.authority-photo-caption {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.authority-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
@media (min-width: 520px) {
  .authority-photo { width: 160px; height: 160px; }
}

.authority-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.authority-cred {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.authority-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────
   11. FAQ — Sempre visível, sem accordion
   Cards com borda esquerda verde
───────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 56px 0 64px;
  text-align: center;
}

.faq-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.faq-a {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}

.faq-sep {
  border: none;
  margin: 10px 0;
}

/* ─────────────────────────────────────────────
   12. FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
  text-align: center;
}
.footer-copy {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.85); }
.footer-nav span { color: rgba(255,255,255,0.25); }

