@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@300;400;600;700&family=Roboto+Condensed:wght@300;400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Livvic', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    font-size: 20px;
    background: #fff;
}

.contenedor {
    width: 95%;
    margin: auto;
    overflow: hidden;
    display: float;
}


/* ------- ----- HEADER ------ ------*/

header {
    background: url('../img/trato.jpg') #000;
    background-size: cover;
}

header .menu {
    text-align: right;
    margin-top: 15px;
}

header .contenedor-texto {
    display: flex;
    flex-direction: column;
    margin: 300px 0;
    justify-content: center;
    align-items: center;
}

header .contenedor-texto h2 {
    font-size: 2.5em;
}

header .contenedor-texto .segundoTitulo {
    text-align: right;
}

header .contenedor-texto .rojo {
    color: #E31B2E;
}

header .contenedor-texto .blanco {
    color: #F5F0F0;
}

header input {
    display: block;
    border-radius: 10px;
    font-size: 1.3em;
    padding: 5px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

header input:hover {
    background: #fff;
    color: #000;
}

header .menu a {
    color: #000;
    font-size: 1.3em;
    font-weight: 300;
    display: inline-block;
    margin: 0px 6px;
    text-decoration: none;
    position: relative;
}

header .menu a:hover {
    text-decoration: underline;
}

header h4 {
    width: 80%;
    position: absolute;
    font-size: 2.5em;
    font-weight: 700;
    position: absolute;
    bottom: 150px;
    left: 10%;
    color: #000
}


/*------------------------ main -------------------*/

.main {
    background: #fff;
}

.main .acerca-de article h3 {
    font-size: 2.5em;
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 40px;
    color: #737476;
    text-align: center;
}

.main .acerca-de article div {
    width: 80%;
    margin: auto;
    padding-bottom: 40px;
}

.main .acerca-de article h1 {
    font-weight: 400;
    margin-bottom: 1em;
}

.main .acerca-de article p {
    line-height: 1.5em;
    margin-bottom: 15px;
    color: #000;
}


/*------------------------ main menu ------------------------*/


/*******************galeria****************/

.main .galeria {
    overflow: hidden;
    background: #fff;
    padding-bottom: 50px;
    text-align: center;
}

.main .galeria .titulo {
    font-size: 2.5em;
    line-height: 40px;
    font-weight: 300;
    margin-top: 30px;
    color: #F0637E;
    margin-bottom: 50px;
}

.main .galeria .foto {
    width: 25%;
    margin-top: 15px;
    float: left;
    overflow: hidden;
}

.main .galeria .foto img {
    vertical-align: top;
    width: 100%;
    opacity: .9;
    border-radius: 50%;
    padding-bottom: 5px;
}

.main .galeria .foto .rosa {
    display: block;
    width: 100%;
    color: #F0637E;
    padding-bottom: 10px;
    font-size: 1.1em;
    font-weight: 400;
}

.main .galeria .foto .gris {
    display: block;
    width: 100%;
    color: #737476;
    padding-bottom: 10px;
    font-size: 1.1em;
    font-weight: 400;
}

.main .galeria .foto img:hover {
    opacity: 1;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}


/**************************  MAIN CONTACTO  *****************************/

.main .contacto {
    overflow: hidden;
    /*background: #000;*/
    background: url('../img/contactoRoel.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.main .contacto .contactar {
    margin-top: 15px;
    width: 50%;
    text-align: center;
    font-size: 4em;
    color: #464444;
}

.main .contacto .formulario {
    float: right;
    border-radius: 5px;
    width: 40%;
    background: #000;
    text-align: center;
    color: #fff;
    margin: 0 40px 40px 40px;
}

.main .contacto .formulario .promocion {
    background: #FF1493;
    margin-bottom: 20px;
}

.main .contacto .formulario input[type="text"],
.main .contacto .formulario input[type="email"],
.main .contacto .formulario input[type="number"],
.main .contacto .formulario select,
.main .contacto .formulario textarea {
    border: 2px solid #cecece;
    border-radius: 2px;
    padding: 2px 10px;
    font-size: 1em;
    background: #000;
    color: #fff;
}

.main .contacto .formulario input[type="text"]:focus,
.main .contacto .formulario input[type="email"]:focus,
.main .contacto .formulario textarea:focus,
.main .contacto .formulario input[type="number"]:focus,
.main .contacto .formulario select:focus {
    border: 2px solid #000;
    border-radius: 5px;
}

.main .contacto .formulario .aviso {
    font-size: .9em;
}

.main .contacto .formulario .avisoPrivacidad {
    color: #F08080;
}

.main .contacto .formulario input[type="text"],
.main .contacto .formulario input[type="email"],
.main .contacto .formulario input[type="number"],
.main .contacto .formulario select {
    width: 90%;
    margin-bottom: 5px;
}

.main .contacto .formulario .alert {
    padding: 10px;
    color: #fff;
    border-radius: 2px;
    margin-bottom: 10px;
    font-size: 1em;
}

.main .contacto .formulario .alert.error {
    background: #f2dede;
    border: 1px solid #a94442;
    color: #a94442;
}

.main .contacto .formulario .alert.success {
    background: #4caf50;
}

.main .contacto .formulario .categoria {
    width: 80%;
    margin: auto;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 300;
}

.main .contacto .formulario .categoria h4 {
    font-size: 1.3em;
    margin-top: 5px;
    margin-bottom: 2px;
    font-weight: 400;
}

.main .contacto .formulario .categorias {
    min-width: 90%;
    max-width: 90%;
    width: 90%;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    color: #737476;
}

.main .contacto .formulario textarea {
    min-width: 90%;
    max-width: 90%;
    width: 90%;
    height: 100px;
    min-height: 100px;
    max-height: 130px;
}

.main .contacto .formulario .boton {
    width: 90%;
    margin: 15px 15px;
    background: #F0637E;
    color: #fff;
    font-size: 1.3em;
    border-radius: 5px;
    padding: 7px 40px;
    cursor: pointer;
}

.main .contacto .formulario .boton:hover {
    background: #F08080;
}

.main .contacto .formulario .titulo {
    font-weight: 600;
    font-size: 2em;
    display: inline-block;
    padding: 20px 0 10px 0;
    color: #FFF;
}

.main .contacto .formulario .texto {
    font-weight: 400;
    font-size: 1.2em;
    display: inline-block;
    padding: 10px 0 15px 10px;
    color: #FFF;
}

.tienda {
    position: fixed;
    left: 26px;
    bottom: 260px;
    width: 45px;
    z-index: 1000;
}

.tienda img {
    width: 100%;
}

.tienda img:hover {
    width: 48px;
}

.appWhatsapp {
    position: fixed;
    left: 26px;
    bottom: 140px;
    width: 45px;
    z-index: 1000;
}

.appWhatsapp img {
    width: 100%;
    height: auto;
}

.appWhatsapp img:hover {
    width: 48px;
}

.appFacebook {
    position: fixed;
    left: 26px;
    bottom: 200px;
    width: 45px;
    z-index: 1000;
}

.appFacebook img {
    width: 100%;
    height: auto;
}

.appFacebook img:hover {
    width: 48px;
}

#fb-root {
    margin-bottom: 100px;
}


/*******************MAPA**************************/

.main .mapa {
    width: 100%;
    overflow: hidden;
}

.main .mapa iframe {
    width: 100%;
    max-height: 600px;
}


/*--- ---- -----footer--- --------*/

footer {
    background: #000;
    color: #737476;
}

footer .titulo {
    margin-top: 40px;
    text-align: center;
    font-size: 2.5em;
    line-height: 40px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #737476;
}

footer .direccion {
    float: left;
    width: 50%;
    text-align: left;
    color: #737476;
}

footer .horarios {
    float: right;
    width: 50%;
    text-align: right;
    overflow: hidden;
    color: #737476;
}

footer .direccion a {
    display: inline-block;
    border-radius: 3px;
    padding: 1px 4px;
    font-size: 1em;
}

footer .direccion a:hover {
    background: #3b5998;
}

footer .direccion i {
    font-size: 1em;
    color: #737476;
    display: inline-block;
}

footer .direccion .calle {
    margin-bottom: 15px;
}

footer .horarios h4 {
    text-align: center;
    margin-bottom: 20px;
}

footer .horarios .entre-semana,
footer .horarios .fin-semana {
    width: 50%;
    float: left;
    text-align: center;
}

footer .copyright {
    text-align: center;
    padding: 15px 0;
}


/*-----------Ventana emergente--------------*/

.overlay {
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.overlay.active {
    visibility: visible;
}

.popup {
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    border-radius: 3px;
    font-family: "Open Sans", sans-serif;
    padding: 20px;
    text-align: center;
    width: 600px;
    transition: .3s ease all;
    transform: scale(0.7);
    opacity: 0;
}

.popup .btn-cerrar-popup {
    font-size: 1em;
    line-height: 16px;
    display: block;
    text-align: right;
    color: #bbbbbb;
    transition: .3s ease all;
}

.popup .btn-cerrar-popup:hover {
    color: #000;
}

.popup h3 {
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0;
    color: #737476;
}

.popup p {
    font-size: 1em;
    margin-bottom: 15px;
    opacity: 0;
    text-align: left;
    padding-left: 35px;
    line-height: 23px;
}

.popup.active {
    opacity: 1;
    transform: scale(1);
}

.popup.active h3 {
    animation: entradaTitulo .8s ease .5s forwards;
}

.popup.active p {
    animation: entradaSubtitulo .8s ease .5s forwards;
}

@keyframes entradaTitulo {
    from {
        transform: translateY(-25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes entradaSubtitulo {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/**************************MEDIA QUERIES************************/

@media screen and (max-width: 1280px) {
    header .contenedor-texto {
        margin: 260px 0;
    }
}

@media screen and (max-width: 1050px) {
    header .contenedor-texto {
        margin: 220px 0;
    }
    header .contenedor-texto h2 {
        font-size: 2em;
    }
    header .menu a {
        font-size: 1.2em;
        margin: 0px 3px;
    }
    .main .galeria .foto {
        width: 32%;
        float: left;
    }
}

@media screen and (max-width: 950px) {
    header .menu .desaparecer {
        display: none;
    }
    header .menu a {
        font-size: 1.3em;
        margin: 0px 3px;
    }
}

@media screen and (max-width: 850px) {
    header .menu a {
        font-size: 1.3em;
        margin: 0px 3px;
    }
    header .contenedor-texto {
        margin: 170px 0;
    }
    .main .galeria .foto img {
        width: 100%;
        vertical-align: top;
        border-radius: 50%;
    }
    .main .contacto {
        text-align: center;
    }
    .main .contacto .contactar {
        width: 100%;
        font-size: 5em;
    }
    .main .contacto .formulario {
        width: 80%;
    }
    .main .contacto .formulario .titulo {
        font-weight: 400;
        font-size: 1.4em;
        float: left;
        width: 100%;
        padding: 20px 0 4px 0;
    }
    .main .contacto .formulario .texto {
        font-weight: 400;
        font-size: 1em;
    }
    .main .contacto .formulario textarea {
        min-height: 100px;
        max-height: 100px;
    }
    .main .mapa {
        width: 80%;
        margin: auto;
    }
}

@media screen and (max-width: 780px) {
    body {
        font-size: 14px;
    }
    header .menu a {
        font-size: 1.2em;
    }
    .main .contacto .contactar {
        font-size: 5.5em;
    }
}

@media screen and (max-width: 650px) {
    body {
        font-size: 14px;
    }
    .main .acerca-de article div {
        padding-bottom: 0;
    }
    .main .acerca-de article p {
        line-height: 1em;
        margin-bottom: .5em;
        color: #000;
    }
}

@media screen and (max-width: 550px) {
    header .contenedor-texto {
        margin: 130px 0;
    }
    header .contenedor-texto h2 {
        font-size: 1.5em;
    }
    header .menu a {
        margin: 0px 1px;
        font-size: 1em;
    }
    .main .contacto .contactar {
        font-size: 4em;
    }
}

@media screen and (max-width: 450px) {
    header .menu a {
        font-size: 1.1em;
    }
    header .contenedor-texto {
        margin: 80px 0;
    }
    .main .acerca-de article h3 {
        font-size: 2em;
        margin-bottom: 10px;
    }
    .main .galeria .foto {
        width: 48%;
        float: left;
    }
    .main .galeria .foto img {
        width: 100%;
        vertical-align: top;
        border-radius: 50%;
    }
    .main .contacto .contactar {
        font-size: 3.5em;
    }
    footer .direccion {
        margin-bottom: 15px;
    }
    footer .direccion,
    footer .horarios {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 400px) {
    body {
        font-size: 14px;
    }
    header .contenedor-texto h2 {
        font-size: 1.2em;
    }
    header .contenedor-texto {
        margin: 60px 0;
    }
    header .menu a {
        font-size: .8em;
        margin: 0px 1px;
    }
}