body {
    background: linear-gradient(to bottom, #f2f2f2, #f2f2f2, rgb(205, 191, 191));
    min-height: 100%;
    overflow-y: auto;
    overflow-x: auto;


}


/*animação*/
.aparecer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.aparecer.ativo {
  opacity: 1;
  transform: translateY(0);
}

.aparecer[data-delay="1"] {
  transition-delay: 0.3s;
}



.img_fale_conosco {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  margin-top: 2.9rem;

}


h1 {
    text-align: center;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

p {
    text-align: center;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
    
}

.card-body a {
  display: inline-block;
  margin-top: 0.8rem;
  background-color: #FB6261;
  color: white;
  padding: 0.4rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-body a:hover {
  background-color: #e14c4b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}


.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding-bottom: 50px;
  position: relative;
  overflow-x: hidden;


}


.g-recaptcha {
  transform: scale(1);
  transform-origin: top center;
}


.success-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
    animation: fadeIn 1s ease-in-out;
    /*background: linear-gradient(pink, rgb(226, 220, 220), rgb(233, 161, 161));*/
}

.success-box {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-box {
    animation: slideUp 0.6s ease-out;
    transition: all 0.3s ease-in-out;
    max-width: 600px;
    width: 90%;


}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.btn-success {
  background-color: #4caf50;
  border: none;
  padding: 12px 24px;
  margin-top: 10px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}


.btn-success:hover {
  background-color: #388e3c;
  transform: scale(1.03);

}


@media screen and (max-width: 991px) {
  .img_fale_conosco {
    height: 30vh;
   
  
  }

}


@media (max-width: 500px) {

  .img_fale_conosco {
    height: 25vh;
   
    

  }
  

  .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 400px) {
  


  .g-recaptcha {
    transform: scale(0.75);
  }

}