@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{

    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Montserrat', sans-serif;
}
p,a{
    font-family: "Nunito Sans", serif;
}

:root{
    --first-color: #0f9fdb;
    --second-color: #49b758;
    --third-color: #f2f2f2;
    --fourth-color: #000;
    --fifth-color: #fff;
}

/*header*/
header{
    background-color: var(--first-color);
    color: var(--fifth-color);
    padding: 10px 30px;
    text-align: center;
}
header div{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}
nav{
    margin-right: 50px;
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav ul li a{
    text-decoration: none;
    color: var(--fifth-color);
}
.logo{
    width: 80px;
    height: auto;
}
.menu{
    width: 70vw;
    margin-block: auto;
}
.menu ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    gap: 15px;

}
.menu ul li{
    list-style: none;
}
.menu ul li a{
    color: var(--fifth-color);
    font-weight: 700;
}
.menu-toggle {
    display: none; /* Escondido por padrão */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    transition:  0.3s ;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    transition:  0.3s linear;
    z-index: 100;
  }
  

.menu-toggle.active .bar:nth-child(1) {
 transform: translateY(8px) rotate(45deg); 
 }

.menu-toggle.active .bar:nth-child(2) {
 opacity: 0; 
}

.menu-toggle.active .bar:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}

  @media (max-width: 768px) {
    .menu {
      display: none; 
      width: 100%;
      background:var(--first-color);
      position: absolute;
      top: 0px;
      right: 0px;
      width: 50vw;
      z-index: 1;
      border-radius: 10px;
      margin-right: 0px;
    }
    .menu ul {
      flex-direction: column;
      width: 100%;
      text-align: center;
    }
  
    .menu li {
      margin: 10px 0;
    }
  
    .menu-toggle {
        display: flex;
        z-index: 10;
        position: absolute;
        top: 20px;
        right: 20px;
        transition: 0.3s;
        align-content: flex-end;
        flex-wrap: wrap;
    }
  
    .menu.active {
      display: block; 
    }
    .logo{
      margin-right: auto;
    }
  }
/*header*/
/*main*/
.banner{
    position: relative;
    overflow: hidden;
    height: 70vh;
}
.banner img{
    min-height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
}
.banner div{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
    top:0px;
    width: 100%;
}
.banner h1{
text-align: center;
color: var(--fifth-color);
font-size: 3rem;
}
.banner p{
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    color: var(--fifth-color);
    font-size: 1.3rem;
}

.banner button{
    width: 200px;
    height: 50px;
    border-radius:15px;
    background-color: var(--second-color);
    border: none;
    margin-top: 20px;
}
.banner button a{
    text-decoration: none;
    color: var(--fifth-color);
    font-size: 1.2rem;
}
.sobre{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 40px;
    margin: 0px auto;
    justify-content: center;
}

.sobre div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sobre div div{
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 600px;
}
.sobre div div div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sobre div div div img{
    width: 50px;
    height: auto;
}
.imagemsobre{
    max-width: 60%;
    height: auto;
    margin: 0px auto;
}
.valores{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 40px 40px;
    text-align: center;
    row-gap: 30px;
}
.valor{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.valores div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.valores div div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 260px;
    height: 365px;
    border: 3px solid var(--fourth-color);
    border-radius: 10px ;
    padding: 5px;
    text-align: center;
}
.vantagens{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 40px 40px;
    gap: 40px;
}
.vantagens div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: 200px;
    border: 3px solid var(--fourth-color);
    border-radius: 15px;
    padding: 10px;
}
.oferecemos h2, .oferecemos p{
    text-align: center;
    padding: 10px 0px;
}
.obras{
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}
.obras h2{
    text-align: center;
    color: var(--main-color);
    font-size: 2rem;
    width: 100%;
    
}
.clientesObra{
    display: inline-block;
    animation: slider 35s linear infinite;
    vertical-align: middle;
    margin: 0px 0px;

}

.obras {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1440px;
    gap: 20px;
    margin-inline: auto;
}
.obras p{
    text-align: center;
    margin-block: 50%;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0px 0px 7px #505050;
}
.clientesObra{
    width: 320px;
    height: 320px;
    background-repeat: no-repeat;
    border-radius: 20px;
    transition: all 1s ease;
}
.clientesObra:nth-child(2) {
    background-image: url(/image/ibiuna.png);
}

.clientesObra:nth-child(2):hover {
    background-image: url(/image/ibiunap.png);
}
.clientesObra:nth-child(3){
    background-image: url(/image/itu.png);
}
.clientesObra:nth-child(3):hover{
    background-image: url(/image/itup.png);
}
.clientesObra:nth-child(4){
    background-image: url(/image/sorocaba.png);
}
.clientesObra:nth-child(4):hover{
    background-image: url(/image/sorocabap.png);
}
.clientesObra:nth-child(5){
    background-image: url(/image/mairinque.png);
}
.clientesObra:nth-child(5):hover{
    background-image: url(/image/mairinquep.png);
}
@media(max-width: 425px){
    .sobre{
        flex-direction: column-reverse;
    }
    .vantagens {
        padding: 20px;
        gap: 20px;
    }
    .vantagens div{
        width: 180px;
    }
    .valores {
        padding: 7px;
        row-gap: 10px;
    }
    .valores div div {
        width: 180px;
    }
    .obras div{
        width: 180px;
        height: 180px;
    }
    .obras p{
        font-size: 1.3rem;
    }

} 
.whatsappButton{
    width: 80px;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
/*main*/
/*footer*/
footer{
    background-color: #272727;
    padding-top: 10px;
}
footer div{
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-around;
 padding: 20px;
 align-items: flex-start;
}

footer div div{
 display: flex;
 flex-direction: column;
 max-width: 400px;
}

footer img{
    width: 40px;
    margin: 0px 5px;
}
.social{
    display: inline;
    padding: 0px;
    margin: 15px auto;
}
.developed{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--fourth-color);
    width: 100%;
}
footer h2, footer p, footer a{
    color: var(--fifth-color);

}
footer h2{
    margin-bottom: 15px;
}
footer ul{
    list-style: none;
    text-decoration: none;
}
footer p {
    color: #fff;
    font-weight: 500;
}
footer p a{
    color: var(--fifth-color);
    font-weight: 500;
}
footer p a:hover{
    text-decoration: underline;
}
/*footer*/