.banner {
    width: 100%;
    height: 30rem;
    background-image: url("../img/fondo.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    #capa{
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
    }
    h1, p{
        color: red;
        text-shadow: #6b0000 2px 0px 4px;
        text-align: center;
        text-wrap: wrap;
        word-wrap: break-word;
        z-index: 3;
    }
    h1{
        font-size: clamp(14px, 1.5vw, 2.5em);
    }
    p{
        font-size: clamp(12px, 1vw, 2em);
        font-weight: 700;
        margin-bottom: 20px;
    }
}
h2{
    color: red;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    margin-top: 20px;
}

.oferta{
    margin: 50px 0;
    width: 100%;
    height: 40rem;
    background-image: url("../img/oferta.jpg");
    background-size:cover;
    display: flex;
    background-position: top;
    justify-content: center;
    align-items: center;
    font-size:clamp(25px, 6vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    padding: 20px;
    span{
        color: red;
    }
}