/* ==========================
   RESET E CONFIGURAÇÕES GLOBAIS
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================
   NAVBAR
=========================== */
/* 🔝 Navbar fixa e responsiva */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0b7a4d;
  color: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ffce00;
}

/* Botão hamburger */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #0b7a4d;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 15px;
  }
}

.nav-logo img {
  height: 100px;          /* altura ideal para harmonia no menu */
  width: auto;           /* mantém proporção */
  border-radius: 6px;    /* cantos suaves */
  margin-right: 10px;    /* separa do texto */
  vertical-align: middle;
}
/* ==========================
   MAIN / CONTEÚDO
=========================== */
main.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* --------------------------
   FORMULÁRIO
--------------------------- */
.form-side {
  flex: 1 1 350px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.form-side h2 {
  color: #0b7a4d;
  margin-bottom: 20px;
}

.form-side label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.form-side input,
.form-side textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.form-side textarea {
  resize: vertical;
}

.form-side button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0b7a4d;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.form-side button:hover {
  background: #095735;
}

.form-side .note {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.wpp-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.wpp-big:hover {
  background: #1ebd57;
}

/* --------------------------
   MAPA
--------------------------- */
.map-side {
  flex: 1 1 350px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.map-side h3 {
  color: #0b7a4d;
  margin-bottom: 15px;
}

.map-side iframe {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
}

.map-side .info p {
  margin: 5px 0;
  color: #555;
}

/* ==========================
   FOOTER
=========================== */
.site-footer {
  background: #0b7a4d;
  color: #fff;
  padding-top: 30px;
  margin-top: 40px;
  font-family: Inter, Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.footer-brand h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: #e6e6e6;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  border-bottom: 2px solid #1b9c6b;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffce00;
}

.footer-contact p {
  font-size: 14px;
  margin: 4px 0;
}

.footer-contact .social {
  margin-top: 10px;
}

.footer-contact .social a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.2s;
}

.footer-contact .social a:hover {
  color: #ffce00;
}

.footer-bottom {
  background: #09633f;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: #ddd;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================
   RESPONSIVIDADE
=========================== */
@media(max-width: 900px) {
  .contact-main {
    flex-direction: column;
  }
}

@media(max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #0b7a4d;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 15px;
  }
}

@media(max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand h3 {
    justify-content: center;
  }
  .footer-contact .social {
    justify-content: center;
  }
}
