.shadow-bottom-bg {
    position: fixed;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: url(/img/movil/shadow-bottom.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
@media (min-width: 1024px) {
    .container {
        width: 768px;
        margin: 0 auto;
    }
}

.button {
    padding: 0.5rem 0.2rem;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 18px;
    text-align: center;
    max-width: 425px;
}
.button-red {
    background-color: #bc1622;
    color: #fff !important;
}
.button-wine {
    background-color: #7d030c;
    color: #fff !important;
}
/* Hero */
.carousel-item {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-item h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px #000;
}
.carousel-item p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px #000;
    max-width: 320px;
}

#content-buttons-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    #content-buttons-actions {
        display: none;
    }
}

#resumen {
    text-align: center;
    padding: 0 1rem;
    margin: 2rem auto;
    max-width: 500px;
}

/* Banners */
#banners {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#banners .banner {
    width: 300px;
    height: 150px;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    #banners {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 1fr 1fr;
        gap: 1rem;
        grid-template-areas:
            "main-banner main-banner"
            "banner1 banner2"
            "banner3 banner4";
    }

    #banners .main-banner {
        grid-area: main-banner;
        height: 300px;
    }
    #banners .banner1 {
        grid-area: banner1;
    }
    #banners .banner2 {
        grid-area: banner2;
    }
    #banners .banner3 {
        grid-area: banner3;
    }
    #banners .banner4 {
        grid-area: banner4;
    }

    #banners .banner {
        height: 200px;
        width: 400px;
    }
    .carousel-item {
        height: 60vh;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Cita */
#cita {
    margin: 2rem 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#cita #user {
    background-image: url(/img/movil/user.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    border-radius: 50%;
    height: 150px;
    width: 150px;
}

#cita #contenido {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 40px;
    font-style: italic;
}

@media (min-width: 768px) {
    #cita {
        max-width: 500px;
        margin: 2rem auto;
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
        grid-template-areas:
            "user contenido"
            "user contenido";
    }

    .logo {
        width: 180px;
        height: 180px;
    }

    #cita #user {
        grid-area: user;
    }
    #cita #contenido {
        grid-area: contenido;
    }
}

.no-mp {
    margin: 0;
    padding: 0;
}

/* Contactos */
#contactos {
    padding: 0 1rem;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

#contactos .contacto {
    display: flex;
    flex-direction: column;
}

.contacto {
    max-width: 170px;
    margin: 0 auto;
}

.contacto .nombre {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
}

.contacto .item {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

@media (min-width: 768px) {
    #contactos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Footer */
.footer {
    height: 20px;
    background-color: #bc1622;
}
