/* ===== CTA.CSS ===== */
/* Estilos para la sección Call to Action de Viajes JAER */

.cta-section {
    background: linear-gradient(rgba(194, 0, 0, 0.9), rgba(224, 0, 0, 0.95)), url('https://images.unsplash.com/photo-1526392060635-9d6019884377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--blanco, #ffffff);
    padding: 70px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--blanco, #ffffff);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background-color: var(--blanco, #ffffff);
    color: var(--rojo-intenso, #e00000);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn:hover {
    background-color: #ffefef;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn i {
    margin-right: 10px;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}