/* AJUSTES GERAIS PARA EVITAR OVERFLOW */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

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

body, html {
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4 {
  color: #1d1d1d;
  font-weight: bold;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ebe5dd;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow-x: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  height: 40px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
}

.nav-links-a {
  color: #111;
}

.btn-give {
  background-color: #8d7058;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    background-color: white;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 100vw;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

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

  .menu-toggle {
    display: block;
  }
}


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.5);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-video.active {
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: white;
}



.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.image-bg {
  background: url('./img/test.jpg') center center / cover no-repeat;
}



.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ecd4b4;
}

.hero-overlay p {
  color: #ecd4b4;
}

.hero-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background-color: #63452a;
  color: #ebe5dd;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.about-section {
  background-color: #fff;
  padding: 5rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.about-image-single {
  flex: 1 1 40%;
  text-align: center;
}

.about-image-single img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.locations-section {
  background-color: #aa9588;
  padding: 3.5rem 2rem 9rem;
}

.locations-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.locations-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #fff;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.location-card {
  background-color: #e8d9cd;
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: scale(1.03);
}



.location-card img {
  width: 100w;
  height: 180px;
  object-fit: contain;
  background-color: #f3ebe3;
  padding: 0.5rem;
}

.location-info {
  padding: 1rem;
  background-color: #f5ede6;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.location-info h3 {
  font-size: 1.1rem;
  color: #5a4330;
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.location-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #292727;
}

.location-btn {
  background-color: #8d7058;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.location-btn:hover {
  background-color: #6e523f;
}

.follow-section {
  background-color: #ffffff;
  text-align: center;
  padding: 8rem 2rem 9rem;
}

.follow-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  justify-items: center;
}

.follow-gallery img {
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.follow-gallery img:hover {
  transform: scale(1.03);
}

.follow-btn {
  background-color: #5eb7c0;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

/* CONTINUA COM OS DEMAIS ESTILOS (RODAPÉ, NEWSLETTER, ETC.) */



  /* Rodapé */
/* Rodapé */
.footer {
    background-color: #a69cb0;
    padding: 4rem 2rem;
    color: #1d1d1d;
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  .footer-wrapper {
    max-width: 80%; /* Aumenta a largura */
    margin: 0 auto;
    background-color: #eae5df;
    padding: 2rem 2rem 0.5rem; /* Menos padding para reduzir altura */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .footer-block {
    flex: 1 1 220px;
    min-width: 200px;
  }
  
  .footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .footer-block a,
  .footer-block p {
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: #1d1d1d;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-block a:hover {
    text-decoration: underline;
  }
  
  .footer-block i {
    margin-right: 8px;
  }
  
  /* Ícones sociais */
  .social-icons.dark {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icons.dark a {
    background-color: #1d1d1d;
    color: #fff;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .social-icons.dark a:hover {
    background-color: #333;
  }
  
  .footer-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 1.5rem 0;
  }
  
  /* Rodapé final */
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #333;
    gap: 2rem;
  }
  
  .footer-bottom p {
    margin: 0;
    line-height: 1.4;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  
  
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icons a {
    background-color: #2d2d2d;
    color: white;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  





  /* Newsletter */
.newsletter-section {
    background-color: #eae5df;
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .newsletter-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-container p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .newsletter-form label {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.95rem;
    color: #333;
  }
  
  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"],
  .newsletter-form input[type="tel"] {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #c7bacc;
    border-radius: 10px;
    background-color: #f8f5f4;
    color: #333;
  }
  
  .newsletter-policy {
    font-size: 0.9rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .newsletter-policy a {
    color: #444;
    text-decoration: underline;
  }
  
  .newsletter-btn {
    background-color: #8d7058;
    color: white;
    padding: 0.9rem 1.5rem;  /* <-- aumentei a altura */
    border: none;
    border-radius: 999px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    min-width: 160px;
    margin: 1.5rem auto 0;
  }

  
  
  
  .newsletter-btn i {
    margin-left: 0.5rem;
  }
  
  .newsletter-btn:hover {
    background-color: #4da3ae;
  }
  




  /* Altura padrão para todas as seções principais */
.about-section,
.locations-section,
.follow-section{
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.footer-minimal {
    background-color: #635247;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content p {
    margin-bottom: 0.5rem;
    color: #ebe5dd;
  }
  
  .footer-content h3 {
    margin-bottom: 0.5rem;
    color: #ebe5dd;
  }
  

  .footer-minimal .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .footer-minimal .social-icons a {
    color: #ebe5dd;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer-minimal .social-icons a:hover {
    color: #ebe5dd;
  }
  

  .footer-minimal .footer-content p {
    margin-top: 1rem; /* aumenta o espaço entre os ícones e o texto */
    font-size: 0.9rem;
    color: #ebe5dd;
  }
  