/* /assets/css/section-cta-contact.css */

.cta-contact-section {
    padding: 80px 0;
    background-color: var(--primary-color); /* Usamos tu color azul marino principal */
    color: #ffffff; /* Texto en blanco para un alto contraste */
    text-align: center;
}

.cta-contact-section .container {
    max-width: 800px; /* Hacemos el contenedor un poco más estrecho para centrar el mensaje */
}

.cta-contact-section h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-contact-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9); /* Un blanco ligeramente transparente para el párrafo */
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .cta-contact-section h2 {
        font-size: 2.2rem;
    }
}