/* -------------  BASE (≥ 1280 px) ------------- */
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}




/* HERO -------------------------------------------------- */
.hero {
  background: #151515;
  color: #fff;
  padding: 80px 0;
  min-height: 500px;
}

.hero h1 {
  font-size: 48px;
  margin: 50px 0 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero a {
  background: #0075FF;
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
}

.img_intro {
  margin-top: 30px;
}

/* PRODUTOS & SERVIÇOS ---------------------------------- */
.prod-serv {
  display: flex;
  flex-wrap: wrap;
}

.prod-serv a {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  color: #fff;
  font: 700 24px/1 Arial;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.prod-serv a span {
  text-decoration: underline;
  text-underline-offset: 6px;
  position: relative;
  z-index: 2;
}

.prod-serv a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #006EE1;
  transition: bottom .4s ease;
  z-index: 1;
}

.prod-serv a:hover::before {
  bottom: 0;
}

.prod-serv a:hover span {
  color: #fff;
  text-decoration-color: #fff;
}

/* CLIENTES --------------------------------------------- */
.clientes {
  background: #111;
  color: #fff;
  margin-top: 100px;
  padding: 60px 0;
  text-align: center;
  height: 700px;
}

.clientes-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  justify-items: center;
  align-items: center;
  max-width: 1000px;
  margin: 100px auto 0;
}

.clientes img {
  max-width: 150px;
  transition: transform .3s;
}

.clientes img:hover {
  transform: scale(1.05);
}

/* QUEM SOMOS ------------------------------------------- */
.quem-somos {
  padding: 60px 0;
  text-align: center;
}

.quem-somos .card {
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}

.quem-somos .card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0;
}

.quem-somos h3 {
  font-size: 22pt;
  margin: 10px 0 0;
}

.quem-somos p {
  font-size: 12pt;
  margin: 0;
}

/* DEPOIMENTOS ------------------------------------------ */
.depoimentos {
  background: #111;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.depoimentos h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.depoimento {
  background: #fff;
  color: #000;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
  transition: transform .3s;
  text-align: left;
}

.depoimento:hover {
  transform: translateY(-5px);
}

.texto-depoimento {
  font-size: 18px;
  margin-bottom: 20px;
}

.autor-depoimento {
  font-size: 14px;
  color: #777;
}

/* FOOTER ----------------------------------------------- */
footer {
  background: #111;
  color: #fff;
  padding: 60px 0;
}

footer h2 {
  font-size: 56pt;
  margin-bottom: 150px;
}

footer .social {
  margin-top: 20px;
}

footer .social a {
  color: #777;
  font-size: 18pt;
  margin-right: 20px;
  text-decoration: underline;
  text-decoration-color: #777;
  text-underline-offset: 6px;
  transition: color .3s, text-decoration-color .3s;
}

footer .social a:hover {
  text-decoration-color: #006EE1;
}

footer .contato-btn {
  margin: 170px 0 0 100px;
  font-size: 18pt;
  padding: 20px 80px;
  text-decoration: none;
  border: 2px solid #0075FF;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  display: inline-block;
  transition: .3s;
}

footer .contato-btn:hover {
  background: #0075FF;
}

.localizacao {
  margin: 220px 0 0 200px;
  text-align: left;
  font-size: 24px;
  color: #777;
  text-transform: uppercase;
}

.redes {
  color: #393939;
  text-transform: uppercase;
  font-size: 18pt;
  margin-right: 20px;
}

/* -------------  BREAKPOINT ≤ 1024 px ------------- */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .clientes-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

 footer h2 {
    font-size: 40pt;
    margin-bottom: 100px;
  }

  .localizacao {
    margin: 140px 0 0 0;
    font-size: 20px;
    text-align: center;
  }

  footer .contato-btn {
    margin: 120px auto 0;
  }

}

/* -------------  BREAKPOINT ≤ 768 px ------------- */
@media (max-width: 768px) {
  
  .img_intro {
    margin: 30px auto 0;
    max-width: 300px;
  }

  .prod-serv a {
    height: 250px;
    font-size: 20px;
  }

  .clientes {
    height: 1100px;
  }

  .clientes-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 60px;
  }

  .depoimento {
    margin-bottom: 20px;
  }

  footer h2 {
    font-size: 32pt;
    margin-bottom: 60px;
    text-align: center;
  }

  footer .social {
    font-size: 12pt;
    text-align: center;
  }

  .redes {
    font-size: 12pt;
    text-align: center;
  }

  footer .social a {
    font-size: 10pt;
    text-align: center;
  }

  .localizacao {
    margin: 60px 0 0;
    font-size: 18px;
    text-align: center;
  }
}

/* -------------  BREAKPOINT ≤ 480 px ------------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero a {
    padding: 12px 24px;
    font-size: 14px;
  }

  .prod-serv a {
    height: 200px;
    font-size: 18px;
  }

  .clientes-logos {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .texto-depoimento {
    font-size: 16px;
  }

  .autor-depoimento {
    font-size: 12px;
  }

  footer h2 {
    font-size: 24pt;
    margin-bottom: 40px;
  }

  footer .contato-btn {
    padding: 15px 40px;
    font-size: 16px;
    margin-top: 40px;
  }

  .localizacao {
    font-size: 14px;
    margin-top: 40px;
    text-align: center;
  }
}
