/* Base e reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lato", Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #194341;
  padding: 10px 0;
}
.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
header a img {
  height: 65px;
}
nav a {
  color: #ffcd28;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  margin-left: 20px;
  align-items: center;
}
nav a:hover,
nav a:focus {
  text-decoration: underline;
}

/* Hero */
.hero {
  color: #fff;
  text-align: center;
  padding: 10rem 20px 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-container {
  max-width: 900px;
  margin: auto;
}
.hero h1 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Button */
.btn-primary {
  font-family: 'Maven Pro', sans-serif;
  background-color: #f5041a;
  color: #fff;
  padding: 18px 40px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #ff0825;
}

/* Intro Section */
.intro-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
}
.intro-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.intro-text {
  flex: 1 1 55%;
}
.intro-text h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.intro-text a.btn-primary {
  margin-top: 20px;
  display: inline-block;
}
.intro-image {
  flex: 1 1 40%;
  text-align: center;
}
.intro-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Consulta grátis */
.consulta-gratis {
  background-color: #0b4a3a;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.consulta-gratis .container {
  max-width: 1200px;
  margin: auto;
}
.consulta-gratis h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}
.consulta-gratis p {
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.consulta-gratis a.btn-primary {
  background-color: #ffcd28;
  color: #194341;
  padding: 15px 40px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.consulta-gratis a.btn-primary:hover,
.consulta-gratis a.btn-primary:focus {
  background-color: #e6c020;
}

/* Benefí­cios */
.beneficios {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  background: #e8f4f1;
}
.beneficio-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.beneficio-card img {
  max-width: 100px;
  margin-bottom: 15px;
}
.beneficio-card h3 {
  color: #194341;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.beneficio-card p {
  font-weight: 300;
  font-size: 1rem;
}

/* Serviços */
.servicos {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.servicos .container {
  max-width: 1200px;
  margin: auto;
}
.servicos h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #194341;
}
.servicos-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.servico-card {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 280px;
  cursor: default;
  transition: box-shadow 0.3s ease;
}
.servico-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.servico-card h3 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0d3b66;
}
.servico-card p {
  font-weight: 300;
  font-size: 1rem;
  color: #333;
}

/* Depoimentos */
.depoimentos {
  background-color: #f4f7f6;
  padding: 60px 20px;
  color: #194341;
  text-align: center;
}
.depoimentos .container {
  max-width: 1000px;
  margin: auto;
}
.depoimentos h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.depoimentos-lista {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.depoimento {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 320px;
  font-style: italic;
}
.depoimento p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 20px;
}
.depoimento footer {
  font-weight: 700;
  color: #0d3b66;
  font-style: normal;
  font-size: 0.9rem;
}

/* Call to Action */
.call-to-action {
  background-color: #194341;
  color: white;
  padding: 50px 20px;
  text-align: center;
}
.call-to-action h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}
.call-to-action p {
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.call-to-action a.btn-primary {
  background-color: #ffcd28;
  color: #194341;
  padding: 15px 45px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.call-to-action a.btn-primary:hover, 
.call-to-action a.btn-primary:focus {
  background-color: #e6c020;
}

.call-to-action a {
  color: #ffcd28;
  text-decoration: none;
  font-weight: 400;
}
.call-to-action a:hover,
.call-to-action a:focus {
  text-decoration: underline;
}


/* Contato */
.contato {
  background-color: #e8f4f1;
  padding: 50px 20px;
  color: #194341;
}
.contato .container {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.contato h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contato p {
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.form-contato {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-contato label {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}
.form-contato input,
.form-contato textarea {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  resize: vertical;
}
.btn-primary {
  background-color: #f5041a;
  color: white;
  padding: 15px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #c10316;
}

/* WhatsApp - botão flutuante */

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
}

/* WhatsApp - logo no botão */
.whatsapp-logo {
  width: 50px;
  height: 50px;
}

/* Footer */

footer {
  background-color: #194341;
  padding: 40px 40px;
  color: #ffcd28;
  text-align: center;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer a {
  color: #ffcd28;
  text-decoration: none;
  font-weight: 400;
}
footer a:hover,
footer a:focus {
  text-decoration: underline;
}
footer p {
  margin-top: 10px;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

/* Responsividade */

@media (max-width: 768px) {
  .header-container {
    padding: 0 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .intro-container {
    flex-direction: column;
  }
  .intro-text, .intro-image {
    flex: 1 1 100%;
  }
  .intro-text h2 {
    font-size: 1.1rem;
  }
  .beneficios {
    flex-direction: column;
    align-items: center;
  }
  .beneficio-card {
    width: 90%;
    margin-bottom: 20px;
  }
  .servicos-cards {
    flex-direction: column;
    align-items: center;
  }
  .servico-card {
    width: 90%;
    margin-bottom: 20px;
  }
  .depoimentos-lista {
    flex-direction: column;
    align-items: center;
  }
  .depoimento {
    max-width: 90%;
    margin-bottom: 20px;
  }
  .whatsapp-float {
  position: fixed;
  width: 35px;
  height: 35px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  font-size: 16px;
  }
  .whatsapp-logo {
    width: 35px;
    height: 35px;
}
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
}