@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial , 'Titillium Web', sans-serif;    
}

html{
    scroll-behavior: smooth;
}

.prim-img {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
    text-align: center;
    width: 100%;
}

.prim-img img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.container{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.container1{ 
    max-width: 1080px;
    margin: 0 auto;
    text-align: justify;   
}

.container1 h2, h3{
    text-align: center;
}

header{    
    background-color: #0b0b0b;
    width: 100%;
    padding: 15px 4%;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo{
    width: 50%;
}

.logo img{
    width: 350px;
    cursor: pointer;
}

.menu{
    width: 30%;
}

.menu nav a{
    color: #c4c4c4;
    text-decoration: none;
    font-size: 18px;
    padding-right: 20px;
    padding-bottom: 8px;
    position: relative;
}

.menu nav a::after{
    content: " ";
    width: 0px;
    height: 4px;
    background-image: linear-gradient(45deg , #FF2500, #FF7100);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}

.menu nav a:hover::after{
    width: 30px;
}

.menu nav a:hover{
    color: #ffffff;
}

.social{
    width: 20%;
}

.social button{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border: 0;
    cursor: pointer;
    background-image: linear-gradient(45deg , #FF2500, #FF7100);
    border-radius: 9px;
    transition: transform 0.5s;
}

.social button i{
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

.social button:hover{
    transform: scale(0.9);
}

.corfundo{
    /* background-image: url(./img/fundo1.png); */
    background-color: #ced8b4;
    background-size: 1500px;
}

.frsusp{
	background-size:cover;
	background-repeat: no-repeat;    
}

.oleo{    
	background-size:cover;
	background-repeat: no-repeat;
}

/* estilização do conteúdo */

section{
    padding: 90px 4%;
    border-bottom: 1px solid #ccc;
}

section h2{
    font-size: 2em;
    margin-bottom: 25px;
}

section p{
    font-size: 20px;
}

#menu-mobile{
    background-color: #1111119f;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 77px;
    right: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.5s;
    overflow: hidden;
}

#menu-mobile nav a{
    display: block;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 20px;
    text-decoration: none;
}

#menu-mobile nav a:hover{
    background-color: #383838;
}

#btn-menu, #btn-menu-close{
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

td {
    padding: 10px 20px 10px 20px;
}

table {
    border-radius: 5px;
}

.horario {
    display: flex;
    flex-direction: row;
}

.horariomapa {
    padding-right: 10px;
}

.horariomapa1 {
    padding-left: 10px;
}

.desenv {
    text-align: center;
    color: #000000;
    font-size: 12px;
}
.rodape-dica {
  text-align: center;        /* centraliza */
  font-size: 10px;           /* tamanho da fonte */
  color: #000;               /* texto preto */
  margin-top: 10px;
}

.rodape-dica p {
  margin: 0;
}

.fonte-arial {
  font-family: Arial, Helvetica, sans-serif;
}

.fonte-brinde {
  font-family: Candara, Calibri, Segoe, "Segoe UI", sans-serif;
  font-weight: bold;
  color: red;                /* palavra brinde em vermelho */
}


@media screen and (max-width: 900px) {
    .menu,
    .social{
        display: none;
    }

    .logo{
        width: 30%;
    }

    #btn-menu,
    #menu-mobile{
        display: block;
    }

    #menu-mobile.active{
        height: calc(100vh - 77px);
        visibility: visible;
    }

    td {
        padding: 0px;
    }

    .horario {
        flex-direction: column;
        width: 75%;
    }

    iframe {
        width: 90%;
    }

    }