/* =============================================
   ProspectAds - Sistema de design unificado
   Verde = marca | Âmbar = ação
   ============================================= */

:root {
  /* Primária — marca, ícones, labels */
  --primary: #0e7c52;
  --primary-light: #16a36f;
  --primary-dark: #0a5f3f;
  --primary-pale: #eaf8f1;

  /* Ação — CTAs e conversão */
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-pale: #fef3c7;
  --accent-glow: rgba(217, 119, 6, 0.25);

  /* Neutros */
  --bg: #f4f8f6;
  --surface: #ffffff;
  --surface-alt: #f0f6f2;
  --surface-soft: #f8fbf9;
  --text: #1a2e24;
  --text-muted: #4d6356;
  --border: #d7e3dc;
  --section-line: rgba(14, 124, 82, 0.1);

  /* Sombras com tint da primária */
  --shadow: 0 10px 26px rgba(10, 54, 36, 0.08);
  --shadow-lg: 0 18px 44px rgba(10, 54, 36, 0.14);

  /* Misc */
  --radius: 14px;
  --radius-lg: 18px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1080px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: radial-gradient(circle at top, #f9fcfa 0%, var(--bg) 36%, #f2f7f4 100%);
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
}

/* ===== Mobile: alinhamento consistente em toda a página ===== */
@media (max-width: 640px) {
  .container,
  .container--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero: conteúdo usa toda a largura do container */
  .hero__grid {
    align-items: stretch;
  }

  .hero__content {
    width: 100%;
    max-width: none;
  }

  /* Seções: títulos e textos alinhados à esquerda, mesma margem do container */
  .section-header {
    text-align: left;
  }

  .section-header__sub {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  /* O dia a dia: intro alinhada aos cards */
  .pain-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  /* Solução: rodapé dos pilares alinhado */
  .pillars__footer {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  /* Ação da seção (ex.: processo): bloco alinhado */
  .section__action {
    text-align: left;
  }

  /* FAQ: padding interno igual ao do container */
  .faq__question {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq__answer p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text-center { text-align: center; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(14, 124, 82, 0.1);
  border-bottom: 1px solid rgba(14, 124, 82, 0.08);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--primary-light);
}

.header__cta {
  display: none;
}

@media (min-width: 640px) {
  .header__cta { display: inline-flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease-out;
}

.btn--primary {
  background: linear-gradient(135deg, #e0800d 0%, var(--accent) 100%);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.28);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.34);
}

.btn--outline {
  background: transparent;
  color: var(--accent-hover);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent-pale);
  border-color: var(--accent-hover);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Responsive buttons */
@media (max-width: 480px) {
  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .btn--sm {
    width: auto;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .btn--lg {
    padding: 16px 20px;
  }
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: 16px;
}


.section-header--light .section-header__label {
  background: rgba(255,255,255,0.2);
  color: white;
}

.section-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-header__title--left {
  text-align: left;
}

.section-header--light .section-header__title {
  color: white;
}

.section-header__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-header__sub--left {
  margin: 0 0 24px;
  max-width: none;
}

@media (min-width: 768px) {
  .section-header__sub--left {
    max-width: 520px;
  }
}

.section-header--light .section-header__sub {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 480px) {
  .section-header__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .section-header__title {
    font-size: 2rem;
  }
}

/* ===== Divider ===== */
.divider {
  background: #f8fbf9;
  color: #f1f9f4;
  line-height: 0;
  margin-top: -1px;
  border-bottom: 1px solid var(--section-line);
}

.divider svg {
  width: 100%;
  height: 40px;
}

/* ===== Hero ===== */
.hero {
  padding: 120px 0 60px;
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 163, 111, 0.14) 0%, transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(14, 124, 82, 0.12) 0%, transparent 36%),
    linear-gradient(170deg, #eff8f3 0%, #f8fbf9 100%);
  border-bottom: 1px solid var(--section-line);
}

.hero__tag {
  display: inline-block;
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(14, 124, 82, 0.22);
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero__content {
  max-width: 540px;
}

.hero__headline {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__headline em {
  font-style: normal;
  color: var(--primary);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero__checks {
  list-style: none;
  margin-bottom: 32px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}

.icon-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary-light);
}

.hero__visual {
  width: 100%;
  max-width: 480px;
}

.hero__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid rgba(14, 124, 82, 0.14);
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 40px;
  }

  .hero__headline {
    font-size: 2.25rem;
  }

  .hero__sub {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero__grid {
    flex-direction: row;
    gap: 60px;
  }

  .hero__content {
    flex: 1;
  }

  .hero__headline {
    font-size: 2.75rem;
  }

  .hero__visual {
    flex: 1;
  }
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--section-line);
}

.section--alt {
  background: linear-gradient(180deg, #f3faf6 0%, #eef6f2 100%);
}

.section--primary {
  background: linear-gradient(135deg, #0a6e47 0%, var(--primary) 50%, #0c6b4a 100%);
}

#identificacao {
  background: linear-gradient(180deg, #f1f9f4 0%, #ebf4ef 100%);
}

#solucao {
  background: var(--surface);
}

#processo {
  background: var(--surface-alt);
}

#para-quem {
  background: var(--surface);
}

#sobre {
  background: var(--surface-alt);
}

#faq {
  background: var(--surface);
}

.section__action {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .section__action {
    margin-top: 32px;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

/* ===== Pillar Cards (4 pilares da estrutura) ===== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pillar-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.pillar-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.pillar-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
  color: white;
}

.pillar-card__icon svg {
  width: 26px;
  height: 26px;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pillars__footer {
  text-align: center;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  background: linear-gradient(180deg, #edf8f2 0%, #e5f4ec 100%);
  border: 1px solid rgba(14, 124, 82, 0.16);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .pillars__footer {
    font-size: 0.9rem;
    padding: 16px 20px;
  }
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Pain Section (O dia a dia) ===== */
.section--pain .section-header__label {
  margin-bottom: 12px;
}

.pain-intro {
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pain-intro__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 12px;
}

.pain-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.pain-layout__image {
  width: 100%;
  order: 1;
}

.pain-layout__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(14, 124, 82, 0.14);
}

.pain-layout__image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pain-layout__content {
  order: 2;
  width: 100%;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.pain-card {
  display: grid;
  grid-template-columns: 34px 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  border: 1px solid rgba(14, 124, 82, 0.12);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}

.pain-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.pain-card__num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.pain-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 8px;
  color: var(--primary);
  flex-shrink: 0;
}

.pain-card__icon svg {
  width: 18px;
  height: 18px;
}

.pain-card__text {
  min-width: 0;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pain-cta {
  margin-top: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .pain-layout {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .pain-layout__image {
    flex: 0 0 38%;
    max-width: 420px;
    order: 0;
  }

  .pain-layout__content {
    flex: 1;
    min-width: 0;
    order: 1;
  }

  .pain-intro {
    margin-bottom: 56px;
  }
}

@media (min-width: 900px) {
  .pain-grid {
    gap: 14px;
  }

  .pain-card {
    padding: 14px 16px;
  }

  .pain-card__num {
    width: 32px;
    height: 32px;
  }

  .pain-card__icon {
    width: 38px;
    height: 38px;
  }

  .pain-card__icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Solution Layout ===== */
.solution-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.solution-visual {
  width: 100%;
  max-width: 420px;
}

.solution-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.solution-content {
  max-width: 520px;
}

.solution-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.solution-content .btn {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .solution-layout {
    flex-direction: row;
    gap: 60px;
  }

  .solution-visual {
    flex: 0 0 40%;
  }

  .solution-content {
    flex: 1;
  }
}

/* ===== Steps ===== */
.steps {
  display: grid;
  gap: 24px;
}

.step-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
  border: 1px solid rgba(14, 124, 82, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
  position: relative;
}

.step-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.step-card:nth-child(2) {
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, #fff9f1 0%, #fff4e4 100%);
}

.step-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.step-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 10px;
  margin-bottom: 14px;
  color: var(--primary);
}

.step-card__icon svg {
  width: 20px;
  height: 20px;
}

.step-card:nth-child(2) .step-card__icon {
  background: var(--accent-pale);
  color: var(--accent-hover);
}

.step-card__num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(14, 124, 82, 0.35);
}

.step-card:nth-child(2) .step-card__num {
  background: var(--accent);
  box-shadow: 0 3px 12px var(--accent-glow);
}

.step-card__line {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-pale));
  border-radius: 2px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Ideal / Para quem é ===== */
.ideal-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.ideal-layout__image {
  width: 100%;
  max-width: 420px;
}

.ideal-layout__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  border: 1px solid rgba(14, 124, 82, 0.14);
}

.ideal-layout__content {
  flex: 1;
}

.ideal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.ideal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  border: 1px solid rgba(14, 124, 82, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ideal-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.ideal-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 12px;
  color: white;
}

.ideal-item__icon svg {
  width: 22px;
  height: 22px;
}

.ideal-item p {
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ideal-layout {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }

  .ideal-layout__image {
    flex: 0 0 42%;
    max-width: none;
  }

  .ideal-layout__content {
    flex: 1;
  }
}

/* ===== Benefits (on primary/dark) ===== */
.section--primary .benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.section--primary .benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  transition: background 0.2s;
  backdrop-filter: blur(2px);
}

.section--primary .benefit:hover {
  background: rgba(255,255,255,0.15);
}

.benefit__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
}

.benefit__icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--primary-pale);
}

.section--primary .benefit h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.section--primary .benefit p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .section--primary .benefits {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
}

/* ===== About ===== */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-visual__badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 16px rgba(14, 124, 82, 0.3);
}

.about-visual__badge svg {
  width: 40px;
  height: 40px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .about-layout {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  .about-visual {
    flex-shrink: 0;
    padding-top: 48px;
  }
}

/* ===== CTA Block ===== */
.cta-block {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff6e8 0%, #fdeecd 100%);
  border-top: 1px solid rgba(180, 83, 9, 0.22);
  border-bottom: 1px solid rgba(180, 83, 9, 0.16);
}

.cta-block__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.cta-block__icon svg {
  width: 28px;
  height: 28px;
}

.cta-block__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-block__text {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .cta-block__title {
    font-size: 2rem;
  }
}

/* ===== FAQ ===== */
.faq__item {
  border: 1px solid rgba(14, 124, 82, 0.14);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item:hover {
  border-color: var(--primary-light);
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--primary-light);
}

.faq__question::after {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%230e7c52' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='7' y1='1' x2='7' y2='13'/%3E%3Cline x1='1' y1='7' x2='13' y2='7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s;
}

.faq__item.is-open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA Final ===== */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f8f5 0%, #edf5f0 100%);
  border-top: 1px solid var(--section-line);
  border-bottom: 1px solid var(--section-line);
}

.cta-final__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-final__text {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .cta-final__title {
    font-size: 1.4rem;
  }

  .cta-block__title {
    font-size: 1.4rem;
  }

  .cta-block {
    padding: 60px 0;
  }

  .cta-final {
    padding: 60px 0;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 36px 0;
  background: #e8f1ec;
  border-top: 1px solid rgba(14, 124, 82, 0.12);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__logo {
  font-weight: 700;
  color: var(--text);
}

.footer__logo span {
  color: var(--primary-light);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .footer {
    padding: 28px 0;
  }

  .footer__inner {
    gap: 12px;
  }
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(14, 124, 82, 0.35);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(14, 124, 82, 0.45);
}
