/* Seção geral */
.cta-section {
    background-color: #516560; /* Cor de fundo da seção */
    color: white; /* Cor do texto */
    padding: 2rem 5%; /* Espaçamento interno */
    text-align: center; /* Centraliza o conteúdo */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
  }
  
  /* Título */
  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* Parágrafo */
  .cta-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e5e5e5; /* Cor do texto secundário */
  }
  
  /* Botão */
  .cta-button {
    background-color: #2bae41; /* Cor do botão */
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #239c38; /* Cor do botão ao passar o mouse */
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
    .cta-section {
      padding: 2rem; /* Reduz o espaçamento em telas menores */
    }
  
    .cta-content h2 {
      font-size: 2rem; /* Diminui o tamanho do título */
    }
  
    .cta-content p {
      font-size: 1rem; /* Diminui o tamanho do texto */
    }
  
    .cta-button {
      font-size: 0.9rem; /* Ajusta o tamanho do botão */
      padding: 0.7rem 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .cta-content h2 {
      font-size: 1.8rem; /* Ajuste adicional para telas muito pequenas */
    }
  
    .cta-content p {
      font-size: 0.9rem;
    }
  
    .cta-button {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
    }
  }
  