/* ==========================================================
   AIR FRYER PRO - SEÇÕES DE CONTEÚDO E CONVERSÃO
   Com Transições em Degradê Suave entre Todas as Seções
   ========================================================== */



/* ===== 1. Problema ("Isso te Parece Familiar?") ===== */
.section-pains {
  background: var(--bg-dark-section);
  color: #FFFFFF;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 36px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 253, 232, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-card-dark);
}

.pain-icon-x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(230, 73, 66, 0.25);
  color: #FF6B6B;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  margin-top: 2px;
}

.pain-text h4 {
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pain-text p {
  font-size: 14.5px;
  color: var(--txt-light-sub);
  line-height: 1.55;
}

.pains-closing {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 253, 232, 0.08);
  border: 1px dashed rgba(255, 253, 232, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 30px;
}

.pains-closing p {
  font-size: 17px;
  color: #FFFFFF;
  line-height: 1.6;
}

.pains-closing strong {
  color: var(--ambar);
}

/* ===== 2. Apresentação da Solução (O Método Air Fryer PRO) ===== */
.section-solution {
  background: var(--bg-creme);
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.comp-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 48, 14, 0.08);
}

.comp-card.before-card {
  border-top: 4px solid var(--alerta-red);
}

.comp-card.after-card {
  border-top: 4px solid var(--cta-green);
  background: linear-gradient(180deg, #FFFFFF, #F8FBF8);
}

.comp-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.comp-badge.danger {
  background: var(--alerta-red-soft);
  color: var(--alerta-red);
}

.comp-badge.success {
  background: rgba(67, 179, 77, 0.18);
  color: var(--cta-green);
}

.comp-card h3 {
  font-size: 20px;
  color: var(--oliva-dark);
  margin-bottom: 16px;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  color: var(--txt-dark);
}

.comp-list .ck-x {
  color: var(--alerta-red);
  font-weight: 800;
  flex-shrink: 0;
}

.comp-list .ck-v {
  color: var(--cta-green);
  font-weight: 800;
  flex-shrink: 0;
}

.comp-center-mockup {
  text-align: center;
  position: relative;
}

.comp-center-mockup img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 35px rgba(25, 28, 14, 0.22));
}

/* ===== 3. Showcase Visual (Experiência Interna) ===== */
.section-showcase {
  background: var(--bg-creme-soft);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.showcase-main-img-wrap {
  position: relative;
  text-align: center;
}

.showcase-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.showcase-pages-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.showcase-pages-preview img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.showcase-pages-preview img:hover {
  transform: scale(1.04);
}

.showcase-info h3 {
  font-size: 32px;
  color: var(--oliva-dark);
  margin-bottom: 18px;
}

.showcase-info p {
  font-size: 16.5px;
  color: var(--txt-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.showcase-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 48, 14, 0.08);
}

.showcase-feat-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-creme-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.showcase-feat strong {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--oliva-dark);
  display: block;
}

.showcase-feat span {
  font-size: 13px;
  color: var(--txt-muted);
}

/* ===== 4. Categorias de Receitas (+200 Receitas) ===== */
.section-categories {
  background: var(--bg-creme);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 48, 14, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(25, 28, 14, 0.22);
}

.cat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--oliva-dark), var(--oliva-deep));
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(42, 48, 14, 0.25);
}

.cat-card h3 {
  font-size: 18px;
  color: var(--oliva-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cat-card p {
  font-size: 13.5px;
  color: var(--txt-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.cat-footer {
  border-top: 1px solid rgba(42, 48, 14, 0.09);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--cta-green);
}

.cat-footer span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== 5. Benefícios & Diferenciais ===== */
.section-benefits {
  background: var(--bg-dark-section);
  color: #FFFFFF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-box {
  background: var(--oliva-deep);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-card-dark);
  border: 1px solid var(--oliva-border);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-6px);
}

.benefit-badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 253, 232, 0.12);
  border: 2px solid var(--ambar);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.benefit-box h3 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.benefit-box p {
  font-size: 14.5px;
  color: var(--txt-light-sub);
  line-height: 1.6;
}

/* Faixa de Compatibilidade */
.compat-strip {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--oliva-border);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.compat-strip h4 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.compat-strip p {
  font-size: 14px;
  color: var(--txt-light-sub);
}

.compat-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ambar);
}

.compat-brands span {
  background: rgba(255, 253, 232, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ===== 6. Para Quem É + Carrossel de Depoimentos ===== */
.section-target {
  background: var(--bg-creme);
}

.target-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

/* Carrossel de Depoimentos com Transição Smooth */
.testimonial-carousel-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px -12px rgba(25, 28, 14, 0.35);
  border: 2px solid rgba(42, 48, 14, 0.12);
  background: #2B3010;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2B3010;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Setas Elegantes do Carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 253, 232, 0.92);
  color: var(--oliva-deep);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: var(--trans-fast);
}

.carousel-btn:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
  color: var(--ambar);
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

/* Indicadores / Dots */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(42, 48, 14, 0.25);
  cursor: pointer;
  transition: var(--trans-fast);
}

.carousel-dot.active {
  background: var(--ambar);
  width: 24px;
  border-radius: 6px;
}

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

.target-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--txt-dark);
}

.target-list .t-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cta-green);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===== 7. Como Você Recebe (Timeline) ===== */
.section-timeline {
  background: var(--bg-creme-soft);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.timeline-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 48, 14, 0.08);
  position: relative;
  text-align: center;
}

.timeline-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  color: var(--ambar);
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 17px;
  color: var(--oliva-dark);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 13.5px;
  color: var(--txt-muted);
  line-height: 1.5;
}

/* ===== 8. Bônus Exclusivos (3 Bônus Oficiais) ===== */
.section-bonus {
  background: var(--bg-creme);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-card {
  background: var(--oliva-deep);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--oliva-border);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
}

.bonus-img-wrap {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.5));
}

.bonus-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: 8px;
}

.bonus-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 13.5px;
  color: var(--txt-light-sub);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.bonus-pricing {
  border-top: 1px solid rgba(255, 253, 232, 0.14);
  padding-top: 12px;
  font-family: var(--font-head);
  font-size: 13.5px;
}

.bonus-pricing s {
  color: #FF8F8F;
  margin-right: 6px;
}

.bonus-pricing strong {
  color: var(--neon);
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Resumo de Valor dos Bônus */
.bonus-summary-box {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 20px 30px;
  box-shadow: var(--shadow-card);
  border: 2px dashed var(--cta-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bonus-summary-box .val-text small {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--txt-muted);
}

.bonus-summary-box .val-text strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--oliva-dark);
}

.bonus-summary-box .val-free {
  background: var(--cta-green);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ===== 9. Prova Social & Depoimentos ===== */
.section-reviews {
  background: var(--bg-creme-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 48, 14, 0.08);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card blockquote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--txt-dark);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(42, 48, 14, 0.08);
  padding-top: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ambar), var(--cta-green));
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.reviewer-info strong {
  font-family: var(--font-head);
  font-size: 14.5px;
  color: var(--oliva-dark);
  display: block;
}

.reviewer-info span {
  font-size: 12px;
  color: var(--txt-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-badge {
  color: var(--cta-green);
  font-weight: 700;
}

/* ===== 10. Oferta Principal (Card de Fechamento) ===== */
.section-offer {
  background: 
    radial-gradient(900px 500px at 50% 0%, rgba(103, 110, 75, 0.4), transparent 70%),
    var(--oliva-deep);
  color: #FFFFFF;
}

.offer-card-wrapper {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-creme);
  color: var(--txt-dark);
  border-radius: var(--radius-lg);
  padding: 36px 36px 40px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 232, 0.35);
}

.offer-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--ambar);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
}

.offer-header-box {
  margin-top: 14px;
  margin-bottom: 20px;
}

.offer-book-mockup {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 16px 28px rgba(25, 28, 14, 0.25));
}

.offer-title {
  font-size: 26px;
  color: var(--oliva-dark);
  margin-bottom: 6px;
}

.offer-sub {
  font-size: 15px;
  color: var(--txt-muted);
}

.offer-checklist {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(42, 48, 14, 0.08);
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--txt-dark);
}

.offer-checklist li b {
  color: var(--cta-green);
  font-size: 15px;
}

.offer-price-box {
  border-top: 1px solid rgba(42, 48, 14, 0.12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.offer-price-de {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--txt-muted);
  margin-bottom: 4px;
}

.offer-price-de s {
  color: var(--alerta-red);
}

.offer-price-por {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: var(--cta-green);
  margin-bottom: 6px;
}

.offer-price-por small {
  font-size: 24px;
  vertical-align: super;
  margin-right: 4px;
}

.offer-conditions {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--txt-muted);
}

.offer-card-wrapper .btn {
  width: 100%;
  font-size: 17px;
  padding: 20px;
}

.offer-security-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--oliva-dark);
}

.offer-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.offer-payment-icons img {
  height: 22px;
  width: auto;
  opacity: 0.9;
}

/* ===== 11. Garantia Incondicional de 7 Dias ===== */
.section-guarantee {
  background: var(--bg-creme);
}

.guarantee-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 48, 14, 0.08);
}

.guarantee-seal-wrap {
  text-align: center;
}

.guarantee-seal-wrap img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(25, 28, 14, 0.2));
}

.guarantee-content h3 {
  font-size: 26px;
  color: var(--oliva-dark);
  margin-bottom: 14px;
}

.guarantee-content p {
  font-size: 15px;
  color: var(--txt-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.guarantee-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guarantee-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--oliva-dark);
}

.guarantee-pill svg {
  color: var(--cta-green);
  flex-shrink: 0;
}

/* ===== 12. Perguntas Frequentes (FAQ) ===== */
.section-faq {
  background: var(--bg-dark-section);
  color: #FFFFFF;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 253, 232, 0.18);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 253, 232, 0.12);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon-indicator {
  transform: rotate(45deg);
  background: var(--ambar);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--txt-light-sub);
  font-size: 15px;
  line-height: 1.65;
}

.faq-panel-inner {
  padding: 0 4px 22px;
}

/* ===== 13. CTA Final de Fechamento ===== */
.section-cta-final {
  background: 
    radial-gradient(800px 500px at 50% 35%, rgba(67, 179, 77, 0.16), transparent 75%),
    var(--oliva-deep);
  color: #FFFFFF;
  text-align: center;
  padding: 65px 0 85px;
}

.cta-final-box {
  max-width: 680px;
  margin: 0 auto;
}

.cta-final-book {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.6));
}

.cta-final-box h2 {
  font-size: 38px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final-box p {
  font-size: 18px;
  color: var(--txt-light-sub);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-final-box .btn {
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

