@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    box-sizing: border-box;
    font-family: Kanit, sans-serif;
}

body{
    margin-top: 80px;
}


/* NAVBAR */

.nav-items{
    margin-right: 9.375vw;    /* Centralizar texto nav */
}

.nav-item{
margin-left: 100px;
color: #124076;
}

.nav-item:hover{
   color: #CBBE3C; 
}
/* NAVBAR */

/* banner */


.texto {
    position: absolute;
    top: 46%;
    left: 16vw;
    background-color: rgba(0, 0, 0, 0.60);
    border-radius: 25px;
    padding: 1.5%;
    text-align: left;
}

.texto h1 {
    font-size: 2em;
    margin-top: 0;
    color: white;
}

.texto p {
    font-size: 1em;
    margin-bottom: 0;
    color: white;
}


.img-banner-mb{
    display: none;
        visibility: hidden;
}
/* banner */

/* SECTION RESTAURANTE UNIVERSITÁRIO */
.content{
    display: flex;
    flex-direction: column;
    gap:30px;
    background: linear-gradient(#3259CE, #142454, #081028);
}

.banner-univ{
    display: flex;
}

.banner{
    background-size: cover;
}

.banner-text{
    display: flex;
    color: #ffffff;
}

h2, p{
    color: #FFFFFF;
}

.img-ucsal{
    width: 25vw;
    max-width: 400px;
}

.r-univ p{
    font-size: 1em;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    font-weight: 300;
    text-align: justify;
}

.r-univ h2{
    font-weight: 500;
}

.r-univ{
    margin: 8% auto 0;
    display: flex;
    justify-items: center;
    align-items: center;
    gap: 28px;
}

.txt-content{
    display: flex;
    flex-direction: column;
    gap: 1px;
}


.r-univ__divtitle{
    display: flex;
    flex-direction: column;
    font-size: 2em;
    margin-bottom: 10px;
}

/* SECTION RESTAURANTE UNIVERSITÁRIO */

/* SECTION CARDS */

.pratos-semanais__title{
    margin-top: 5%;
}

.bg-black{
    margin-bottom: 20%;
}

.img-card{
    height: 300px;
    width: 250px;
    margin-top: 100px;
    transition: .5s;
}

.cards-linha{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pratos-semanais{
    display: flex;
    margin-top: 15%;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    gap: 30px;
}

.pratos-semanais p{
    color: white;
    visibility: hidden;
    opacity: 0;
}

.pratos-semanais h1{
    color: white;
    font-size: 30px;
}

.card{
    height: 300px;
    margin: 50px;
    box-shadow: 5px 5px 20px black;
    overflow: hidden;
    background-color: #101e44;
}

.card__txt{
    height: 100px;
    width: 250px;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    background: rgb(27, 27, 27, .5);
    transition: .5s;
}

.card:hover{
    cursor: pointer;
}

.card:hover .card__txt{
    height: 150px;
    background: rgba(0, 0, 0, 0.7);
}

.card:hover p{
    opacity: 1;
    visibility: visible;
}

.card:hover img{
    transition: .5s;
    transform: scale(1.1) rotate(-3deg);
}
/* SECTION CARDS */

/* Footer */
.footer{
    max-width: 100%;
    background-color: #121213;
    font-size: 18px;
    padding: 100px 50px 50px 100px;
   }

   .footer-content{
    display: flex;
    justify-content: space-around;
   }
   
   .title-footer {
   
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    font-weight: initial;
       font-size:26px;
       width:100%;
       float:left;
       margin-bottom:15px;
   }

   .text-footer {
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
   }

   .logo-footer{
    width: 250px;
    height: 61x;
   }

   .footer .links{
    
    width: 100%;
    float: left;
    color:  #ffffff;
    margin-bottom: 20px;
    padding: 0;
   }
   
   .footer .links a{
       display: block;
       line-height: 33px;
       text-decoration: none;
       color: #fff;
       font-family:'Kanit', sans-serif;
       font-size:16px;
       transition:0.3s;
   }
   
   .footer .links a:hover { color:#CBC264; }
   
   .footer-icons{
    margin-top: 100px;
    text-align: center;
    margin-left: 5%;
   }
   
   .footer-icons a{
    margin-right: 5%;
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50px;
       font-family:'DM Sans', sans-serif;
    font-size: 2vw;
    color: #ffffff;
    text-align: center; 
    line-height: 35px;
    margin-bottom: 5px;
    transition:0.3s;
   
   }

   .footer .footer-icons a:hover{ color:#CBC264;}
/* Footer */

/*Media Queries*/
@media (max-width: 1280px) {

    .card{
        max-width: 20%;
        max-height: 20%;
        min-width: 10%;
        min-height: 10%;
    }

    .footer-content{
        display: flex;
        flex-direction: column;
        gap: 40px;
       }

       .left-text{ text-align: center;}

       
   .center{ text-align: center;}

    .logo-footer{ margin: 0 auto;}

    .footer{ padding: 100px 1% 10% 1%; }
}

@media (max-width: 1065px){
        .texto {
        top: 36%;
        left: 1.3vw;
        padding: 1.5%;
    }

    .pratos-semanais__title{
        margin-top: 10px;
        text-align: center;
    }

    .cards-linha{
        display: flex;
        flex-direction: column;
    }

    .bg-black{
        display: flex;
        flex-direction: row;
        height: 80%;
        padding-left: 100px;
        margin: 20px;
        margin-bottom: 100px;
    }

    .card__txt{
        padding-right: 50px;
    }

    .card{
        max-width: 50%;
        max-height: 60%;

    }

    .card h1{
        font-size: 3.4vw;
    }

    .card p{
        font-size: 1.7vw;
    }

    .img-card{
        width: 100%;
        height: 100%;
        position: relative;
        bottom: 100px;
    }

    .footer-icons a{
        font-size: 3.5vw;
       }

       .r-univ{
        margin-top: 11%;
    }


       .r-univ p{
        font-size: 0.85em;
        max-width: 350px;
    }

}
   
   @media (max-width: 768px) {

    .img-banner{
        display: none;
        visibility: hidden;
    }

    .img-banner-mb{
        display: block;
            visibility: visible;
    }

    .texto {
        top: 66%;
        left: 2vw;
        padding: 1.5%;
    }

    .texto h1{
        font-size: 3.4vw;
    }

    .texto p{
        font-size: 1.7vw;
    }

    .card{
        max-width: 100%;
        max-height: 20%;
    }

    .card__txt{
        height: 100%;
        padding-right: 60%;
        font-size: 1.7vw;
    }

    .img-card{
        width: 100%;
        height: 100%;
        min-width: 80px;
    }

    .bg-black{
        display: flex;
        justify-content: space-around;
        padding-left: 0;
        max-width: 90%;
    }

    .card__txt h1{
        visibility: hidden;
    }

    .r-univ{
        flex-direction: column;
        align-items: center;
    }

    .img-ucsal{
        width: 70%;
        max-width: 100%;
        min-width: 70px !important;
        height: 30%;
        margin-top: 8vw;
    }

    .r-univ p{
        font-size: clamp(1rem, 2.5vw, 1rem);
    }

    .r-univ h2{
        font-size: 5vw;
    }

    .text-ru p{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 2.4vw;
    }
    .r-univ__divtitle{
        align-self: center;
    }

    .footer-content{
        display: flex;
        flex-direction: column;
        gap: 40px;
       }

       .left-text{
        text-align: center;
       }

       
   .center{
    text-align: center;
   }

       .logo-footer{
        margin: 0 auto;
       }


    .footer { padding: 100px 1% 10% 1%; 
    }

    .footer-icons a{
        font-size: 5vw;
       }
   }
