/* ================= BASE (Desktop) ================= */
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

/* HEADER */
header {
  background: #151515;
}

header img {
  margin-left: 10px;
  max-width: 150px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  background: #fff;
  color: #151515;
  padding-top: 100px;
  min-height: 300px;
}

.hero h1 {
  font-size: 48px;
  margin: 50px 0 40px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 60px;
  line-height: 1.5;
}

.hero a {
  background: #0075FF;
  color: #fff;
  padding: 20px 60px;
  border-radius: 0;
  text-decoration: none;
}

.img_intro {
  margin-top: 30px;
}

/* Barra de botões */
.barra-servicos {
  gap: 0;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}

.servico {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  padding: 18px 8px;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

.blue {
  background: #006EE1;
  color: #fff;
}

.yellow {
  background: #FFBA14;
  color: #000;
}

.servico:not(:last-child) {
  border-right: 16px solid #fff;
}

.servico:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

/* NOSSA EQUIPE */
.equipe {
  background: #151515;
  color: #fff;
  padding: 100px 0;
}

.equipe-titulo {
  text-align: center;
  font-size: 32px;
  margin-bottom: 80px;
}

.equipe-row {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}

.equipe-img {
  position: relative;
}

.equipe-img img {
  width: 100%;
  border-radius: 6px;
}

.icone-gear {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
}

.equipe-info h3 {
  font-size: 32px;
  margin: 0 0 4px;
}

.equipe-info .cargo {
  display: block;
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 20px;
}

.equipe-info p {
  font-size: 26px;
  line-height: 1.5;
  margin: 0;
}

/* Galeria de projetos */
.galeria-projetos {
  padding-top: 150px;
  gap: 20px;
  background-color: #151515;
}

.projeto-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  transition: transform .3s;
}

.projeto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projeto-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, .25);
}

/* Métricas */
.metrics {
  background: #151515;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.metrics-title {
  font-size: 32px;
  margin-bottom: 60px;
}

.metrics-row {
  gap: 40px;
  justify-content: center;
}

.metric-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-size: 26px;
  font-weight: 700;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: background .25s, color .25s;
}

.metric-box:hover {
  background: #fff;
  color: #000;
}

/* 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: Tablet ================= */
@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;
  }

  .metric-box {
    font-size: 24px;
    padding: 30px 15px;
  }
}

/* ================= BREAKPOINT: Mobile ================= */
@media (max-width: 768px) {
  .menu {
    justify-content: center;
    margin-top: 20px;
  }

  .menu a {
    font-size: 14px;
  }

  .img_intro {
    margin: 30px auto 0;
    max-width: 300px;
  }
  
  .clientes-logos {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  footer h2 {
    font-size: 32pt;
    margin-bottom: 60px;
    text-align: center;
  }
  .servico:not(:last-child) {
  border-right: 0px solid #fff;
}

  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;
  }

  /* Métricas no mobile */
  .metrics {
    padding: 40px 0;
  }

  .metrics-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .metrics-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metric-box {
    grid-column: span 1;
    font-size: 18px;
    padding: 20px 10px;
    margin-bottom: 10px;
  }
}
/* BREAKPOINT ≤ 480 px */
@media (max-width: 480px) {
  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;
  }
}
