* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #002F6C;
  color: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
}

.logo {
  height: 45px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: underline;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 60vh; /* altura reduzida */
  max-height: 500px;
  overflow: hidden;
}


.hero-carousel .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center; /* Centralizado horizontal e vertical */
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-carousel .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-carousel .overlay {
  display: none;
}

.hero-carousel .content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  color: white;
  text-align: center;
  z-index: 2;
  max-width: 1100px;
  padding: 0 40px;
}



.hero-carousel .content h1 {
  font-size: 3em;
  margin-bottom: 15px;
}

.hero-carousel .content p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.hero-carousel .btn {
  background: #00bfa6;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-carousel .btn:hover {
  background: #00a38c;
}

/* Indicadores (bolinhas) */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-indicators .dot {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-indicators .dot.active {
  background-color: #00bfa6;
}

/* Seções */
section {
  padding: 60px 30px;
  padding: 60px 30px;
  scroll-margin-top: 100px; /* 👈 Compensa o menu fixo */
}

section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.sobre ul {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.etapas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.etapa {
  background: #f0f0f0;
  padding: 25px;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-width: 200px;
  max-width: 250px;
}

/* Contato */
.contato {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #f9f9f9;
}

.coluna-contato, .coluna-form {
  flex: 1;
  min-width: 300px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #002F6C;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 30px;
  padding: 10px 14px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
}

.subtitulo {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-top: -10px;
  margin-bottom: 40px;
}

.etapas-detalhadas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.etapa-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s;
}

.etapa-box:hover {
  transform: translateY(-5px);
}

.etapa-topo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.etapa-numero {
  background-color: #00bfa6;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  padding: 10px 16px;
  font-size: 1.2em;
}

.etapa-box h3 {
  font-size: 1.2em;
  color: #002F6C;
}

.etapa-box p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
}

.etapa-box ul {
  list-style: none;
  padding-left: 0;
}

.etapa-box ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
}


.etapa1 {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 10px;
}

.slide-img {
  width: 100%;
  height: auto;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: cover;
  filter: brightness(0.6); /* escurece apenas a imagem */
}

.site-header {
  background-color: #002F6C;
  color: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

#main-menu {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-carousel .content h1 {
    font-size: 2em;
  }

  .hero-carousel .content p {
    font-size: 1em;
  }

  .hero-carousel .btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .etapas-detalhadas {
    flex-direction: column;
    align-items: center;
  }

  .etapa-box {
    max-width: 95%;
  }

  .contato {
    flex-direction: column;
  }

  .coluna-contato, .coluna-form {
    width: 100%;
  }

  .logo {
    height: 35px;
  }

  section {
    padding: 40px 20px;
    scroll-margin-top: 100px; /* 👈 Compensa o menu fixo */
  }

  .img-etapa {
    max-height: 120px;
    padding: 8px;
  }

  iframe {
    height: 200px;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #002F6C;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    padding: 10px 0;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

.slide-img {
  object-fit: cover;
  object-position: center center; /* foca no centro da imagem */
  width: 100%;
  height: 320px; /* altura maior para caber o texto */
  border-radius: 0;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

  .hero-carousel .content {
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }
.hero-carousel {
  padding: 0;
  height: auto;
  min-height: 300px;
  max-height: none;
  position: relative;
}

}

.clientes {
  background-color: #f4f4f4;
  padding: 60px 30px;
  text-align: center;
  overflow: hidden;
}

.carousel-clientes {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clientes-wrapper {
  display: flex;
  gap: 50px;
  animation: scrollClientes 40s linear infinite;
  width: max-content;
}

.clientes-wrapper img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.clientes-wrapper img:hover {
  filter: grayscale(0%);
}

@keyframes scrollClientes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsivo */
@media (max-width: 768px) {
  .clientes-wrapper {
    gap: 30px;
    animation: scrollClientesMobile 30s linear infinite;
  }

  .clientes-wrapper img {
    max-height: 60px;
  }

  @keyframes scrollClientesMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}
