* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #004d99;
  background-color: #f9f9f9;
  line-height: 1.6;
}

body p {
	color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background-color: white;
  color: #003366;
  padding: 5px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
  width: auto;
}

nav a {
  color: #0066cc;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

/* Menu padrão */
nav.menu {
  display: flex;
  align-items: center;
}

/* Botão do menu (hamburguer) escondido no desktop */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0066cc;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav.menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav.menu a {
    margin: 10px 0;
  }

  nav.menu.show {
    display: flex;
  }
}

.btn {
  background-color: #0066cc;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #004d99;
}

.planos {
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: border 0.3s, box-shadow 0.3s;
}

.card h3 {
  margin-bottom: 10px;
  color: #0066cc;
}

.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}


.card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 15px;
}

.card li {
  margin-bottom: 8px;
}

.card.destaque {
  border: 2px solid #0066cc;
}

.beneficios ul {
  list-style: none;
  padding: 0;
}

.beneficios li {
  font-size: 18px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

footer {
  background-color: #0066cc;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.btn-whatsapp {
  background-color: #0066cc;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 20px;
  transition: background 0.3s;
  display: inline-block;
}

.btn-whatsapp:hover {
  background-color: #004d99	;
}
.servicos {
  padding: 60px 20px;
  text-align: center;
}

.servicos h2 {
  color: #0066cc;
  margin-bottom: 40px;
}

.servicos .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.servicos .card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.servicos .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.servicos .card h3 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 18px;
}

.servicos .card p {
  font-size: 15px;
  color: #555;
}
.servicos .subtitulo {
  font-size: 16px;
  color: #333;
  margin: -20px auto 40px;
  max-width: 800px;
  line-height: 1.6;
}
.localizacao {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.localizacao h2 {
  color: #0066cc;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.localizacao .info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.localizacao .btn-rota {
  background-color: #0066cc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.3s;
}

.localizacao .btn-rota:hover {
  background-color: #004d99;
}

.localizacao .local-info {
  flex: 1;
  text-align: left;
  margin-right: 30px;
}

.localizacao .map {
  flex: 1;
}

.localizacao iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.localizacao .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.localizacao .local-info,
.localizacao .map {
  flex: 1;
  min-width: 300px;
}

/* Responsivo */
@media (max-width: 768px) {
  .localizacao .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .localizacao .local-info {
    margin-right: 0;
    text-align: center;
  }

  .localizacao .map {
    width: 100%;
    margin-top: 20px;
  }

  .localizacao iframe {
    height: 300px;
  }
}
.hero-novo {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 400px; /* Limita o tamanho em telas grandes */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-texto {
  flex: 1 1 50%;
  text-align: left;
  padding-right: 20px;
}

.hero-texto h2 {
  font-size: 32px;
  color: #004d99;
  margin-bottom: 20px;
}

.hero-texto .btn {
  background-color: #0066cc;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-texto .btn:hover {
  background-color: #004d99;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 20px;
  }

  .hero-img img {
    max-width: 80%;
  }

  .hero-texto {
    text-align: center;
    padding: 0;
  }

  .hero-texto h2 {
    font-size: 26px;
  }
}
a:focus, button:focus {
  outline: 2px solid #004d99;
  outline-offset: 2px;
}
