.contact {
  padding: 120px 80px;
  background: linear-gradient(
        180deg,
        #d5f1c1 0%,
        #97c68d 100%
    );
  color: #fff;
}

.contact-header {
  max-width: 100%;
  margin-bottom: 60px;
}

.contact-header h1{
    color: #2F642D;
    font-family: 'Inter', sans-serif;
    font-size: 70px;
    font-weight: 600;
}

.contact-header h2{
    color: #2F642D;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 200;
    max-width: 80%;
}

.contact-box {
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-box img {
  width: 420px;
  border-radius: 24px;
}

.contact-actions p {
  margin-bottom: 16px;
  color: #2F642D;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  opacity: 0.8;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-buttons button {
  padding: 14px 28px;
  border-radius: 32px;
  border: 1px solid #ffffff30;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-buttons button.active {
  background: #c3fb7d;
  color: #000;
  border-color: #c3fb7d;
}

.contact-whatsapp {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  border-radius: 36px;
  background: #25d366;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-whatsapp.disabled {
  pointer-events: none;
  opacity: 0.4;
}


/* responsividade */
/* tablets */
@media (max-width: 900px) {
  .contact-header h1{
      font-size: 50px;
      
  }

  .contact-header h2{
      font-size: 26px;
      
  }
}

/* mobile grande */
@media (max-width: 770px) {
   .contact-box {
    flex-direction: column;
    
  }
}
/* mobile pequeno */
@media (max-width: 480px) {
  .contact {
    padding: 120px 40px;
   
  }

  .contact-header h1 {
    font-size: 50px;
  }

  .contact-header h2{
    font-size: 26px;
    max-width: 100%;
  }
}
