/* ==========================================
   TEXT CTA BLOCK
   ========================================== */

.text-cta-block {
  padding: 80px 20px;
  background-color: white;
}

.text-cta-container {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

/* Texto 1 - Azul 26px com variações */
.cta-text-1 {
  font-size: 26px;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta-text-1 p {
  margin: 0;
  padding: 0;
}

.cta-text-1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-secondary);
}

/* Texto 2 - Azul 20px light */
.cta-text-2 {
  font-size: 20px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Texto 3 - Azul #3F89AE 26px bold */
.cta-text-3 {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #3f89ae;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Botão CTA */
.cta-button-wrapper {
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  padding: 8px 80px;
  background-color: #3f89ae;
  color: white;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Smooth scroll para âncoras */
html {
  scroll-behavior: smooth;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  .text-cta-block {
    padding: 50px 20px;
  }

  .cta-text-1 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .cta-text-2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .cta-text-3 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .text-cta-block {
    padding: 40px 15px;
  }

  .cta-text-1 {
    font-size: 20px;
  }

  .cta-text-2 {
    font-size: 16px;
  }

  .cta-text-3 {
    font-size: 20px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}
