* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.header {
  background: rgba(0, 0, 0, 0.8);
  height: 80px;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: auto;
  height: 128px;
  max-height: 150px;
}

.nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px; /* se o header for fixo */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* coloca o vídeo atrás de qualquer conteúdo */
}
section {
  padding: 4rem 2rem;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding: 0 2rem;
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.service-card {
  flex: 1 1 30%;
  background: #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-card h3 {
  text-align: center;
  color: #006d94;
}

h2 {
  text-align: center;
  color: #006d94;
  margin-bottom: 2rem;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

form input,
form textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  background: #006d94;
  color: white;
  padding: 0.8rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #004d70;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}
