/* ===== HEADER ===== */
a{
  color: var(--branco);
}
.header {
  background-color: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(107, 143, 113, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-section h1 {
  font-size: 1.2rem;
  color: var(--verde-musgo);
  margin: 0;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--marrom);
  color: var(--branco);
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
  text-align: center;
}

.footer-section.connect-us h3 {
  color: var(--branco);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-section.connect-us p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-divider {
  border: 0;
  height: 2px; 
  background-color: var(--secondary-color);
  margin: 1.5rem auto;
  width: 100%;
}

.footer-divider-full {
  border: 0;
  height: 2px;
  background-color: var(--secondary-color);
 
}

.social-label {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px; 
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.social-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  color: var(--branco);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo-left,
.footer-logo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  width: 10rem;
}

.footer-logo-left p {
  font-size: 0.8rem;
  line-height: 1.2;
  margin: 0;
}

.footer-address p {
  margin: 0.25rem 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */ 
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-left,
  .footer-logo-right {
    width: 6rem;  
    margin: 1rem 0;
  }

  .footer-address {
    margin: 1rem 0;
  }
}

@media (max-width: 480px) {
  .footer-bottom-content{
    justify-content: center;
  }
  .footer {
    padding: 2rem 1rem;
  }

  .footer-section.connect-us h3 {
    font-size: 1.2rem;
  }

  .footer-section.connect-us p {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .footer-logo-left,
  .footer-logo-right {
    width: 5rem;  
  }
}
