@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Poppins: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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-areas:
    "header header header"
    "main main main "
    "footer footer footer";
  grid-template-columns: repeat(3, 1fr);
  overflow-x: hidden;
}

header {
  grid-area: header;
  background-color: #fafafa;
  color: #003f88;
}

.header {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr 200px;
  align-items: center;
  background-color: #fafafa;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h3 {
  font-size: 16px;
  font-weight: 800;
  margin-left: -90px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.logo img {
  width: 250px;
  height: 90px;
  object-fit: contain;
}

.menu {
  display: flex;
  justify-content: center;
}

.menu-opener {
  display: none;
}

.menu ul,
.menu li {
  list-style: none;
}

.menu ul {
  display: flex;
}

.menu li a {
  font-weight: 700;
  font-size: 16px;
  color: #00509d;
  text-transform: uppercase;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
  height: 75px;
  display: flex;
  align-items: center;
  border-bottom: transparent;
}

.menu li a:hover,
.menu .active a {
  border-bottom: 5px solid #f9bf0f;
}

.contato-info {
  justify-self: end;
  padding: 10px;
}

.contato-info button {
  width: 200px;
  height: 50px;
  padding: 8px;
  background-color: #f9bf0f;
  border-radius: 8px;
  margin-left: 20px;
  border: solid 2px #f8f9fa;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #003f88;
}

main {
  grid-area: main;
}

.banner {
  height: 400px;
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;
}

.cta {
  max-width: 500px;
}

.cta h2 {
  font-size: 30px;
  text-transform: capitalize;
}

.cta p {
  font-size: 18px;
  line-height: 30px;
  margin-top: -20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.cta button {
  width: 350px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9bf0f;
  border: solid 1px #f9bf0f;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #003f88;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.cta a {
  text-decoration: none;
}

.main {
  grid-area: main;
}

.about {
  display: grid;
  place-items: center;
  background-color: #ffffff;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
  padding: 20px;
}

.area-img img {
  width: 400px;
  max-width: 100%;
  height: auto;
  box-shadow: 30px 30px 0 #f9bf0f;
  border-radius: 4px;
}

.area-texto h3 {
  color: #f9bf0f;
  font-size: 18px;
  font-weight: 600;
  margin-top: 50px;
}

.area-texto h2 {
  color: #00296b;
  font-size: 40px;
  font-weight: 800;
}

.area-texto p {
  color: #00296b;
  font-size: 18px;
  line-height: 40px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

.service {
  display: grid;
  background-color: #edf1fc;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 50px;
}

.service-texto h3 {
  color: #f9bf0f;
  font-size: 18px;
  font-weight: 600;
}

.service-texto h2 {
  color: #00296b;
  font-size: 40px;
  font-weight: 800;
}

.service-img {
  padding: 50px;
}

.service-img img {
  width: 450px;
  height: 580px;
  box-shadow: 30px 30px 0 #f9bf0f;
  border-radius: 4px;
  margin-top: 80px;
  object-fit: cover;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
}

.services-list h3 {
  color: #00296b;
  font-size: 20px;
  font-weight: 800;
}

.services-list p {
  max-width: 200px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: #00296b;
  font-size: 18px;
}

.service1,
.service2,
.service3,
.service4 {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
}

.service1 img,
.service2 img,
.service3 img,
.service4 img {
  display: none;
}

.sectors {
  display: block;
  background-color: #ffffff;
  padding: 0;
}

.sectors h3 {
  text-align: center;
  margin-top: 50px;
  color: #f9bf0f;
  font-weight: 600;
}

.sectors h2 {
  color: #00296b;
  text-align: center;
  font-size: 35px;
  font-weight: 800;
}

.sectors-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
}

.sectors-unclogging > .bi-house,
.bi-building,
.bi-shop,
.bi-buildings {
  color: #f9bf0f;
  font-size: 64px;
}

.sectors-unclogging h3 {
  color: #00296b;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.cta-call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  background-image: url("../images/cta2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  padding: 20px;
}

.cta-call h2 {
  font-size: 45px;
  max-width: 550px;
  text-align: left;
}

.cta-call button {
  width: 350px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9bf0f;
  border: solid 1px #f9bf0f;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #003f88;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.cta-call a {
  text-decoration: none;
}

.faq {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.faq h3 {
  text-align: center;
  margin-top: 50px;
  color: #f9bf0f;
  font-weight: 6800;
}

.faq h2 {
  color: #00296b;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-top: -3px;
}

.box {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  margin-top: -40px;
}

.box details {
  width: 950px;
  border: 2px solid #edf1fc;
  border-radius: 8px;
  background-color: #edf1fc;
  padding: 20px;
  margin: 10px;
}

.box summary {
  font-size: 22px;
  margin-top: 10px;
  color: #00296b;
  font-weight: 800;
}

.box p {
  font-size: 20px;
  margin-bottom: 10px;
  margin-left: 20px;
  color: #00296b;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

.menu-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  background-color: #003f88;
}

.menu-bottom h4 .bi-clock-history,
h4 .bi-whatsapp,
h4 .bi-telephone {
  margin-right: 8px;
}

.menu-bottom h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
}

.menu-bottom a {
  text-decoration: none;
}

.footer {
  grid-area: footer;
  display: grid;
  grid-template-columns: 2fr 2fr;
  place-items: center;
  height: auto;
  border-top: solid 2px #f9bf0f;
  background-color: #00509d;
  padding: 10px;
}

.footer p {
  font-size: 12px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 12px;
  font-weight: 500;
}

/* COMPUTADORES MENORES */
@media screen and (max-width: 1025px) {


  .logo h3 {
    font-size: 14px;
  }

  .menu li a {
    font-size: 14px;
  }

  .cta h2 {
    text-align: left;
    text-transform: uppercase;
  }

  .about {
    display: flex;
    flex-direction: column;
    padding: 10px;
  }

  .about h3,
  h2 {
    text-align: center;
  }

  .area-img {
    display: none;
  }

  .area-texto {
    max-width: 450px;
  }
  .service {
    display: flex;
    flex-wrap: wrap-reverse;
    padding: 30px;
  }

  .service-texto h3 {
    text-align: center;
  }

  .service-img {
    padding: 10px;
    margin: 0 auto;
    padding: 10px;
  }

  .service-img img {
    width: 600px;
    max-width: 100%;
    height: 400px;
    margin-top: 20px;
  }

  .service {
    display: grid;
    grid-template-columns: 1fr, 3fr;
  }
  .services-list h3 {
    font-size: 16px;
    text-align: left;
  }

  .services-list p {
    font-size: 16px;
  }

  .service1,
  .service2,
  .service3,
  .service4 {
    max-width: 250px;
    height: auto;
  }

  .sectors h2 {
    font-size: 25px;
  }

  .sectors-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    place-items: center;
  }

  .sectors-unclogging > .bi-house,
  .bi-building,
  .bi-shop,
  .bi-buildings {
    font-size: 48px;
  }

  .box details {
    max-width: 650px;
  }
}

/* TABLETS E MOBILE */
@media (max-width: 767px) {
  .header {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 0;
  }
  
  .logo h3 {
    font-size: 15px;
  }
  
  .menu-opener {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 20px;
    cursor: pointer;
  }
  
  #nav-menu {
    position: absolute;
    top: 95px;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
    width: 70vw;
    max-width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    border: solid 2px #f6f6f6;
    border-top-left-radius: 5px;
    display: none;
    
  }
  
  .menu ul {
    flex-direction: column;
  }
  
  .menu li a {
    font-weight: 600;
    height: 80px;
    font-size: 18px;
    margin-left: 50px;
    border: 0;
  }
  
  .menu li.active a {
    border: 0;
    color: #f8f9fa;
  }
  
  .banner {
    height: auto;
  }
  
  .cta button {
    max-width: 80%;
    font-size: 18px;
  }
  
  .contato-info {
    display: none;
  }
  
  .about {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  
  .area-texto h2 {
    font-size: 25px;
  }
  
  .area-texto p {
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .service {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
  
  .service-img {
    padding: 10px;
    display: flex;
    justify-content: center;
  }
  
  .service-img img {
    max-width: 80%;
    height: 350px;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .sectors {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .sectors h2 {
    font-size: 20px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  
  .sectors-unclogging > .bi-house,
  .bi-building,
  .bi-shop,
  .bi-buildings {
    color: #f9bf0f;
    font-size: 40px;
  }
  
  .sectors-unclogging h3 {
    font-size: 18px;
  }
  
  .cta-call {
    height: auto;
  }
  
  .cta-call h2 {
    font-size: 25px;
    max-width: 95%;
    text-transform: uppercase;
  }
  
  .cta-call button {
    max-width: 80%;
    font-size: 18px;
  }
  
  .faq h2 {
    font-size: 25px;
  }
  
  .box details {
    max-width: 90%;
  }
  
  .box summary {
    font-size: 18px;
  }
  
  .menu-bottom,
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    padding-left: 20px;
  }
}

/* TELAS MUITO PEQUENAS (320px - 375px) */
@media (max-width: 375px) {
  * {
    max-width: 100%;
    
  }
  
  .header {
    width: 100%;
    padding: 0;
    
  }



  .logo h3 {
    font-size: 12px;
    margin-right: -20px;
  
    
  }

  .menu-opener{
    margin-right: -40px;
   width: 24px;
   height: 24px;
  }
  
   .cta h2,
  .area-texto h2,
  .service-texto h2,
  .sectors h2,
  .cta-call h2,
  .faq h2 {
  font-size: 18px;
  font-weight: 800;
}

.sectors-unclogging h3,
.cta p,
.sectors h3,
.sectors-list h3,
.service-texto h3,
.area-texto h3,
.faq h3
{
  font-size: 16px;
  margin-top: 8px;
}

.cta button{
 font-size: 16px;
} 



.area-texto p{
 width:90%;
}




.faq{
  padding-top: 30px;
}

.box{
 
  padding: 30px;
}



.box summary{
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}



.menu-bottom h2{
  font-size: 16px;
  font-weight: 600;
}


.footer-right h3,
.footer-center h3{
  font-size:16px;
  font-weight: 600;
  text-transform: uppercase;

}

.footer-right h4,
.footer-center h4{
  font-size:14px;

}

.footer-left h2{
  display: none;
}


}