/* Import Google Fonts: Inter */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* Reset básico e estilos do corpo */
/* body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #4c0575, #2c0b43);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
} */
.hero-section {
  text-align: left;
  padding: 5rem 5rem;
}

.hero-section-2 {
  text-align: left;
  padding: 0 5rem;
}

.contact-page-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding: 2rem 6rem;
  box-sizing: border-box;
}

.contact-page-left {
  flex: 1 1 0;
  min-width: 320px;
  margin-left: 9.375rem;
}

.contact-page-right {
  flex: 0 0 600px;
  padding-top: 17rem;
  padding-right: 10rem;
  justify-items: center;
}

.contact-page-left .hero-section {
  padding-left: 0;
  padding-right: 0;
}

.contact-page-right .hero-section-2 {
  padding-left: 5.3125rem;
  padding-right: 0;
}

.contact-page-right .hero-section-2 .container-text {
  width: 100%;
}

.contact-page-right .contact-container {
  justify-content: flex-start;
  gap: 0;
  max-width: none;
}

.contact-page-right .form-card {
  margin: 1.25rem 0 3rem 0;
}

.hero-section h1 {
  color: #609;
  font-size: 56px;
  font-weight: 800;
  line-height: 66px;
}

#sub-title {
  color: #609;
  font-size: 30px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: -0.75px;
  opacity: 0.7;
  margin: 0;
}

.container-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 82%;
  /* text-align: left;
  padding: 5rem 1rem; */
}

.container-text p {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  opacity: 0.7;
}

#sub-text {
  margin-top: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  opacity: 0.7;
}

.banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* background: #f5f5f5; */
  /* border: 1px solid #ddd; */
  /* padding: 20px; */
  max-width: 60%;
  /* margin: auto; */
  /* border-radius: 8px; */
}

.left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.left p.whatsapp {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3C0059;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  opacity: 0.7;
}

.left p {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;

}

.right button {
  background-color: #25D366;
  color: white;
  border: none;
  margin-bottom: .7rem;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.right button:hover {
  background-color: #1ebe5d;
}

/* Card do formulário */
.form-card {
  margin: 1.25rem 5rem 3rem 5rem;
  padding: 1.5rem 0;
  max-width: 448px;
  width: 100%;
}

/* Cabeçalho */
.form-card h1 {
  font-size: 1.875rem;
  /* 30px */
  font-weight: 700;
  color: #4a0471;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Grupos de formulário e espaçamento */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Estilos de Label */
label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  /* 14px */
  font-weight: 500;
  color: #374151;
}

/* Estilos de Input */
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #b9b9b9;
  border-radius: 0.3125rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  /* Garante que padding não afete a largura */
}

input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

/* Container do campo de telefone */
.phone-container {
  display: flex;
}

.country-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  background-color: #e5e7eb;
  border: 1px solid #d1d5db;
  border-right: 0;
  border-top-left-radius: 0.3125rem;
  border-bottom-left-radius: 0.31255rem;
}

.country-selector svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  color: #4b5563;
}

/* Ajusta o raio da borda do input de telefone */
input#celular {
  /* border-top-left-radius: 0;
  border-bottom-left-radius: 0; */
  /* border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem; */
  border-radius: 0.3125rem;
}

textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #b9b9b9;
  border-radius: 0.3125rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  height: 130px;
}


/* Container do Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
  height: 1rem;
  width: 1rem;
  border-radius: 0.25rem;
  border-color: #d1d5db;
  color: #6d28d9;
}

.checkbox-container label {
  margin-left: 0.5rem;
  margin-bottom: 0;
  color: #111827;
}

/* Texto de política de privacidade */
.privacy-text {
  font-size: 0.75rem;
  /* 12px */
  color: #4b5563;
  text-align: center;
  margin: 1.5rem 0 0 0;
}

.privacy-text a {
  font-weight: 600;
  color: #4a0471;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

/* Botão de envio */
button[type="submit"] {
  width: 100%;
  background-color: #4a0471;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  /* pill shape */
  font-weight: 700;
  font-size: 1.125rem;
  /* 18px */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 1rem;
}

button[type="submit"]:hover {
  background-color: #3b035a;
  transform: scale(1.02);
}

.support-image {
  background-color: #6a0dad;
  /* Roxo vibrante do layout */
  padding: 27px 12px;
  /* margin: 2.5rem 0 0; */
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  border-radius: 3px;
  /* margin-left: 2rem; */
}

.support-image .container-support {
  max-width: 600px;
  text-align: center;
}

.support-image .image-wrapper {
  line-height: 0;
  /* Remove espaços indesejados abaixo da imagem */
  margin-bottom: 25px;
}

.support-image img {
  width: 100%;
  height: auto;
  display: block;
}

.support-image .support-link {
  color: #FFD900;
  /* Amarelo do texto */
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  transition: opacity 0.3s;
}

.support-image .support-link:hover {
  opacity: 0.9;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 9rem;
  max-width: 1260px;
  /* margin: 2rem auto;
  padding: 0 1rem; */
}

/* Responsividade para Monitores intermediários (até 1650px) */
@media (max-width: 1650px) {
  .contact-page-left {
    margin-left: 4rem;
  }

  .contact-page-right {
    padding-right: 0;
    flex: 0 1 600px;
  }
}

/* Responsividade para Tablets (até 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-section-2 {
    padding: 0;
  }

  .contact-page-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .contact-page-left {
    margin-left: 0;
    min-width: auto;
  }

  .contact-page-right {
    flex-basis: auto;
    padding-top: 0;
    padding-right: 0;
  }

  .contact-page-right .hero-section-2 {
    padding-left: 0;
  }

  .container-text {
    width: 100%;
  }

  .banner {
    max-width: 100%;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .form-card {
    margin: 1.25rem auto 3rem auto;
  }

  .support-image {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* Responsividade para Mobile (até 768px) */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 40px;
    line-height: 48px;
  }

  #sub-title {
    font-size: 24px;
    line-height: 34px;
  }

  .contact-page-grid {
    padding: 1rem;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .banner .right,
  .banner .right a,
  .banner .right button {
    width: 100%;
    text-align: center;
  }

  .contact-container {
    gap: 2rem;
  }

  .support-image {
    margin-top: 1.5rem;
    padding: 20px 10px;
  }

  .support-image .support-link {
    font-size: 18px;
  }

  .form-card {
    margin: 1.25rem 0 2rem 0;
    padding: 1rem;
    box-sizing: border-box;
  }
}
