.contenedor-carousel {
    text-align: center;
    background-color: #F4F4F4;
}

.contenedor-carousel-banner {
    text-align: center;
    background-color: #000;
    padding-top: 15px;
}

.titulo {
    background-color: #dc3545;
    color: #FFF;
}

/* Cartel de alerta importante */
/* Cartel de alerta importante */
.alert-importante {
    background: linear-gradient(90deg, #ece9e6 0%, #bababa 100%);
    color: #222;
    font-weight: 600;
    border-radius: 0;
    padding: 22px 0 22px 0;
    margin: 32px 0 32px 0;
    /* margen arriba y abajo */
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 16px rgba(80, 80, 80, 0.08), 0 1.5px 6px rgba(120, 120, 120, 0.06);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 18px;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    position: relative;
    justify-content: center;
    z-index: 10;
}

.alert-importante::before {
    content: "!";
    background: #fff200;
    color: #d20103;
    font-size: 1.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.alerta-ticketera {
    font-size: 1.18em;
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 600px) {
    .alert-importante {
        font-size: 1rem;
        padding: 14px 0;
        max-width: 100vw;
        gap: 10px;
        margin: 20px 0 20px 0;
    }

    .alert-importante::before {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
        margin-right: 8px;
    }
}