/* ==========================================================================
   SEÇÃO 13: CTA FINAL DE CONVERSÃO (Figma Node 566:2068 / 1-1592)
   ========================================================================== */

.section-cta-final {
  padding: 40px 0 100px;
  background-color: var(--color-bg-primary, #ffffff);
}

.cta-final-card {
  background: radial-gradient(circle at 10% 100%, #ffffff 0%, #edf9f7 100%);
  border-radius: 50px;
  padding: 85px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 0px var(--color-teal-light);
}

.cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: #e2f4f2;
  color: #4e4e4e;
  border-radius: 1000px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 28px;
}

.cta-final-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;
  color: #4e4e4e;
  margin-bottom: 24px;
  max-width: 780px;
}

.cta-final-title .text-teal {
  color: #21948b;
  font-weight: 700;
}

.cta-final-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #4e4e4e;
  max-width: 740px;
  margin-bottom: 44px;
}

/* Grupo de Ações */
.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 27px;
  border-radius: 1000px;
  background: rgba(235, 248, 246, 0.9);
  border: 1px solid rgba(110, 221, 212, 0.5);
  color: #4e4e4e;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(110, 221, 212, 0.15);
  transition: all 0.25s ease;
}

.btn-cta-card:hover {
  background: #ffffff;
  border-color: #21948b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 148, 139, 0.2);
}

.cta-btn-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(110, 221, 212, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(33, 148, 139, 0.12);
  flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .section-cta-final {
    padding: 30px 0 60px;
  }

  .cta-final-card {
    padding: 50px 24px;
    border-radius: 35px;
  }

  .cta-final-title {
    font-size: 34px;
  }

  .cta-final-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .cta-final-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-card {
    width: 100%;
    justify-content: center;
  }
}