@import url(variaveis.css);
/* ===== ESCOPO DO FORM (iframe fake) ===== */

#form-conteiner {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;

  text-align: center;
}

/* Seção CTA */
#form-conteiner #cta-consulta {
  margin: 2rem 4rem;
  padding: 2rem 1.5rem;

  max-width: 100vw;
  max-height: 80vh;
  height: 100%;

  background-color: rgba(190, 225, 255, 0.22);
  border-radius: 16px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Título */
#form-conteiner #cta-consulta h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

#form-conteiner #cta-consulta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

/* Form */
#form-conteiner form#form-whatsapp {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

/* Colunas */
#form-conteiner .coluna {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-around;
  width: 100%;
}

/* Inputs */
#form-conteiner input {
  max-width: none;
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  padding-left: 36px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.436);
}

/* icones */

.input-icon {
  position: relative;
  width: 100%;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--secondary);
  pointer-events: none;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
}


/* Textarea */
#form-conteiner textarea#mensagem {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.436);
}

/* Botão container */
#form-conteiner #btn-conteiner {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Botão CTA */
#form-conteiner .cta-btn {
  width: 100%;
  height: 55px;

  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;

  background: linear-gradient(
    to bottom,
    #5eead4 0%,
    #22c55e 55%,
    #16a34a 100%
  );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.18);

  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

#form-conteiner .cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

#form-conteiner .cta-btn:active {
  transform: translateY(1px);
  filter: brightness(0.97);
}

.cta-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-content input,
.cta-content textarea,
.cta-content button {
  width: 100%;
  box-sizing: border-box;
}
