/* --- SECCIÓN CALL TO ACTION (CTA) --- */
.cta-section {
    position: relative;
    padding: 70px 20px; /* Justo y necesario, no tan grande */
    text-align: center;
    color: white;
    overflow: hidden; /* Evita que el borde borroso se salga */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* El fondo con imagen borrosa */
.cta-section::before {
    content: "";
    position: absolute;
    /* Los bordes negativos evitan que se vea blanco en los bordes por culpa del blur */
    top: -15px; 
    left: -15px; 
    right: -15px; 
    bottom: -15px; 
    background-image: url('../../img/cta.png'); /* Llamada a tu imagen en la carpeta img */
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Efecto borroso para que no moleste a la vista */
    z-index: 1;
}

/* Capa de color semitransparente para asegurar que se lea el texto sobre la foto blanca/ruidosa */
.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(2, 0, 53, 0.75); /* Fondo oscuro BLP semitransparente */
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #3DAE2B; /* Acento verde BLP */
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #2d9120;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
}