* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  margin-top:90px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 200%;
  height: 100%;
  animation: slide 10s infinite;
}

.slide {
  width: 50%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* IMAGENS */
.slide1 { background-image: url("../imag/high-voltage-post-high-voltage-tower.webp"); }
.slide2 { background-image: url("../imag/b22.webp"); }

/* OVERLAY BANNER */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* TEXTO */
.content {
  position: absolute;
  top: 56%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}

.content h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 600;
}

.content p {
  margin-top: 15px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ANIMAÇÃO SLIDE */
@keyframes slide {
  0% { transform: translateX(0); }
  45% { transform: translateX(0); }
  55% { transform: translateX(-50%); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVO */
@media (max-width: 900px) {
   .content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 500px) {
  .content {
    left: 5%;
    right: 5%;
  }

  .content h1 {
    font-size: 1.7rem;
  }

  .content p {
    font-size: 1rem;
  }
}


/* ===== SEÇÃO ===== */
.estrutura {
  padding: 80px 20px;
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  margin-bottom:30px;
}

.estrutura-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== IMAGEM ===== */
.estrutura-imagem {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.estrutura-imagem img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #F70F11;
  z-index: 2;
}

/* círculo decorativo */
.circulo-decorativo {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  background: #F70F11;
  border-radius: 50%;
  z-index: 1;
}

/* ===== CONTEÚDO ===== */
.estrutura-conteudo {
  flex: 2;
  background: #fff;
  padding: 50px 60px;
  position: relative;
  color: #000;
}

.estrutura-conteudo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #067AD6;
}

.estrutura-conteudo .linha {
  display: block;
  width: 60px;
  height: 6px;
  background: #F70F11;
  margin-bottom: 25px;
}

.estrutura-conteudo p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  text-align: justify;
  color: #000;
}

/* detalhe quadrado */
.estrutura-conteudo::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #F70F11;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .slider {
    width: 100%;
    height: 55vh;
  }
  
  .estrutura-container {
    flex-direction: column;
    text-align: center;
  }

  .estrutura-imagem img {
    width: 280px;
    height: 280px;
  }

  .estrutura-conteudo {
    padding: 40px 30px;
  }

  .estrutura-conteudo p {
    max-width: 100%;
  }

  .estrutura-conteudo .linha {
    margin: 0 auto 25px;
  }
}

@media (max-width: 480px) {
  .estrutura-imagem img {
    width: 220px;
    height: 220px;
  }

  .estrutura-conteudo h2 {
    font-size: 26px;
  }

  .estrutura-conteudo p {
    font-size: 15px;
  }
}


.imoveis-section {
  padding: 8px 80px;
  background: #fff;
}

/* TOPO */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.top h2 {
  font-size: 38px;
  font-weight: 500;
  color:#182E3D;
}

.top h2 span {
  color: #F70F11;
}

.top p {
  color: #182E3D;
  margin: 12px 0;
}

.arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid #f7f7f7;
  background: transparent;
  color: #F70F11;
  font-size: 18px;
  cursor: pointer;
}

/* SLIDER */
.slider {
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  gap: 30px;
  transition: transform .5s ease;
}
.card {
  width: 500px;
  height: 400px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BADGE "EM OBRAS" — CENTRAL NO TOPO */
.badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border-radius: 20px;
  background: #fff;
  color: #0e022e;
  font-size: 14px;
  font-weight: 600;
  border: 4px solid #F70F11;
  z-index: 3;
}

/* OVERLAY */
.overlay-servico {
  position: absolute;
  inset: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%);
  color: #fff;
}

/* CANTO INFERIOR ESQUERDO */
.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.bottom-left h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bottom-left ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.bottom-left li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CANTO INFERIOR DIREITO */
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* BOTÃO */
.btn-card {
  background: #E69600;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.clientes-relevantes {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  margin-top: -130px;
}

.clientes-relevantes h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  color:#141414;
}

.clientes-relevantes p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 10px;
}

.clientes-relevantes .linha {
  width: 50px;
  height: 3px;
  background: #F70F11;
  margin: 0 auto 30px;
}
.logos-clientes {
  overflow: hidden;
  width: 100%;
  background: #fff; /* opcional */
}

.logos-track {
  display: flex;
  width: calc(150px * 12); /* largura = número de logos × tamanho */
  animation: scroll 20s linear infinite;
}

.logos-clientes img {
  max-width: 150px;
  height: auto;
  margin: 0 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-clientes img:hover {
  transform: scale(1.1);
}


/* RESPONSIVO */
@media (max-width: 900px) {
  .card {
    min-width: 300px;
    height: 260px;
  }

  .bottom-left ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}


/* RESPONSIVO */
@media (max-width: 900px) {
  .imoveis-section {
    padding: 40px 20px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .card {
    min-width: 300px;
  }

  .info ul {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ANIMAÇÃO DOS LOGOS */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}