body {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  overflow-x: hidden;
}

* {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Galgony";
  src: url("/assets/fonts/Galgony.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  height: 9vh;
  background: linear-gradient(to right, #c15da5, #3c4c75);
}

/* Header fixo e camada acima do conteúdo */
.menu {
  position: sticky;
  top: -1px;
  z-index: 50;
}

/* Botão hamburguer (esconde em telas grandes) */
.menu_toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
}

.menu_bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animação quando aberto */
.menu.open .menu_bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu.open .menu_bar:nth-child(2) {
  opacity: 0;
}
.menu.open .menu_bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#icone-header {
  width: 100px;
  height: 82px;
}

.menu_lista {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style-type: none;
  justify-content: center;
  width: 100%;
}

.menu_lista_item {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.menu_lista_item:hover {
  color: #2fa6a4;
}

.iconeSociais {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.iconeSociais img {
  cursor: pointer;
  width: 20px;
  filter: invert(100%);
}

.containerBio {
  display: flex;
  background: linear-gradient(to bottom, #d2daec, #fff);
}

.bioText {
  display: flex;
  font-family: "Lato", sans-serif;
  max-width: 50%;
  flex-direction: column;
  align-items: flex-start;
  padding: 52px 55px;
  color: #3c4c75;
}

.bioText p {
  font-size: 1.7em;
  margin: 0;
}

.logoBio img {
  width: 88%;
  height: auto;
}

.buttonKnowMore {
  background-color: #c15da5;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  border: none;
  border-radius: 7px;
  padding: 13px 32px;
}

.containerAbout {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  gap: 40px;
  padding: 0px 50px;
  background: linear-gradient(to top, #d2daec, #fff);
}

#imageAbout {
  max-width: 50%;
}
#imageAbout img {
  width: 500px;
  height: auto;
  border-radius: 30px;
}

.textAbout {
  display: flex;
  max-width: 50%;
  font-family: "Lato", sans-serif;
  flex-direction: column;
  align-items: flex-start;
  color: #3c4c75;
}

.textAbout p {
  margin: 0;
  font-size: 1.608em;
}

.containerAdvantage {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #d2daec, #fff);
  padding: 70px 0px;
}

.titleAdvantage {
  font-size: 2.5em;
  color: #3c4c75;
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}

.imgContainer {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 29px;
  margin: 0 auto;
  position: relative;
  margin: -20px;
}

.imgContainer img {
  width: 124px;
  height: 120px;
  transform: scale(0.6);
  transform-origin: center;
  display: block;
  margin: 0 auto;
}

.textCard {
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 21px;
  height: auto;
  width: 259px;
  line-height: 1.5;
  font-family: "Galgony", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 29px;
}

#cardGerenciamento p {
  font-size: 17px;
}

#cardImgAzul {
  background-color: #3c4c75;
}

#cardImgRosa {
  background-color: #c15da5;
}

#textCardAzul {
  background-color: #637296;
}

#textCardRosa {
  background-color: #f476d7;
}

.textCard h1 {
  font-size: 1.5em;
}
.textCard p {
  font-size: 1.2em;
}

.sectionCards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.containerCards {
  display: flex;
  justify-content: center;
}

.scheduling {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 1rem 14rem;
  background: linear-gradient(to top, #d2daec, #fff);
}

.scheduling h1 {
  color: #3c4c75;
  font-family: "Lato", sans-serif;
  font-size: 3.4em;
}

.scheduling p {
  color: #3c4c75;
  font-family: "Lato", sans-serif;
  font-size: 2em;
  margin: 20px;
}

#schedulingButton {
  margin: 10px;
  font-size: 1.2em;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  height: 14vh;
  background: linear-gradient(to right, #c15da5, #3c4c75);
  gap: 40px;
  position: relative;
}

.imgFooter {
  position: relative;
}

.imgFooter::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  background-color: #fff;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

#iconeFooter {
  width: 122px;
  height: 122px;
}

#sociaisFooter {
  display: flex;
  flex-direction: column;
}

#sociaisFooter p {
  margin: 0;
}

#sociaisFooter a {
  display: flex;
  text-decoration: none;
  color: #fff;
  gap: 10px;
}

@media (min-width: 1025px) {
  .scheduling {
    padding: 2rem 6rem;
  }
}

/* Responsividade para telas com largura até 1024px */
@media (max-width: 1024px) {
  /* Menu Header */
  #icone-header {
    width: 70px;
    height: auto;
  }

  .menu_lista {
    gap: 15px;
  }

  .menu_lista_item {
    font-size: 0.9em;
  }

  .iconeSociais img {
    width: 16px;
  }

  /* Bio Section */
  .bioText {
    padding: 30px;
  }

  .bioText h1 {
    font-size: 1.8em;
  }

  .bioText p {
    font-size: 1.2em;
  }

  .buttonKnowMore {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  /* About Section */
  .containerAbout {
    padding: 20px;
  }

  .textAbout p {
    font-size: 1.3em;
  }

  #imageAbout img {
    max-width: 80%;
    height: auto;
  }

  .buttonKnowMore {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  /* Cards Section */
  .titleAdvantage {
    font-size: 2em;
  }

  .card {
    width: 90%;
  }

  .imgContainer {
    width: 100px;
    height: 100px;
  }

  .imgContainer img {
    width: 100%;
    height: auto;
  }

  .textCard {
    padding: 15px;
    height: auto;
    font-size: 0.9em;
  }

  .textCard h1 {
    font-size: 1.2em;
  }

  .textCard p {
    font-size: 1em;
  }

  /* Scheduling Section */
  .scheduling h1 {
    font-size: 2.5em;
  }

  .scheduling p {
    font-size: 1.6em;
  }

  #schedulingButton {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  /* Footer */
  footer {
    padding: 10px 20px;
  }

  #iconeFooter {
    width: 100px;
    height: 100px;
  }

  .iconeSociais img {
    width: 16px;
  }
}

/* Responsividade para telas com largura até 768px */
@media (max-width: 768px) {
  /* Menu Header */
  #icone-header {
    width: 60px;
    height: auto;
  }

  /* Mostra o botão no mobile */
  .menu_toggle {
    display: block;
  }

  .menu_lista {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px 0 8px;
  }

  .menu_lista_item {
    font-size: 1.05em;
    text-align: center;
  }

  /* Quando abrir (classe .open no header), exibe os links */
  .menu.open .menu_lista {
    display: flex;
  }

  /* Alinha header: ícone à esquerda, hambúrguer à direita */
  .menu {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
  }

  #iconeSociaisHeader {
    display: none;
  }

  /* Bio Section */
  .containerBio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logoBio {
    margin: 0;
  }

  .logoBio img {
    width: min(80%, 380px);
    height: auto;
  }

  .bioText {
    padding: 24px;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  .bioText h1 {
    font-size: 1.4em;
  }
  .bioText p {
    font-size: 1.1em;
  }

  .buttonKnowMore {
    padding: 8px 20px;
    font-size: 0.8em;
  }

  /* About Section */
  .containerAbout {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    height: auto; /* evita cortes */
    text-align: center;
  }

  #imageAbout {
    max-width: 100%;
  }
  #imageAbout img {
    width: min(92%, 420px);
    height: auto;
  }
  .textAbout {
    max-width: 100%;
    align-items: center;
  }
  .textAbout p {
    font-size: 1.1em;
  }

  .buttonKnowMore {
    padding: 8px 20px;
    font-size: 0.8em;
  }

  /* Cards Section */

  .containerAdvantage {
    padding: 15px 0;
  }

  .titleAdvantage {
    font-size: 1.8em;
  }
  .sectionCards {
    gap: 40px;
  }
  .card {
    width: 100%;
  }

  .imgContainer {
    width: 90px;
    height: 90px;
  }

  .textCard {
    padding: 10px;
    height: auto;
    font-size: 0.8em;
  }

  .textCard h1 {
    font-size: 1.1em;
  }

  .textCard p {
    font-size: 1.3em;
  }

  /* Scheduling Section */

  .scheduling {
    padding: 20px;
  }
  .scheduling h1 {
    font-size: 1.4em;
  }
  .scheduling p {
    font-size: 1.1em;
  }

  #schedulingButton {
    margin: 20px;
  }

  /* Footer */
  footer {
    padding: 8px 15px;
  }

  #iconeFooter {
    width: 90px;
    height: 90px;
  }

  .iconeSociais img {
    width: 14px;
  }
}

/* Responsividade para telas com largura até 425px */
@media (max-width: 425px) {
  /* Menu Header */
  .menu {
    flex-direction: row;
    height: auto;
  }

  #icone-header {
    width: 60px;
    height: auto;
  }

  .menu_lista {
    flex-direction: column; /* Alinha os itens do menu verticalmente */
    gap: 10px;
    padding: 0;
  }

  .menu_lista_item {
    font-size: 1.05em; /* Aumenta um pouco o tamanho do texto do menu */
    text-align: center; /* Centraliza o texto */
  }

  .iconeSociais {
    display: none; /* Esconde os ícones sociais */
  }

  /* Bio Section */
  .bioText {
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .bioText h1 {
    font-size: 1.4em;
  }

  .bioText p {
    font-size: 1.1em;
  }

  .logoBio {
    margin-bottom: -2rem;
  }

  .buttonKnowMore {
    padding: 10px 20px;
    font-size: 0.8em;
    text-align: center;
  }

  /* About Section */
  .containerAbout {
    flex-direction: column; /* Empilha a imagem e o texto */
    padding: 10px;
    text-align: center;
    height: auto;
  }

  #imageAbout {
    width: 100%; /* Ajusta a largura da imagem */
    margin-bottom: 20px;
  }
  .textAbout {
    text-align: center;
    align-items: center;
  }
  .textAbout p {
    font-size: 1.1em;
  }

  /* Cards Section */
  .sectionCards {
    flex-direction: column; /* Organiza os cards em coluna */
    gap: 31px;
  }

  .card {
    width: 100%; /* Cards ocupam 100% da largura disponível */
  }

  .imgContainer {
    width: 80px;
    height: 80px;
  }

  .textCard {
    padding: 15px;
  }

  .textCard h1 {
    font-size: 1.4em;
  }

  .scheduling h1 {
    font-size: 1.4em;
  }
  .scheduling p {
    font-size: 1.1em;
  }

  /* Footer */

  .footer {
    padding: 0;
  }

  #iconeFooter {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 375px) {
  .logoBio {
    margin-bottom: -2rem;
  }

  .containerAbout {
    text-align: center;
    height: auto;
  }

  .textAbout {
    align-items: center;
  }

  .sectionCards {
    gap: 40px;
  }
  .containerAdvantage {
    padding: 50px 0;
  }
}

@media (max-width: 320px) {
  .containerAbout {
    height: auto;
  }
}
