* { margin: 0; padding: 0; box-sizing: border-box; }
    body.page-wrapper {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #0A081D;
      color: #fff;
      line-height: 1.6;
    }
/* ===== HEADER AJUSTADO ===== */
header {
  background-color: #0A081D;
  padding: 0 40px; /* 🔥 remove espaço vertical extra */
  height: 100px;   /* 🔥 controla a altura do header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #52FFB8;
}

/* CONTAINER DA LOGO */
.logo-container {
  display: flex;
  align-items: center;
}

/* LOGO CORRETA (SEM DISTORÇÃO) */
.logo-container img {
  height: 125px;   /* 🔥 tamanho ideal */
  width: auto;    /* mantém proporção */
  display: block;
}

/* MENU */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header h1 {
  font-size: 1.8rem;
  color: #52FFB8;
  margin: 0;
  flex-grow: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #52FFB8;
  font-weight: 600;
  font-size: 18px;   /* 🔥 AUMENTA O TEXTO */
  padding: 8px 12px; /* 🔥 AUMENTA ÁREA DE CLIQUE */
  transition: all 0.3s ease;
}

nav a:hover {
  color: #fff;
  text-decoration: underline;
}

    .destaque-topo {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      background-color: #0A081D;
      padding: 60px 20px;
    }
    .container-topo {
      max-width: 1200px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .texto-topo {
      flex: 1;
      min-width: 280px;
      padding: 20px;
    }
    .texto-topo h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .texto-topo h2 span {
      color: #52FFB8;
    }
    .texto-topo p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .texto-topo a {
      background-color: #52FFB8;
      color: #313949;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color .3s;
    }
    .texto-topo a:hover {
      background-color: #3ce9a2;
    }
    .imagem-topo {
      flex: 1;
      text-align: center;
      padding: 20px;
    }
    .imagem-topo img {
      max-width: 100%;
      border-radius: 12px;
    }

    .hero {
      background: url('https://images.unsplash.com/photo-1526378722435-99d9da7e1971?auto=format&fit=crop&w=1200&q=80')
        center/cover no-repeat;
      color: #fff;
      padding: 100px 20px;
      text-align: center;
      border-radius: 0 0 20px 20px;
      box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    }
    .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 1px 1px 8px rgba(0,0,0,.7); }
    .hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 30px; }
    .button {
      background-color: #52FFB8;
      color: #313949;
      padding: 14px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color .3s ease, transform .2s ease;
    }
    .button:hover {
      background-color: #3edaa1;
      transform: scale(1.05);
    }
    .sections-container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .section {
      margin-bottom: 80px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    .section-alt { flex-direction: row-reverse; }
    .text-content {
      flex: 1;
      padding: 10px;
      min-width: 300px;
    }
    .text-content h3 {
      color: #52FFB8;
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .text-content p {
      font-size: 1.1rem;
      color: #f1f1f1;
    }
    .image-container, .panel-placeholder {
      flex: 1;
      min-width: 300px;
      background: #2d3340;
      height: 250px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #52FFB8;
      font-weight: 600;
      border-radius: 10px;
      font-size: 1.1rem;
    }

    footer {
      padding: 30px 20px;
      background: #2a2f3b;
      color: #52FFB8;
      font-size: .95rem;
      border-top: 5px solid #52FFB8;
      margin-top: 30px;
      text-align: center;
    }
    
    @media(max-width:768px) {
      header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
      nav ul {
        flex-direction: column;
        gap: 10px;
      }
      .hero h2 { font-size: 2rem; }
      .hero p { font-size: 1rem; }
      .text-content h3 { font-size: 1.5rem; }
      .destaque-topo {
        padding: 40px 10px;
        text-align: center;
      }
      .container-topo {
        flex-direction: column;
      }
    }
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background: #52FFB8;
      color: #313949;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      box-shadow: 0 4px 10px rgba(0,0,0,.3);
      z-index: 999;
      transition: transform .3s, box-shadow .3s;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 14px rgba(0,0,0,.4);
    }
    .image-container {
      flex: 1;
      min-width: 300px;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
      height: 300px;
    }
    .panel-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 10px;
    }

    /* SLIDE AUTOMÁTICO NO TOPO */
.slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider .slide.active {
  opacity: 1;
}

/* Garante que .imagem-topo não force tamanho errado */
.imagem-topo {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  text-align: center;
  height: auto;
}

/* --- SLIDER --- */
.slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider .slide.active {
  opacity: 1;
}

/* --- BOLINHAS DE INDICADOR --- */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #aaa;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #52FFB8;
}

/* --- LINHA SEPARADORA --- */
.linha-arredondada {
  width: 100%;
  height: 2px;
  background-color: #52FFB8;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-top: -2px;
}

.linha-arredondada {
  box-shadow: 0 2px 6px rgba(82, 255, 184, 0.6);
}

/* --- SEÇÃO DE SERVIÇOS --- */
.servicos {
  padding-bottom: 60px;
}

.titulo-servicos {
  font-size: 2.2rem;
  color: #52FFB8;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.blocos-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
  margin-top: 20px;
}

.bloco-beneficio {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid #52FFB8;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 0 10px rgba(82, 255, 184, 0.1);
  transition: transform 0.3s;
  text-align: center;
}

.bloco-beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(82, 255, 184, 0.2);
}

.bloco-beneficio h3 {
  color: #52FFB8;
  margin-bottom: 10px;
  text-align: center;
}

.bloco-beneficio p {
  text-align: center;
  line-height: 1.4;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bloco-beneficio p span {
  display: inline-block;
}

/* Diminui o tamanho horizontal das linhas progressivamente */
.bloco-beneficio p span:nth-child(1) { transform: scaleX(1); }
.bloco-beneficio p span:nth-child(2) { transform: scaleX(0.9); }
.bloco-beneficio p span:nth-child(3) { transform: scaleX(0.8); }
.bloco-beneficio p span:nth-child(4) { transform: scaleX(0.7); }
.bloco-beneficio p span:nth-child(5) { transform: scaleX(0.6); }
.bloco-beneficio p span:nth-child(6) { transform: scaleX(0.5); }

/* --- SEÇÃO DE PROJETOS --- */
.area-projeto {
  padding: 40px 20px 60px 20px;
  color: #fff;
  max-width: 1100px;
  margin: auto;
}

/* CORREÇÃO APLICADA: Padronizando o título da seção de projetos */
.area-projeto .titulo-servicos {
  text-align: center;
  font-size: 2.2rem;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #52FFB8;
}

.linha-tempo-dupla {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0px;
}

.coluna-tempo {
  width: 48%;
  position: relative;
}

.linha-tempo {
  position: relative;
  margin-left: 20px;
  border-left: 2px dotted #52FFB8;
  padding-left: 30px;
}

.etapa-projeto {
  position: relative;
  margin-bottom: 40px;
}

.etapa-projeto:last-child {
  margin-bottom: 10px;
}

.etapa-projeto::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: #52FFB8;
  border-radius: 50%;
  z-index: 1;
}

.etapa-projeto h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #52FFB8;
}

.etapa-projeto p {
  font-size: 0.95rem;
  color: #f1f1f1;
  margin-top: 6px;
  text-align: justify;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #52FFB8;
  color: #313949;
  border-radius: 50%;
  font-size: 30px;
  display: none; /* começa escondido */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

#btnTopo {
  display: none;
  position: fixed;
  bottom: 90px; /* mesma distância do rodapé que o WhatsApp */
  left: 20px;   /* mesma distância da lateral que o WhatsApp tem do right */
  width: 30px;  /* igual largura do WhatsApp */
  height: 30px; /* igual altura do WhatsApp */
  background-color: #52FFB8;
  color: #313949;
  border: none;
  border-radius: 40%;
  font-size: 20px; /* aumentar para ficar proporcional */
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#btnTopo:hover {
  transform: scale(1.1);
  background-color: #3fcda0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .linha-tempo-dupla {
    flex-direction: column;
    gap: 50px;
  }
  
@media (max-width: 768px) {
  .etapa-projeto::before {
    left: -28px; /* ou ajuste esse valor até alinhar com a linha */
  }
}
  .coluna-tempo {
    width: 100%;
  }

  .linha-tempo {
    margin-left: 15px;
    padding-left: 20px;
  }

  .etapa-projeto p {
    text-align: left;
    font-size: 0.95rem;
  }
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .blocos-beneficios {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .bloco-beneficio {
    width: 90%;
    padding: 20px;
  }

  .bloco-beneficio p {
    font-size: 0.95rem;
  }

  .coluna1, .coluna2 {
    width: 100%;
    margin: 0 auto;
  }

  .linha-pontilhada {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  /* HEADER & NAV */
  header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  /* TOPO E HERO */
  .container-topo {
    flex-direction: column;
    text-align: center;
  }

  .texto-topo, .imagem-topo {
    width: 100%;
    padding: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* BLOCOS DE BENEFÍCIOS */
  .blocos-beneficios {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .bloco-beneficio {
    width: 90%;
    padding: 20px;
  }

  .bloco-beneficio p {
    font-size: 0.95rem;
  }

  /* LINHA DO TEMPO DUPLA: EMPILHA AS DUAS COLUNAS */
  .linha-tempo-dupla {
    flex-direction: column;
    gap: 50px;
  }

  .coluna-tempo {
    width: 100%;
  }

  .linha-tempo {
    margin-left: 15px;
    padding-left: 20px;
  }

  .etapa-projeto p {
    text-align: left;
    font-size: 0.95rem;
  }

  /* TEXTOS DAS SEÇÕES */
  .section {
    flex-direction: column;
    gap: 30px;
  }

  .text-content h3 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  /* AJUSTES GERAIS */
  .image-container {
    height: auto;
    padding: 0;
  }

 .slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #52FFB8;
}