html,body{
    position: relative;
    height: 100%;
}

body{
    background-color: black;
    font-family: Helvetica Neue, Helvetica;
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 0;
}

/*-------------------------------------*/
/*------Estilos para la solapa-------*/
/*-------------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: -90em;
    top: -15em;
    width: 100em;
    height: 200em;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #f8b6b6;
    margin: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 60vw;
    height: 63vh;
    max-width: 600px;
    border-radius: 5px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: black;
    text-align: center;
}

h2{
    padding-bottom: 25px;
    text-decoration: underline;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: end;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/*------------------------------------------------------------*/

.titulo{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: .7em;

    padding: 2em;
}


.btn a{
    font-family: 'Cinzel';
    color: white;
    font-size: 1.5em;
    text-decoration: none;
}

.btn{
    background-color: transparent;
    border-color: red;
}

.swiper{
    width: 100%;
    padding: 1em 0 2em 0;

}

.subtitulo{
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 70px;
    font-family: 'Cinzel';

}

.subtitulo h5{
    margin: 15px;
}

.swiper-slide{
    width: 300px;
    height: 550px;
    background-color: rgba(134, 15, 15, 0.938);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    padding: 10px;
    text-align: center;
}

.product-content{
    display: inline;
    justify-content: space-between;
}

.product-txt{
    flex-basis: 50%;
    text-align: left;
}

.product-txt h3{
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}


.product-txt p{
    font-size: 14px;
    color:#fff;
}

.product-img{
    flex-basis: 50%;
    text-align:center;
}

.product-img img{
    width: 82%;
}

.btn-1{
    display: inline-block;
    padding: 13px 55px;
    border: 1px solid #ffb900;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;

}

/*------------------------------------------------------------*/

.footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    border-top: solid 2px #fff ;
    padding: 1em;
}

#diseño{
    display: flex;
    flex-direction: column;
}

#diseño a{
    font-size: 13px;
    color: #fff;
}

#redes{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#redes a{
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.4em;
    gap: .4em;
}

/*------------------------------------------------------------*/


@media (max-width:700px){

    /*-------------------------------------------------------------------*/

    .modal {
        left: -52em;
        top: -15em;
        width: 80em;
        height: 120em;
    }

    .modal-content {
        font-size: 13px;
        width: 25em;
        height: 28em;
    }

    h2{
        padding-bottom: 10px;
        font-size: 15px;
    }

    /*-------------------------------------------------------------------*/

    .titulo{
        padding: 1em;
    }
    
    .btn a{
        font-size: 1.2em;
    }

    .subtitulo{
        font-size: 2.7em;
    }

    .swiper-slide{
        width: 250px;
        height: 480px;
        background-color: rgba(134, 15, 15, 0.938);
        box-shadow: 0 0 20px rgba(0,0,0,0.4);
        padding: 10px;
        text-align: center;
    }  

    /*-------------------------------------------------------------------*/

    .footer a {
        font-size: 0;
    }

    #diseño a {
        font-size: .8em;
        color: #fff;
    }

    #redes{
        font-size: 0;
        flex-direction: row;
    }
}