body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #008080; /* cor teal */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* ajuste conforme tamanho do logo */
  margin-right: 10px;
}

.logo span {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
   padding: 5px 10px; /* espaço interno para não ficar colado */
  border: 5px ; /* borda de 5px */
  border-radius: 5px; /* opcional: deixa cantos arredondados */
}
.menu a:hover {
  text-decoration: none;
   background-color: white;
   color: #008080;
} 
 
/* Quando o link é clicado */
.menu a:active {
  background-color: #FFD700; /* muda para dourado ao clicar */
  color: black; /* texto preto ao clicar */
}
#Home {
  padding: 50px;
  min-height: 300px;
  color: white; /* deixa o texto visível sobre a imagem */
  background-image: url("../image/fundo.jpg"); /* caminho da imagem */
  background-size: cover; /* ajusta para cobrir toda a área */
  background-position: center; /* centraliza a imagem */
  background-repeat: no-repeat; /* evita repetição */
}
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #FFD700; /* dourado para destaque */
  color: #008080; /* teal para combinar com sua identidade */
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}
.hero {
  text-align: right;   /* alinha todo o conteúdo à direita */
  padding: 50px 20px;  /* espaço interno */
}
/*
.servicos-resumo {
  background-color: #000; /* fundo preto 
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  padding: 60px 40px;
  text-align: center;
}*/
.servicos-resumo h2,
.servicos-resumo h5,
.servicos-resumo p {
  text-shadow: none !important;
}

.servicos-resumo h2 {
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 10px;
}



#sobre {
  padding: 80px 20px;
  background-image: url("../image/capa.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

#sobre h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 32px;
}
#sobre p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  color: #333;
}
.sobre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.sobre-cards .card {
  background-color: white;
  border: 2px solid #008080;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.sobre-cards .card:hover {
  background-color: #008080;
  color: white;
  transform: translateY(-5px);
}
#contato {
  padding: 80px 20px;
  background-color: #008080; /* fundo teal */
  color: white;
  text-align: center;
}
#contato h2 {
  font-size: 32px;
  margin-bottom: 20px;
}


.contato-form {
  max-width: 500px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contato-form button {
  padding: 12px;
  background-color: #FFD700; /* dourado */
  color: #008080;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contato-form button:hover {
  background-color: white;
  color: #008080;
}

.contato-info {
  font-size: 18px;
}

#apoio {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}
#apoio h2 {
  color: #008080;
  font-size: 32px;
  margin-bottom: 20px;
}

#apoio p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333;
}

.apoio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.apoio-cards .card {
  background-color: white;
  border: 2px solid #008080;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}


.apoio-cards .card:hover {
  background-color: #008080;
  color: white;
  transform: translateY(-5px);
}


.apoio-cards .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #008080;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.apoio-cards .btn:hover {
  background-color: white;
  color: #008080;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;   /* distância do fundo */
  right: 20px;    /* distância da direita */
  background-color: #25D366; /* verde WhatsApp */
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 1000; /* garante que fique acima de outros elementos */
}

.whatsapp-btn:hover {
  background-color: #128C7E; /* verde mais escuro */
}
footer {
  background-color: #008080; /* teal */
  color: white;
  padding: 40px 20px 20px 20px;
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}
.footer-logo h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #FFD700; /* dourado */
}
.footer-contato a {
  color: #FFD700;
  text-decoration: none;
}

.footer-contato a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
  font-size: 14px;
}






























