/* Fundo geral com imagem (em toda a altura da página) */
.contact-wrapper {
  background: url('/assets/contact-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: hidden;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    rgba(255, 255, 255, 0.5) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.contact-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Topo com título e informações de contato */
.contact-top {
  text-align: center;
  padding: 50px 30px 30px;
  background: none;
}

.contact-top h2 {
  font-size: 2.6em;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #A2D999;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
  margin-bottom: 25px;
  
} 

.contact-top .description {
  font-size: 1.5em;
  color: #f5fde0;
  max-width: 900px;
  margin: 0 auto 35px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 45px;
 
}

.contact-top .contact-info {
  font-size: 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-top .contact-info p {
  color: #ffffff;
  margin: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.contact-top .contact-info i {
  color:#A2D999;
  margin-right: 10px;
}

.contact-top .contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.2em;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.contact-top .contact-info a:hover {
  color: #A2D999;
}

/* FORMULÁRIO — marrom escuro só ao redor do conteúdo */
.contact-form-container {
  display: flex;
  justify-content: center;
  padding: 30px 20px 0 20px;
  background: transparent;
 
}

.contact-form-container > * {
  background-color: #4E3A0C;
  padding: 15px 30px 0 30px;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  color: #E8FFB8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 
}

@media screen and (max-width: 768px) {
  .contact-form-container {
    padding: 20px 15px;
  }

  .contact-form-container > * {
    padding:25px 20px 0 20px;
  }

  .contact-top {
    padding: 20px 10px;
  }

  .contact-top h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    padding-top: 25px ;
  }

  .contact-top .description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .contact-top .contact-info {
    font-size: 1.1rem;
    gap: 6px;
  }

  .contact-top .contact-info a {
    font-size: 1rem;
  }
}










