* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  float: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-header {
  height: 40px;
  width: auto;
}

nav {
  float: right;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

/* Carrossel principal (topo) */



/* Seção de serviços */
.servicos {
  background: #f4f4f4;
  padding: 60px 0;
}

.titulo-centralizado {
  text-align: center;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Carrossel dentro de serviços */
.carrossel-servicos {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 40px auto 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.carrossel-slides {
  display: flex;
  height: 100%;
  animation: slide-servicos 12s infinite;
}

.carrossel-slides img {
  width: 100%;
  flex-shrink: 0;
  height: 400px;
  object-fit: cover;
}

@keyframes slide-servicos {
  0%, 33.33% { transform: translateX(0%); }
  33.34%, 66.66% { transform: translateX(-100%); }
  66.67%, 99.99% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

/* Mapa */
.mapa {
  background: #f4f4f4;
  padding: 20px 0 60px 0;
}

.mapa h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.mapa-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Contato */
.contato-empresa {
  background-color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.contato-empresa h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.contato-empresa p {
  margin: 4px 0;
  font-size: 14px;
}

.contato-empresa a {
  color: #333;
  text-decoration: none;
}

.contato-empresa a:hover {
  text-decoration: underline;
}

/* Ícone do WhatsApp */
.wpp-icone {
  height: 40px;
  width: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.wpp-icone:hover {
  transform: scale(1.05);
}
.imagem-principal {
  margin-top: 80px; /* compensar o header fixo */
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.imagem-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}