/* ============================   CONTACT   =========================== */

/* Estilos da Seção de Contato */
.contact-section {
  background: #0F1B40;
  color: #f1f1f1;
  /* box-shadow: 0 8px 20px whitesmoke; */
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1000px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 10%;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.contact-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ddd;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
}

/* Botões Alternativos */
.cta-alternatives {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ea955;
}

.btn-secondary {
  background: #F20574;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #c2045c;
}

/* Prova Social */
.social-proof {
  margin: 2rem 0;
  font-style: italic;
}

.social-proof p {
  margin-bottom: 0.5rem;
}

.social-proof .logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;

  display: flex;
  flex-wrap: wrap;
  /* gap: 2rem; */
  /* justify-content: center; */
  align-items: center;

   
}

.social-proof .logos img {
  max-height: 75px;
  opacity: 0.8;
  transition: 0.3s;
  padding: 1rem;

 
  height: auto;
  display: block;

  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.social-proof .logos img:hover {
  opacity: 1;
}

/* Gatilho de Urgência */
.urgency {
  font-weight: bold;
  margin-top: 2rem;
  color: #FFD700;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.client-card {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  max-width: 200px;
}


/* Responsividade */
@media (max-width: 768px) {
  .cta-alternatives {
    flex-direction: column;
  }
}

@media (min-width: 480px) {

  #contact_section {
    width: 80%;
  }
}

/* ============================   END CONTACT   =========================== */