/**
 * Bloque Call to Action (CON FONDO SELECCIONABLE)
 */
.rescop-cta-block {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 423px;
    background: #BE252D; /* Color de respaldo */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rescop-cta-block-bg {
    position: absolute;
    top: -484px;
    left: 0;
    width: 100%;
    height: 1120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    
    /* Si no hay imagen, mostrar color sólido */
    background-color: #BE252D;
}

.rescop-cta-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 2rem 3rem;
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.rescop-cta-block-text { /* CAMBIO: de rescop-cta-text a rescop-cta-block-text */
    color: white !important;
    font-size: 36px !important;
    font-family: var(--rescop-font-primary, 'Merriweather Sans', serif) !important;
    font-weight: 400 !important;
    line-height: 50px !important;
    word-wrap: break-word;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}

.rescop-cta-button {
    background: white;
    color: #BE252D;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 20px;
    font-family: var(--rescop-font-display, 'Anton', sans-serif);
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.rescop-cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .rescop-cta-block {
        height: 300px;
    }
    
    .rescop-cta-block-text { /* CAMBIO: actualizar nombre aquí también */
        font-size: 24px !important;
        line-height: 36px !important;
    }
    
    .rescop-cta-content {
        padding: 1.5rem 2rem;
    }
}