
/*------------------------------- PROMOS --------------------------- */
.new, .newpar{
    display: none;
}

#container-main {
    /* margin-top: 2rem; */
    /* height: 100vh; */
    background-color: #EA002A;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

#container-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 6rem;
    /* height: 100vh; */
    position: relative;
    background: black;
    padding-top: 8rem;
}

#container-text .cmp-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#container-text img {
    max-width: 20%;
    min-width: 300px;
}

#form-title {
    color: white;
    font-size: calc(10px + 1vw);
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

#form-title>p {
    max-width: 400px;
    margin-bottom: 0;
}

#separador {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #EA002A;
    clip-path: polygon(0 0%, 100% 0, 100% 100%, 50% 0%, 0 100%);
    transform: rotate(180deg);
    bottom: -2px;
    height: 3rem;
}

#container-carruceles {}

#carrucel-promos {
    padding: 15px 15px 5rem 15px;
    background: #EA002A;
}

#container-promo, #container-promo1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#container-promo div.image {
    max-width: 300px;
}

#promo-img {}

#container_texto-promo,
#container-d0f0b4a898 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#texto_promo-titulo {
    color: white;
    font-size: calc(1rem + 1vw);
    /* max-width: 200px; */
    text-align: center;
}

[role="container_texto-promo"]  > div.button{
    text-align:center;
}

#btn-participa {
    background: #FFDA47 !important;
    border: none !important;
    border-radius: 20px;
    color: #F4423E;
    padding: .8rem 3rem !important;
    text-transform: uppercase;
}


/* Carouseles */
.cmp-carousel__item {
    display: none;
}


.cmp-carousel__item--active {
    display: block !important;
}

.cmp-carousel__indicators {
    display: none;
}

.cmp-carousel {
    position: relative;
    /* Asegura que los botones estén posicionados relativos al carrusel */
}

.cmp-carousel__actions {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    /* Permite que los botones estén sobre otros elementos sin bloquear interacciones */
}

.cmp-carousel__action {
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente */
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    pointer-events: all;
    /* Asegura que los botones sean clicables */
}

.cmp-carousel__action:hover {
    /* background-color: rgba(0, 0, 0, 0.7); */
}

.cmp-carousel__action-icon {
    display: none;
    /* Oculta el icono si no es necesario */
}

.cmp-carousel__action-text {
    font-size: 1.5rem;
    /* Ajusta el tamaño del texto si es necesario */
    font-weight: bold;
}

/*------------------------------- FIN PROMOS --------------------------- */
/*-------------- KEY FRAMES--------------------------------- */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/*------------------------MEDIA QUERYS---------------------- */
@media screen and (max-width: 768px) {


    #container-text {
        padding-bottom: 6rem;
    }
}

@media screen and (min-width: 769px) {
    #form-title {
        font-size: 1rem;
    }

    #title-main {
        font-size: calc(1rem + 2vw);
    }

    #container_texto-promo,
    #container-d0f0b4a898 {
        flex-direction: row;
        gap: 3rem;
    }
}