@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Pacifico:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/*--------------------- Estilos base ---------------------*/

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    user-select: none;
    margin: 0;
}

.container {
    width: 100%;
    margin: auto;
}

.container--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.column {
    width: 100%;
}

/*--------------------- Estilos header ---------------------*/

.main-header {
    width: 100%;
}

.logo {
    user-select: none;
    font-size: 1.8em;
    color: #de423a;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.main-header__contactInfo__phone {
    text-decoration: none;
    user-select: none;
    background: #de423a;
    color: #fff;
    margin: 0 auto;
    padding: 10px;
}

.main-header__contactInfo__address {
    user-select: none;
    padding: 10px;
    margin: 0;
}

.main-header [class*="icon-"]:before {
    position: relative;
    top: 2px;
    right: 5px;
}

/*--------------------- Estilos del menú ---------------------*/

.main-nav {
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 10px;
}

.icon-menu {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}

.icon-menu:hover {
    background: rgba(0, 0, 0, 0.3);
}

.menu {
    /*    display: none;*/
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height 0.8s linear;
}

.menu__link {
    transition: all 2s ease;
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
}

.menu__link:hover {
    cursor: pointer;
    transition: all 2s ease;
    background: #de423a;
}

.menu__link--select {
    background: #de423a;
}

.mostrar {
    height: 295px;
}

/*--------------------- Terminan los Estilos del menú ---------------------*/

.social-icon {
    display: flex;
    justify-content: space-between;
}

.social-icon [class*="icon-"] {
    color: #000;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    transition: all 2s ease;
}

.social-icon [class*="icon-"]:hover {
    cursor: pointer;
    transition: all 2s ease;
    background: #de423a;
    color: #fff;
}

.social-icon__link {
    text-decoration: none;
}




/*------------------- Estilos del banner -------------------*/

.banner {
    margin-top: -55px;
    position: relative;
}

.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    top: 0;
}

.banner__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.banner__content {
    user-select: none;
    width: 100%;
    color: #fff;
    text-align: center;
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
}

/*------------------- Estilos principales -------------------*/

.group--color .container {
    background: #de423a;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.main__txt {
    user-select: none;
}

.main__title {
    user-select: none;
    margin: 15px 0;
    font-size: 1.8em;
    font-family: 'Pacifico', cursive;
    font-weight: 100;
}

.column__title {
    text-align: center;
    font-size: 1.3em;
    margin-top: 20px;
}

.column__txt {
    user-select: none;
    text-align: justify;
}

/*
.main__about__description .column:nth-child(1){
    justify-content: center;
    align-items: center;
}
*/

.main__about__description .column:nth-child(1) img {
    transition: all 2s ease;
    margin: auto;
    width: 85%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .9);
}

.main__about__description .column:nth-child(1):hover img {
    transition: all 2s ease;
    transform: scale(1.1);
}

.main__about__description .column:nth-child(2) {
    user-select: none;
    padding: 10px;
}

.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    background: #de423a;
    color: #fff;
    padding: 10px;
    margin: 30px auto;
}

.group__title {
    user-select: none;
    font-family: 'Pacifico', cursive;
    text-align: center;
    font-weight: 100;
    font-size: 1.8em;
    margin: 30px;
}

.today-special .column {
    margin-bottom: 30px;
    text-align: center;
}

.today-special__img {
    margin: auto;
    max-width: 350px;
}

.today-special__title {
    user-select: none;
    font-size: 1.3em;
    padding-top: 10px;
    padding-bottom: 20px;
}

.today-special__price {
    user-select: none;
    font-size: 1.5em;
    color: #de423a;
    font-weight: bold;
}

/*------------------- Estilos del footer -------------------*/

.main-footer {
    background: #222;
    color: #fff;
    padding: 10px 20px;
    font-size: .8em;
}

.main-footer h2 {
    text-align: left;
}

.copy {
    user-select: none;
    text-align: center;
    margin: auto;
    margin-top: 15px;
}

.main-footer [class*="icon-"] {
    color: #fff;
    text-decoration: none;
}

.main-footer [class*="fa-"]:before {
    position: relative;
    top: 3px;
    right: 3px;
}

.main-footer #botonArriba {
    position: relative;
    width: 30px;
    height: 30px;
    background: #fff;
    margin: 20px auto;
    transition: all 0.5s ease;
    border-radius: 50%;
}

.main-footer #botonArriba a {
    user-select: none;
    position: absolute;
    color: #000;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 100;
    font-family: monospace;
    top: 50%;
    left: 60%;
    transform: translateX(-50%) translateY(-50%);
    line-height: 30px;
}

.main-footer #botonArriba:hover {
    background: rgba(255, 255, 255, 0.5);
}




/*------------------- Estilos responsive -------------------*/

@media screen and (min-width:250px) {
    #botonArriba {
        margin-top: 300px;
    }

    .banner {
        margin-top: -60px;
    }

    .banner__img {
        height: 500px;
    }

}

@media screen and (min-width:300px) {
    #botonArriba {
        margin-top: 280px;
    }
}

@media screen and (min-width:480px) {

    header {
        z-index: 10;
    }

    #botonArriba {
        display: none;
        /*        margin-top: 200px;*/
    }

    .logo {
        color: #fff;
    }

    .main-header__contactInfo {
        text-align: right;
    }

    .main-header__contactInfo__phone {
        background: none;
    }

    .main-header__contactInfo__address {
        color: #fff;
    }

    .main-nav {
        background: rgba(0, 0, 0, 0.85)
    }

    .main {
        padding-bottom: 15px;
    }

    .banner {
        margin-top: -160px;
        z-index: -10;
    }

    .banner__img {
        height: 800px;
    }

    .banner__content {
        font-size: 2em;
    }

    .main__about__description .column:nth-child(2) {
        padding-left: 20px;
        font-size: .9em;
    }

    .main__about__description .btn {
        margin: 0;
    }

    .today-special .column {
        /*        border: 5px solid #de423a;*/
        padding: 5px;
    }

    .today-special__img {
        height: 220px;
        object-fit: cover;
    }

    .main-footer .container--flex {
        align-items: flex-start;
    }

    .column--50 {
        width: 49%;
    }

    .column--50-25 {
        width: 49%;
    }

    .column--33 {
        width: 30%;
    }
}

@media screen and (min-width:768px) {

    /*
    #botonArriba {
        margin-top: 150px;
    }
*/


    .main__title {
        font-size: 2.2em;
    }

    .main__about__description {
        margin-top: 30px;
    }

    .main__about__description .column--50:nth-child(2) {
        font-size: 1em;
    }

    .main__about__description .column--50:nth-child(2) .column__txt {
        line-height: 40px;
    }

    .column--50-25 {
        width: 24%;
    }

    .column__title {
        font-size: 1em;
    }

    .group__title {
        font-size: 2.2em;
    }
}

@media screen and (min-width:1024px) {

    /*
    #botonArriba {
        display: none;
    }
*/

    .container {
        width: 1000px;
    }

    .logo {
        font-size: 2em;
        padding: 0;
    }

    .main-header__contactInfo_phone,
    .main-header__contactInfo_address {
        padding-right: 0;
        font-size: 1.15em;
    }

    .main-nav {
        padding: 0;
    }

    .banner__img {
        height: 850px;
    }

    .banner__content {
        font-size: 2.5em;
    }

    .icon-menu {
        display: none;
    }

    .menu {
        position: static;
        display: flex;
        height: auto;
        width: auto;
    }

    .menu__link {
        padding: 20px;
    }

    .group--color .container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .main__title {
        font-size: 2.5em;
    }

    .main__about__description .column--50:nth-child(2) .column__txt {
        line-height: 50px;
    }

    .today-special__title {
        font-size: 1.4em;
    }

    .today-special__price {
        font-size: 1.8em;
    }

    .main-footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media screen and (min-width:1600px) {
    .container {
        width: 1400px;
    }

    .banner__img {
        height: 800px;
    }

    .main__about__description .column:nth-child(1) img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .today-special__img {
        height: 300px;
    }
}
