@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

/* Reset */
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  user-select: none;
}

body {
  background-color: #B0D7F6;
  font-family: "Nunito", sans-serif;
}

.hide {
  display: none;
}
#hide {
  display: none;
}

/* BOTÃO WPP FIXO */
/* Estilização do botão fixo */
.fixed-button {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1000;
}

/* Efeito de hover para o botão */
.fixed-button:hover {
  background-color: #45a049;
}

/* Media Queries para responsividade */

/* Dispositivos móveis */
@media screen and (max-width: 767px) {
  .fixed-button {
    padding: 12px;
    font-size: 25px;
  }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fixed-button {
    padding: 14px;
    font-size: 19px;
  }
}

/* Telas grandes */
@media screen and (min-width: 1200px) {
  .fixed-button {
    padding: 16px;
    font-size: 22px;
  }
}

/* ------------------------------- MAIN ------------------------------- */

main {
  height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: columns;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-top: 50px;
}

main img {
  height: 360px;
}

article {
  display: grid;
  row-gap: 20px;
}

.theTitle {
  font-size: 3.5rem;
  text-align: center;
  color: #2d6cc0;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
}
main h3 {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

main button {
  font-size: 16px;
  position: relative;
  margin: auto;
  padding: 1em 2.5em 1em 2.5em;
  border: none;
  background: #fff;
  transition: all 0.1s linear;
  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.1);
}

main button:active {
  transform: scale(0.95);
}

main button span {
  color: #2c2c5d;
  font-weight: 700;
}

main button .border {
  position: absolute;
  border: 0.15em solid #fff;
  transition: all 0.3s 0.08s linear;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2.9em;
  transform: translate(-50%, -50%);
}

main button:hover .border {
  display: block;
  width: 102%;
  height: 3.4em;
}

.full-rounded {
  border-radius: 2em;
}

/* Media Query do MAIN */
/* PARA DISPOSITVOS MÓVEIS */
@media screen and (max-width: 767px) {
  main {
    flex-direction: column;
    gap: 50px;
  }

  main h1 {
    font-size: 2.5rem;
  }

  main h3 {
    font-size: 1rem;
  }

  main img {
    margin-top: 50px;
    height: 200px;
  }
}

/* PARA TABLETS */
@media (min-width: 768px) and (max-width: 1024px) {
  main {
    flex-direction: row;
    gap: 100px;
  }

  main h1 {
    font-size: 3rem;
  }

  main h3 {
    font-size: 1.1rem;
  }

  main img {
    height: 300px;
  }
}

/* PARA TELAS GRANDES */
@media (min-width: 1367px) {
  main {
    height: 80vh;
    flex-direction: row;
    gap: 150px;
  }

  main h1 {
    font-size: 3.5rem;
  }

  main h3 {
    font-size: 1.2rem;
  }

  main img {
    height: 500px;
  }
}

/* ---------------------------- About ---------------------------- */
.backgroundwhite {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#centralizar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#about {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  width: 80%;
  max-width: 900px;
  margin: 3vh auto;
  text-align: center;
  border-radius: 10px;
  background-color: #ffffff;
}
#about img {
  width: 50%;
  height: 62vh;
  border-radius: 25%;
}

#gotoabout button {
  font-size: 16px;
  position: relative;
  margin: auto;
  padding: 1em 2.5em 1em 2.5em;
  border: none;
  background: #2c8cf4;
  transition: all 0.1s linear;
  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.1);
}

#gotoabout button:active {
  transform: scale(0.95);
}

#gotoabout button span {
  color: #fff;
  font-weight: 700;
}

#gotoabout button .border {
  position: absolute;
  border: 0.15em solid #fff;
  transition: all 0.3s 0.08s linear;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2.9em;
  transform: translate(-50%, -50%);
}

#gotoabout button:hover .border {
  display: block;
  width: 102%;
  height: 3.4em;
}

#about h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #2c3e50;
  display: inline-block;
  padding-bottom: 10px;
}

#about h3 {
  font-size: 1.8rem;
  margin-top: 20px;
  color: #2c3e50;
}

.theText {
  color: #2c3e50;
  font-size: 1.2rem;
  text-align: justify;
  margin-top: 20px;
  width: 90%;
  line-height: 1.6;
}

/* Media Queries do About */
/* PARA DISPOSITIVOS MÓVEIS */
@media screen and (max-width: 767px) {
  #centralizar {
    flex-direction: column;
  }

  #about {
    width: 90%;
    padding: 20px;
  }

  #about img {
    width: 80%;
    height: 300px;
  }

  #about h2 {
    font-size: 2rem;
  }

  #about h3 {
    font-size: 1.5rem;
  }

  #about p {
    width: 100%;
  }
}

/* PARA TABLETS */
@media (min-width: 768px) and (max-width: 1024px) {
  #about {
    width: 70%;
    padding: 30px;
  }

  #about h2 {
    font-size: 2.2rem;
  }

  #about h3 {
    font-size: 1.6rem;
  }

  #about p {
    width: 100%;
  }
}

/* PARA TELAS GRANDES */
@media (min-width: 1367px) {
  #about {
    width: 60%;
    padding: 40px;
  }

  #about h2 {
    font-size: 2.5rem;
  }

  #about h3 {
    font-size: 1.8rem;
  }

  #about p {
    width: 100%;
  }
}

#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#modal-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background-color: #f9f5e7;
  padding: 30px;
  border-radius: 10px;
  max-width: 80%;
  justify-content: center;
  overflow: hidden;
}

.modal-card {
  background-color: #ffe8d6;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 45%;
}

.modal-card img {
  width: 50%;
  max-width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.modal-card h3 {
  font-size: 1.2rem;
  color: #6b705c;
}

.modal-card p {
  color: #6b705c;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

#close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgb(255, 104, 104);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
}

#close-modal:hover {
  background-color: #6b705c;
}

.btnModal {
  background-color: transparent;
  border: 1px solid #6b705c;
  color: #6b705c;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: normal;
  transition: color 0.3s;
}

.btnModal:hover {
  color: #6b705c;
  background-color: transparent;
  text-decoration: underline;
}

@media (max-width: 768px) {
  #modal-content {
    flex-direction: column;
    max-width: 95%;
    padding: 20px;
  }

  .modal-card {
    flex: none;
    width: 90%;
    margin-bottom: 15px;
  }

  .modal-card img {
    width: 40%;
    max-width: 100px;
  }

  .modal-card h3 {
    font-size: 1.1rem;
  }

  .modal-card p {
    font-size: 0.85rem;
  }

  .btnModal {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

/* --------------------------- Services --------------------------- */

.containerServices {
  height: 80vh;
  padding: 50px 0px;
  text-align: center;
  background-color: rgb(255, 255, 147);
  background-color: #fff;
}

#services .theTitle {
  margin-bottom: 11vh;
  color: black;
}

@media screen and (max-width: 767px) {
  .containerServices {
    height: 100%;
  }
}

@media (min-width: 1367px) {
  .containerServices {
    height: 60vh;
  }
}

/* --------------------------- whatWait --------------------------- */
#whatWait #about {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

#whatWait .theTitle {
  font-size: 2rem;
  margin-bottom: 15vh;
  color: #333;
}

.options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.options-container .button {
  background-color: #cedff5;
  font-family: "Nunito", sans-serif;
  letter-spacing: 2px;
  font-weight: 600;
  color: black;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  height: 60px;
  width: 100%;
  padding: 0 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: waveEffect 3s linear infinite;
  pointer-events: none; /* Evita cliques */
  cursor: default;
}

/* Animação progressiva */
.options-container .button:nth-child(1) {
  animation-delay: 0s;
}

.options-container .button:nth-child(2) {
  animation-delay: 0.5s;
}

.options-container .button:nth-child(3) {
  animation-delay: 1s;
}

.options-container .button:nth-child(4) {
  animation-delay: 1.5s;
}

.options-container .button:nth-child(5) {
  animation-delay: 2s;
}

.options-container .button:nth-child(6) {
  animation-delay: 2.5s;
}

@keyframes waveEffect {
  0%,
  100% {
    background-color: #cedff5;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  50% {
    background-color: #b3d3f0;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  }
}

/* PARA DISPOSITIVOS MÓVEIS */
@media screen and (max-width: 767px) {
  #whatWait #about {
    height: auto;
    padding: 20px 10px;
  }

  #whatWait .theTitle {
    font-size: 1.5rem;
    margin-bottom: 10vh;
  }

  .options-container {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 90%;
  }

  .options-container .button {
    font-size: 14px;
    height: 50px;
    padding: 0 20px;
  }
}

/* PARA TABLETS */
@media (min-width: 768px) and (max-width: 1024px) {
  #whatWait #about {
    padding: 40px 20px;
  }

  #whatWait .theTitle {
    font-size: 2rem;
    margin-bottom: 12vh;
  }

  .options-container {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 700px;
  }

  .options-container .button {
    font-size: 15px;
    height: 55px;
    padding: 0 24px;
  }
}

/* PARA TELAS GRANDES */
@media (min-width: 1367px) {
  #whatWait #about {
    height: 90vh;
  }

  #whatWait .theTitle {
    font-size: 2.5rem;
    margin-bottom: 18vh;
  }

  .options-container {
    gap: 25px;
    max-width: 1000px;
  }

  .options-container .button {
    font-size: 18px;
    height: 70px;
    padding: 0 32px;
  }
}

/* ------------------------------HowWorks------------------------------ */

#servicesHowWorks {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.works {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

#servicesHowWorks p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.containerOptionsType {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.typeOption {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  width: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.typeOption:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.imgOptionType {
  width: 100%;
  height: auto;
  display: block;
}

.subtitleOptionType {
  font-size: 1rem;
  color: #333;
  padding: 15px 10px;
}

/* PARA DISPOSITIVOS MÓVEIS */
@media screen and (max-width: 767px) {
  .works {
    font-size: 1.5rem;
  }

  #servicesHowWorks p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .typeOption {
    width: 40%;
    margin: 0 auto;
  }

  .subtitleOptionType {
    font-size: 0.9rem;
  }
}

/* PARA TABLETS */
@media (min-width: 768px) and (max-width: 1024px) {
  .works {
    font-size: 1.8rem;
  }

  #servicesHowWorks p {
    font-size: 1rem;
  }

  .typeOption {
    width: 45%;
  }

  .subtitleOptionType {
    font-size: 1rem;
  }
}

/* PARA TELAS GRANDES */
@media (min-width: 1367px) {
  .works {
    font-size: 2.5rem;
  }

  #servicesHowWorks p {
    font-size: 1.2rem;
  }

  .containerOptionsType {
    gap: 30px;
  }

  .typeOption {
    width: 220px;
  }

  .subtitleOptionType {
    font-size: 1.1rem;
  }
}

/* ------------------------------values------------------------------ */

#valuePage .pacote-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  transition: transform 0.3s, box-shadow 0.3s;
  gap: 20px;
  box-sizing: border-box;
}

.centralizar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  width: 100%;
  box-sizing: border-box;
}

.pacote-header {
  text-align: center;
  margin-bottom: 20px;
}

.pacote-header .theTitle {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #575757;
}

.pacote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.pacote-form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.valorDinamico {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

label {
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  color: #333;
}

.pacote-options label {
  margin-bottom: 10px;
  display: block;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 10px;
}

.valorSelecionado {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.valorValue {
  font-weight: 500;
  font-size: 1.2rem;
}

textarea {
  resize: vertical;
  height: 100px;
  padding: 12px;
  border: none;
  font-size: 16px;
  color: #333;
  width: 100%;
}

.pacote-footer {
  margin-top: 20px;
  text-align: center;
}

.pacote-button {
  background-color: #7f89e0;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pacote-button:hover {
  background-color: #5c68d3;
  transform: scale(1.05);
}

.pacote-button:active {
  transform: scale(0.95);
}

.containervalues2 {
  color: #2c3e50;
  font-size: 1rem;
  text-align: justify;
  width: 100%;
  line-height: 1.6;
  font-family: "Nunito", sans-serif;
}

.obsImportante ul {
  margin: 0;
  padding-left: 20px;
}

.obsImportante li {
  font-size: 0.9rem;
  text-align: justify;
  line-height: 1.4;
  font-family: "Nunito", sans-serif;
}

.subtitleTextValues {
  font-size: 1rem;
  text-align: center;
  color: #3b3b3b;
  font-family: "Lilita One", sans-serif;
  border-bottom: 1px solid #575757;
}

.observacoesU {
  margin-top: 10px;
}

/* Media Query do values */
/* PARA DISPOSITIVOS MÓVEIS */
@media screen and (max-width: 767px) {
  .pacote-header-text {
    font-size: 20px;
  }

  .centralizar {
    flex-direction: column;
    gap: 20px;
  }

  .pacote-form-group {
    align-items: center;
  }

  .valorValue {
    font-size: 1rem;
  }

  .pacote-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* PARA TABLETS */
@media (min-width: 768px) and (max-width: 1024px) {
  .pacote-header-text {
    font-size: 22px;
  }

  .centralizar {
    gap: 40px;
  }

  .pacote-button {
    font-size: 17px;
    padding: 12px 24px;
  }
}

/* PARA TELAS GRANDES */
@media (min-width: 1367px) {
  .pacote-header-text {
    font-size: 26px;
  }

  .pacote-button {
    font-size: 20px;
    padding: 14px 28px;
  }
}

/* ------------------------- Página Pacotes ------------------------- */

#pacotesServices {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

#pacotesServices .containerPacotesServices {
  max-width: 1200px;
  margin: 0 auto;
}

#pacotesServices .theTitle {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}

.pacotesNaSemana {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.pacote {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 calc(33.333% - 20px); 
  min-height: 159px;
  max-width: 300px; 
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pacote h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4f81c7;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.pacote p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.5;
}

.pacoteMensal {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pacoteMensal h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4f81c7;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pacoteMensal p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.5;
}

/* Botão de Contato */
.pacote-button {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #4f81c7;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}

.pacote-button:hover {
  background-color: #3d6bae;
  transform: scale(1.05);
}

.pacote-button:active {
  transform: scale(0.95);
}

/* Botão Principal */
.cta-button {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #4f81c7;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.cta-button:hover {
  background-color: #3d6bae;
  transform: scale(1.05);
}

/* ------------------------- Responsividade ------------------------- */

/* Dispositivos móveis */
@media screen and (max-width: 767px) {
  .pacotesNaSemana {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pacote {
    flex: 1 1 100%; /* Ocupar 100% da largura disponível */
    max-width: none;
  }

  .pacoteMensal {
    width: 83%;
    /* max-width: 381px; */
  }

  #pacotesServices .theTitle {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pacotesNaSemana {
    gap: 25px;
  }

  .pacote {
    flex: 1 1 calc(50% - 20px); /* Duas colunas */
  }

  .pacoteMensal {
    width: 70%;
  }
}

/* Grandes telas */
@media screen and (min-width: 1200px) {
  .pacotesNaSemana {
    gap: 40px;
  }

  .pacote {
    flex: 1 1 calc(33.333% - 20px); /* Três colunas */
  }

  .pacoteMensal {
    width: 60%;
  }
}

/* ---------------------------- Contato ---------------------------- */

#contato {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  width: 80%;
  max-width: 1000px;
}

#contato h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

form,
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}

form label {
  color: #333;
  font-size: 1rem;
  font-weight: bold;
}

form input,
form textarea {
  width: 90%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease;
}

/* Estilo de campo válido (preenchido corretamente) */
form input.valid,
form textarea.valid {
  border: 2px solid rgba(0, 128, 0, 0.7);
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.5);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Estilo de campo inválido (não preenchido) */
form input.invalid,
form textarea.invalid {
  border: 2px solid rgba(255, 0, 0, 0.7);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Estilo para o checkbox */
form input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

form label[style="display: flex;"] p {
  margin: 0;
  color: #333;
}
.formButtons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btnback {
  font-size: 15px;
  border: none;
  background: #e74c3c;
  color: #fff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
}

.btnSend {
  font-size: 15px;
  border: none;
  background: green;
  color: #fff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
}

form button:active {
  transform: scale(0.97);
}

#escolhaFormularioUnico {
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #333;
  justify-content: center;
}
.contactContainerNumber {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #e74c3c;
}

.contact-info iframe {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* Botão exclusivo "Contratar uma babá" */
.contratarUnico {
  background-color: #ffd8b1; /* Laranja pastel */
  color: #4a3f35;
}

/* Botão exclusivo "Trabalhar como babá" */
.trabalharUnico {
  background-color: #b3e5fc; /* Azul pastel */
  color: #2c3e50;
}

.btnUnico {
  font-size: 15px;
  border: none;
  color: #8f8f8f;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
}
/* Efeito hover para os botões */
.btnUnico:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 198, 198, 0.2);
}

/* Efeito ao pressionar */
.btnUnico:active {
  transform: scale(0.95);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.hideContainer {
  display: none;
}

/* ---------------------------- Media Queries ---------------------------- */

/* Dispositivos móveis (até 767px) */
@media screen and (max-width: 767px) {
  #contato {
    padding: 20px;
    width: 80%;
    margin: 10px auto;
  }

  #contato h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  form,
  .contact-info {
    width: 100%;
    gap: 10px;
  }

  form input,
  form textarea {
    width: 95%;
  }

  form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }

  .contact-item i {
    font-size: 1.2rem;
  }
}

/* Tablets (768px a 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #contato {
    padding: 30px;
    width: 90%;
  }

  #contato h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .contact-container {
    gap: 30px;
  }

  form button {
    font-size: 17px;
    padding: 0.8em 2.5em;
  }

  .contact-item i {
    font-size: 1.4rem;
  }
}

/* Telas grandes (a partir de 1200px) */
@media screen and (min-width: 1200px) {
  #contato {
    padding: 50px;
    width: 75%;
    margin: 40px auto;
  }

  #contato h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    padding-bottom: 15px;
  }

  .contact-container {
    gap: 50px;
  }

  form button {
    font-size: 20px;
    padding: 1.2em 3.5em;
  }

  .contact-item i {
    font-size: 1.8rem;
  }

  .contact-info iframe {
    max-width: 600px;
  }
}
