

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* HEADER */

header {
    height: 120px;
}

.header {
    max-width: 1300px;
    height: 120px;
    margin: auto;
    display: flex;
    align-items: center;
}

.logo {
    width: 470px;
}

.logoimg {
    height: 53px;
    width: 451px;
}



/* HEADER MENU */

.menu-opener {
    display:none;
}

.menu {
    flex:1;
    display: flex;
    justify-content: flex-end;
}

.menu ul,
.menu li {
    list-style: none;
}

.menu ul {
    display: flex;
}

.menu li a {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    height: 120px;
    align-items: center;
    border-bottom: 5px solid white;
}

.menu li a:hover {
    border-bottom: 5px solid rgb(43, 43, 43);
    transition: 0.5s;
}

.menu .active a {
    border-bottom: 5px solid rgb(43, 43, 43);
}

/* MAIN BANNER */

.banner {
    height:calc(860px - 100px);
    background-color: rgb(69, 69, 69);
    background-image: url('../images/Background2.jpg');
    background-size: cover;
}

.gradient {
    background-image: linear-gradient(140deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.784), rgba(0, 0, 0, 0));
    background-size: cover;
    height: inherit;
}

.introduction {
    display: flex;
    flex-direction: column;
    width: 800px;
    height: 700px;
    justify-content: center;
    padding: 60px;
}

.inttext {
    color: white;
    font-family: "Inter", sans-serif;
}

.inttext h1 {
    font-weight: bold;
    font-size: 64px;
    margin-bottom: 20px;
}

.inttext p {
    font-size: 24px;
    font-weight: 200;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 15px;
    
}

.buttons {
    display: flex;
}

.buttons button {
    text-transform: uppercase;
    background-color: rgba(240, 248, 255, 0);
    border: solid, 2px, white;
    border-radius: 20px;
    font-family:"Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    padding: 9px;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: 30px;
    margin-top: 30px;
}

.buttons button:hover{
    background-color: rgba(129, 129, 129, 0.389);
    cursor: pointer;
}

/* MAIN OPERATION */

.operation {
    padding: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-family: "Inter", sans-serif;
}

.title {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
    font-size: 25px;
    border-bottom: solid 2px black;
}

.content {
    display: flex;
    justify-content: space-around;
    border-bottom: solid 2px black;
}


.list div {
    margin-top: 30px;
    margin-bottom: 30px;
}


.content div h1 {
    font-size: 18px;
    margin-bottom: 10px;
}

.content div p {
    color: rgb(58, 58, 58);
}

span {
    font-weight: bold;
}

/* MAIN MESSAGE */

.message {
    display: flex;
    justify-content: center;
}

.message div {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
    word-break: break-all;
    width: 890px;
}

.message div h1 {
    color: rgba(128, 128, 128, 0.745);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

/* FOOTER */

.footer-container{
    background-color: #414141;
    height: 250px;
    padding: 60px;
    display: flex;
    justify-content: center;
}

.footer{
    width: 90%;
    height: 150px;
    background-color: #414040;
    color: white;
    display: flex;
    justify-content: space-around;
    font-family: "Inter", sans-serif;;
}

.footer img {
    width: 150px;
}

.footer-heading{
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}
.footer-heading h2 {

    margin-bottom: 2rem;
    text-transform: uppercase;

}


.footer-heading ul{
    list-style: none;
}
.footer-heading li {
    color: #ffffffa6;
    
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-heading a:hover{
    color: #fff;
    cursor: pointer;

}

.footer-heading a {
    color:#ffffffa6 ;
    text-decoration: none;
}


/* TABLET */

@media (min-width:557px) and (max-width:991px) {

     html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita rolagem lateral */
}

    .logo {
        margin-left: 30px;
    }

     .menu nav {
        position: absolute;
        z-index: 99;
        top: 120px;
        right: 0px;
        background-color: #fffffff8;
        width: 70vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .menu nav.opened {
        max-height: 500px;
    }


    .menu ul {
        flex-direction: column;
        
    }

    .menu li a {
        height: 120px;
        font-size: 25px;
        border-bottom: solid 0px black;
        margin-left: 20px;
    }

    .menu .active a {
        border-bottom: solid 0px black;
        font-weight: bold;

    }

    .menu-opener {
        width: 80px;
        display: block;
        margin-right: 20px;
    }

      .introduction {
        width: 100vw;
    }


    .footer-container {
       
        padding: 30px;
        align-items: center;

    }

    .footer h2 {
        font-size: 15px;
        margin-bottom: 1rem;
    }
    .footer a {
        font-size:13px;
    }

    .footer img {
        display: none;
    }
}

@media (max-width:557px) {

    html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita rolagem lateral */
}

    body {
        width: 100vw;
    }

    .header {
        width: 100vw;
        justify-content: center;
    }

    .menu {
        width: 80%;
        overflow: hidden;
    }

    .logo {
        width: 70vw;
        margin-left: 20px;
    }

    .logo img{
        width: 70vw;
        height: 40px;
    }


    

    .menu nav {
        position: absolute;
        z-index: 99;
        top: 120px;
        right: 0px;
        background-color: #fffffff8;
        width: 70vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .menu nav.opened {
        max-height: 500px;
    }


    .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .menu li a {
        height: 120px;
        font-size: 25px;
        border-bottom: solid 0px black;
        margin-left: 0px;
    }

    .menu .active a {
        border-bottom: solid 0px black;
        font-weight: bold;

    }

    .menu-opener {
        width: 50px;
        display: block;
        margin-right: 10px
    }

    .introduction {
        width: 100vw;
    }

    .banner h1 {
        font-size: 50px;
    }

    .banner p {
        font-size: 20px;
    }

    .buttons {
        flex-direction: column;
    }

    .banner button {
        width: 200px;
        font-size: 14px;
    }





    .footer {
        flex-direction: column;
        justify-content: start;    
        align-items:start;
        flex-wrap: wrap;
        height: 230px;
    }

    .footer div {
        margin-right: 20px;
    }

    .footer-container {
        padding: 5px;
        padding-top: 10px;
        align-items: center;
        height: 300px
    }



    .footer h2 {
        font-size: 10px;
        margin-bottom: 1rem;
    }
    .footer a {
        font-size:10px;
    }

    .footer img {
        display: none;
    }
}