/* Estilos generales */
.cta-section {
    background-image: url('../img/cta.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 1rem;
  }
  
  .cta-text {
    background-color: rgba(77, 78, 79, 0.5);
    padding: 1rem;
    text-align: left;
    border-radius: 8px;
    color:var(--four-color);
  }
  
  .cta-text p {
    font-size: 14px;
    /* color: #555; */
  }
  
  .cta-text h2 {
    font-size: 18px;
    color:var(--four-color);
    margin-top: 0.5rem;
  }
  
  .cta-button {
    margin-top: 1rem;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color); 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #ACFB34; /* Color secundario */
  }
  
  /* Responsive design */
  @media (min-width: 768px) {
    .cta-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
    }
  
    .cta-text {
      max-width: 65%;
      text-align: left;
    }
  
    .cta-text p {
      font-size: 16px;
    }
  
    .cta-text h2 {
      font-size: 24px;
    }
  
    .cta-button {
      margin-top: 0;
    }
  }
  
  @media (min-width: 1024px) {
    .cta-text p {
      font-size: 18px;
    }
  
    .cta-text h2 {
      font-size: 28px;
    }
  }
  