/* styles.css */

/* === RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

/* === HEADER === */
header {
  background-color: #d4f5d0;
  padding: 0.2rem;
  position: relative;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: auto auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header img {
  height: 80px;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a.active {
  color: #2e7d32;
  border-bottom: 1px solid #4D5C3B;
  border-top: 1px solid #4D5C3B;

}

a {
  transition: all 0.5s ease;
  filter: brightness(1.3);
}

a:hover {
  color: #BADE8E;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  z-index: 1101;
}

/* === FOOTER === */
.footer {
  background-color: #d4f5d0;
  color: black;
  padding: 0.5rem 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: black;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-contacts {
  text-align: center;
}

.footer-contacts p {
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
}

.footer-contacts a {
  color: #2E2D2D;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  color: #2E2D2D;
}

.social-icons img {
  width: 25px;
  height: 25px;
  color: #2E2D2D;
}

.footer-links a:hover,
.footer-contacts a:hover,
.social-icons a:hover img {
  color: #BADE8E; /* Same hover color as header links */
  filter: brightness(1.3); /* Optional: makes icons look more vibrant */
  transition: all 0.5s ease;
  border-bottom: 1px solid #4D5C3B;
  border-top: 1px solid #4D5C3B;
}


/* === MAIN === */
.main-image {
  width: 100%;
  margin: 0;
  display: block;
}

/* === IMAGE GRID (Serviços) === */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* === LOGO === */
#logo-link {
  position: relative;
  z-index: 1101;
}

/* === CONTAINER GERAL === */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* === APRESENTAÇÃO COM IMAGENS DECORATIVAS === */
.presentation-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 2rem;
  z-index: 0;
}

.privacy-container {
  max-width: 800px;
  margin: 1rem auto;
  padding: 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  font-size: 1rem;
  color: #86672c;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}
.privacy-container h2 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-size: 1.3rem;
}

.privacy-container p {
  margin-bottom: 0.5rem;
}

.services-container {
  text-align: left;
}

.services-container .service-item {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.services-container .service-item::before {
  content: "▸"; /* or any symbol you like */
  position: absolute;
  left: 0;
  top: 0;
  color: #86672c;
  font-size: 1rem;
}

.services-container .small-note {
  font-size: 0.9em;
  font-weight: normal;
}


/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .main-container {
    padding: 0 1rem;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: #d4f5d0;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin-bottom: 0.8rem; /* Add spacing between links */
	text-align: right;
  }
  
  .menu-toggle {
    display: block;
  }

  .presentation-wrapper .background-image-1,
  .presentation-wrapper .background-image-2 {
    display: none;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}


@media (max-width: 768px) and (orientation: landscape) {
  .footer-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left; /* optional, for alignment */
  }

  .footer-contacts > * {
    flex: 1 1 200px;
    min-width: 150px;
  }
}

