@media screen and (orientation: portrait) {
  .full-banner img {
    display: block !important;
  }

  .cabecalho-agendamento,
  .mao-flutuante,
  .txt-flutuante {
    display: none !important;
  }

.form-container {
  padding: 0 !important;
  margin: 0 !important;
}

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

label input {
    width: 100%;
  }

  .form-container h1,
  .form-container h2,
  .form-container label {
    font-size: 2rem !important;
  }


  input, select, textarea {
    font-size: 2rem !important;
    /*padding: 20px !important;*/
}

  .form-container .alerta {
    font-size: 1rem !important;
    padding: 10px !important;
  }

  .cabecalho-agendamento {
    flex-direction: column !important;
    text-align: center !important;
    gap: 5px !important;
  }

  body {
    background-color: #f7f7fb !important;
  }

html, body {
  margin: 0 !important;
  padding: 0 !important;
}


.container {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0px !important;
  padding: 7% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

  button {
    height: 8.2rem !important;
    font-size: 1.5rem !important;
    padding: 0 1.5rem !important;
  }

  input[type="checkbox"] {
    width: 24px !important;
    height: 24px !important;
    transform: scale(1.5); /* aumenta visualmente sem quebrar layout */
    margin-right: 10px;
  }

  label {
    font-size: 1.5rem !important;
  }

.checkbox-group {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 15px !important;
  margin: 10px 0 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.checkbox-group input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
}


}


/* Paisagem: esconde banner, mostra cabeçalho e mão */
@media screen and (orientation: landscape) {
  .full-banner img {
    display: none !important;
  }

  .mao-flutuante,
  .txt-flutuante {
    display: block !important;
  }
  .cabecalho-agendamento{
    display: flex !important;
  }

  .form-container {
    padding: 10px !important;
  }

  .form-container h1 {
    font-size: 1.2rem !important;
  }

  input, select, textarea {
    font-size: 1rem !important;
    padding: 10px !important;
  }

  .cabecalho-agendamento {
    text-align: left !important;
    gap: 5px !important;
  }

}


.full-banner {
  width: 100%;
  overflow: hidden;
}

.full-banner img {
  width: 100%;
  height: auto;
  display: none;
}


.mao-flutuante {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: -1;
  pointer-events: none; /* garante que cliques passem por ela */
   max-width: max(0px, calc((100vw - 750px)/2));
}
.txt-flutuante {
  position: fixed;
  top: 50%;
  left: calc(((100vw - 790px) / 28));
  z-index: -1;
  pointer-events: none; /* garante que cliques passem por ela */
  max-width: max(0px, calc((100vw - 790px)/2));

}

.cabecalho-agendamento {
  background-color: #002366; /* azul institucional */
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  height: 200px;
}

.logo-cabecalho {
  max-width: 150px;
  max-height: 150px;
  height: auto;
  width: auto;
}

.titulo-cabecalho h2 {
  margin: 0;
  font-size: 1.7 rem;
  font-weight: normal;
  color: #fff;
}

.titulo-cabecalho h1 {
  margin: 0;
  font-size: 2.8 rem;
  font-weight: bold;
  color: #fff;
}


@media print {
  body {
    margin: 0;
    padding: 0;
    background: white !important;
    -webkit-print-color-adjust: exact !important;
  }

  .container {
    background: white !important;
    color: black;
    box-shadow: none;
    page-break-inside: avoid;
    box-shadow: none !important;
}

  h1, h2, h3, p, ul, li, label, input, select {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  button,
  .no-print {
    display: none !important;
  }
}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #789; /*#192946;*/
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 2rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 30px; /* top-bottom: 20px, left-right: 30px */
  box-sizing: border-box; /* garante que padding não ultrapasse o limite do container */

}

input,
select,
textarea {
  width: 100%;
  box-sizing: border-box; /* impede que ultrapassem o container */
}


h1 {
  font-size: 1.8rem;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 1.2rem;
  color: #333;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border 0.2s;
}

input:focus,
select:focus {
  border-color: #007aff;
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #111;
  font-weight: 500;
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: #007aff;
}

.alerta {
  background-color: #fff6e6;
  border-left: 4px solid #ff9500;
  padding: 0.8rem;
  font-size: 0.9rem;
  color: #333;
  border-radius: 8px;
  margin-top: 0.5rem;
}

button {
  width: 304px;
  height: 78px;
  background-color: #007aff;
  color: white;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

button:hover {
  background-color: #005ecb;
}


.separador-vertical {
  width: 2px;
  height: 130px;
  background-color: #ffffff;
  margin: 0 50px;
}
