@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
      scroll-behavior: smooth;

}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #333;
}

/* ===== HEADER ===== */
header {
  background-image: linear-gradient(to bottom , #00C1FA , #0061EB);
  padding: 20px;
  font-size: 20px;
  text-align: center;
}

header nav a {
  padding: 15px;
  color: #fff;
  text-decoration: none;
}

header nav a:hover {
  text-decoration: underline;
}

/* ===== HERO ===== */
.img {
  background-image: url(imagens/img/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1rem;
}

.text {
  max-width: 800px;
}

.text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text h2 {
  font-size: 1.2rem;
  font-weight: normal;
}

input.zap {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #0076EE;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}

input.zap:hover {
  border: 3px solid #fff;
  transition: 0.5s;
}

/* ===== SECTION TEXTO + IMAGEM ===== */
section {
  padding: 3rem 20%;
  display: flex;
}

.text2 {
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.text2 h1 {
  font-size: 2rem;
  color: #3A4A92;
  margin-bottom: 1rem;
}

.img2 {
  text-align: center;
  margin-top: 2rem;
}

.img2 img {
  max-width: 100%;
  height: auto;
}

/* ===== P3 ===== */

.p3{
    background-color: #005bb58a;
    margin: auto;
    display: block;
}


.p3 .text3 {
  background-image: url(imagens/img/eletricista.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 12px;
}

.p3 h1 {
  margin-bottom: 1rem;
}

.p3 p {
  max-width: 800px;
}

/* ===== SERVIÇOS ===== */
.d0 {
  text-align: center;
  margin: 2rem 0 1rem;
}

.d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 5%;
}

.d1, .d2, .d3, .d4, .d5, .d6 {
  background-image: linear-gradient(to bottom , #00C2FA , #0060EB);
  border-radius: 30px 10px;
  padding: 1rem;
  font-family: 'Poppins';
  color: white;
  box-shadow: 1px 1px 10px black;
  text-align: center;
}

.d1 img, .d2 img, .d3 img, .d4 img, .d5 img, .d6 img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.d h2 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.d p {
  font-size: .95rem;
  margin-bottom: 1rem;
}

.d a {
  background-color: black;
  padding: 8px 12px;
  color: white;
  text-decoration: none;
  border-radius: 9px;
  display: inline-block;
}

.d a:hover {
  background-color: green;
}

/* ===== TEXTO 4 ===== */
.text4 {
  width: 100%;
  margin: 3rem auto;
  text-align: center;
      background-color: #005bb58a;

}

.text4 h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
      margin-top: 25px;

}
.text4 > p{
       padding-top: 25px;
       font-size: 25px;

}
.text4 ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.text4 ul li {
  margin: .5rem 0;
}
.text4 > img{
    border-radius: 10px;
    width: 30%;
}
/* ===== MAPA ===== */
.iframe {
  margin: 3rem 0;
  text-align: center;
}

.iframe h1 {
  margin-bottom: 1.5rem;
  box-shadow: 1px 1px 5px;
}

.iframe iframe {
  width: 90%;
  max-width: 900px;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== CONTATO ===== */
.text5e6 {
  display: flex;
  background-color: #005bb58a;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  margin: 3rem auto;
  padding: 40px 5%;
  padding-bottom: 15px;
}

.text5 h1, .text6 h1 {
  margin-bottom: 1rem;
}

.text5 ul {
  list-style: none;
  padding: 0;
}

.text5 ul li {
  margin-bottom: 1rem;
}

.text5 h2 {
  color: blue;
}
.text6 , .text5{
    border: 1px solid black;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 2px 2px 9px black;
}

.text6 form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text6 input[type="text"] {
  padding: .8rem;
  border: 2px solid #000;
  border-radius: 6px;
}

.zap2, .zap3 {
  margin-top: 1.5rem;
  padding: 1rem;
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #0076EE;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}

.zap2:hover, .zap3:hover {
  background-color: #005bb5;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets */
@media (max-width: 992px) {
    html{
          box-sizing: border-box;

    }
  .text h1 {
    font-size: 2rem;
  }
  .text h2 {
    font-size: 1rem;
  }
  .text2, .p3 p {
    text-align: center;
  }
  .p3 .text3 {
    text-align: center;
  }
  .text5e6 {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px;
  }
.text6 input[type="text"]{
    width: 300px;
}
  .text5 > ul > li{
    width: 150px;
  }
  .iframe iframe {
    height: 300px;
  }
  
  .text4 > img {
    border-radius: 10px;
    width: 60%;
}

}

/* Celulares */
@media (max-width: 576px) {

    html{
          box-sizing: border-box;

    }

  header nav a {
    display: block;
    padding: 10px;
  }
  .img {
    height: auto;
    padding: 0rem 3rem;
    padding-bottom: 20px;
  }
  .text h1 {
    font-size: 1.6rem;
  }
  .text h2 {
    font-size: .95rem;
  }
  input.zap, .zap2, .zap3 {
    width: 100%;
  }
  .d {
    grid-template-columns: 1fr;
  }

    .text5e6 {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px;
  }
.text6 input[type="text"]{
    width: 300px;
}

  .iframe iframe {
    width: 100%;
    height: 250px;
  }
  .text4 h3 {
    font-size: 1.4rem;
  }

  .p3 > .text3 > .txt3{
    font-size: 16px;
  }

  .text4 , .text3 > img{
    width: 100%;
  }
   .text4 > img {
    border-radius: 10px;
    width: 60%;
}

}
