body {
  margin: 0;
  padding: auto 0;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  font-family: "Helvetica Rounded LT Std", "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f8f2;
  color: black;
  /* overflow: hidden; */
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  width: 100%;
  height: 8vh;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  background: #f9f8f2;
  box-shadow: 0 8px 32px 0 #00000050;
  z-index: 9999;
}

nav .nav-links {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 65px;
  padding-right: 65px;
}

nav .Links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

nav ul {
  display: flex;
  flex-direction: row;
  gap: 50px;
  list-style: none;
  padding: 0;
}

nav li {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 5px;
  transition: all 0.3s;
  color: black;
}

nav .logo-link {
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: black;
  font-weight: 700;
  vertical-align: top;
}

nav .logo-link::before,
nav .logo-link::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
nav .logo-link::before {
  background-color: #35ae80;
  color: #35ae80;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
nav .logo-link::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: #35ae80;
}

nav .logo-link:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
nav .logo-link:hover::after {
  transform: translate3d(0, 0, 0);
}

nav .logo-link span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav .logo-link:hover span {
  transform: translate3d(-200%, 0, 0);
}

.menu-mobile {
  display: none;
}

.plans-container {
  width: 100%;
  min-height: 110vh;
  padding-top: 150px;
  padding-bottom: 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-plan {
  width: 100%;
  max-width: 1300px;
  min-height: 80%;
  background-image: url(./assets/plan-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  font-weight: bold;
}

.card-plan i {
  color: #35ae80;
  font-size: 32px;
}

.card-plan .colorGreen {
  color: #35ae80;
}

.card-plan b {
  font-size: x-large;
}

.card-plan .price {
  font-weight: lighter;
  text-align: center;
}

.card-plan .price-consult {
  font-size: 10px !important;
}

.card-infos {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-container ul {
  width: 100%;
  height: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}

.plans-container li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative; /* Necessário para o posicionamento absoluto do ::after */
  padding-bottom: 10px; /* Espaçamento entre o texto e a linha */
}

.plans-container li::after {
  content: "";
  position: absolute;
  bottom: 0; /* Posiciona a linha na parte inferior do elemento pai */
  left: 0;
  width: 100%;
  height: 1px; /* Define a altura da linha */
  background-color: #d4d3d2; /* Define a cor da linha */
}

.plans-container li span {
  width: 200px;
  text-align: center;
}

.plans-container li span:first-child {
  width: 300px;
}

.plans-container li:last-child::after {
  background-color: transparent !important;
}

.li-titles {
  font-weight: bold;
  color: #35ae80;
  font-size: larger;
  position: relative; /* Necessário para o posicionamento absoluto do ::after */
  padding-bottom: 10px; /* Espaçamento entre o texto e a linha */
}

.li-titles::after {
  content: "";
  position: absolute;
  bottom: 0; /* Posiciona a linha na parte inferior do elemento pai */
  left: 0;
  width: 100%;
  height: 1px; /* Define a altura da linha */
  background-color: #35ae80 !important; /* Define a cor da linha */
}

.li-titles-final span {
  color: #000;
  position: relative; /* Necessário para o posicionamento absoluto do ::after */
  padding-bottom: 10px; /* Espaçamento entre o texto e a linha */
}

.li-titles-final:after {
  content: "";
  position: absolute;
  bottom: 0; /* Posiciona a linha na parte inferior do elemento pai */
  left: 0;
  width: 100%;
  height: 1px; /* Define a altura da linha */
  background-color: #35ae80 !important; /* Define a cor da linha */
}

.plans-container-mobile {
  display: none;
}

footer {
  width: 100%;
  height: 400px;
  background-color: #35ae80;
  color: white;
  gap: 40px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  font-size: 18px;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 65px;
  padding-right: 65px;
  justify-content: space-between;
}

.footer-links-start {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-evenly;
}

.Footer-btn a {
  color: white;
  border: 2px solid white;
  height: 45px;
  display: flex;
  padding: 0 18px;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
}

.Footer-btn a i {
  color: white;
  font-size: 22px;
  transition: all 0.3s;
}
.Footer-btn a:hover i {
  color: black;
}

.Footer-btn a:hover {
  color: black;
  background: white;
}

.Footer-li {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.Footer-li span {
  font-weight: bold;
}

.Footer-li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.Footer-li a:hover {
  color: black;
}

.Extra {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.Extra i {
  color: white;
  font-size: 22px;
}

.Extranet-link {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
}

.Footer-social {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.Footer-social-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer-content-mobile {
  display: none;
}

@media (max-width: 767px) {
  nav .Links {
    display: none;
  }

  .menu-mobile {
    display: flex;
    background-color: #f9f8f2;
  }

  .ph-list {
    font-size: 30px;
    cursor: pointer;
    color: black;
    font-weight: bold;
  }

  .ph-x {
    font-size: 30px;
    cursor: pointer;
    color: black;
    font-weight: bold;
  }
  #close {
    margin: 20px;
    float: right;
    color: #000;
    font-size: 20px;
    cursor: pointer;
  }
  #menu li a {
    padding-left: 35vw;
    text-decoration: none;
    font-size: x-large;
    font-weight: bold;
    color: black;
    transition: all 0.3s ease;
    position: relative;
    width: 240px;
    text-align: left;
    display: flex;
    justify-content: start;
  }

  #menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    list-style: none;
    text-align: center;
    opacity: 0;
    transition: all 1s ease;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #f9f8f2;
  }
  #container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f9f8f2;
    text-align: center;
    transition: all 0.3s ease;
  }

  .plans-container {
    display: none;
  }

  .plans-container-mobile {
    display: flex;
  }

  .plans-container-mobile {
    width: 100%;
    min-height: 110vh;
    padding-top: 150px;
    padding-bottom: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-plan {
    width: 100%;
    min-height: 80%;
    border-radius: 30px;
    font-weight: bold;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-plan i {
    color: #35ae80;
    font-size: 32px;
  }

  .card-plan .colorGreen {
    color: #35ae80;
  }

  .card-plan b {
    font-size: x-large;
  }

  .card-plan .price {
    font-weight: lighter;
    text-align: center;
  }

  .card-plan .price-consult {
    font-size: 10px !important;
  }

  .card-infos {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
  }

  .plans-container-mobile ul {
    width: 80%;
    height: 100%;
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    background-image: url(./assets/plan-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
  }

  .plans-container-mobile li {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative; /* Necessário para o posicionamento absoluto do ::after */
    padding-bottom: 10px; /* Espaçamento entre o texto e a linha */
  }

  .plans-container-mobile li::after {
    content: "";
    position: absolute;
    bottom: 0; /* Posiciona a linha na parte inferior do elemento pai */
    left: 0;
    width: 100%;
    height: 1px; /* Define a altura da linha */
    background-color: #d4d3d2; /* Define a cor da linha */
  }

  .plans-container-mobile li span {
    width: 200px;
    text-align: center;
  }

  .plans-container-mobile li span:first-child {
    width: 140px;
  }

  .plans-container-mobile li:last-child::after {
    background-color: transparent !important;
  }

  .li-titles {
    font-weight: bold;
    color: #35ae80;
    font-size: larger;
    position: relative; /* Necessário para o posicionamento absoluto do ::after */
    padding-bottom: 10px; /* Espaçamento entre o texto e a linha */
  }

  .li-titles::after {
    content: "";
    position: absolute;
    bottom: 0; /* Posiciona a linha na parte inferior do elemento pai */
    left: 0;
    width: 100%;
    height: 1px; /* Define a altura da linha */
    background-color: #35ae80 !important; /* Define a cor da linha */
  }

  .li-titles-final span {
    color: #000;
    position: relative; /* Necessário para o posicionamento absoluto do ::after */
    padding-bottom: 10px; /* Espaçamento entre o texto e a linha */
  }

  .li-titles-final:after {
    content: "";
    position: absolute;
    bottom: 0; /* Posiciona a linha na parte inferior do elemento pai */
    left: 0;
    width: 100%;
    height: 1px; /* Define a altura da linha */
    background-color: #35ae80 !important; /* Define a cor da linha */
  }

  .footer-content {
    display: none;
  }

  footer {
    height: 500px;
  }

  .footer-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    gap: 50px;
  }

  .Footer-li-mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
  }

  .Footer-li-mobile a {
    list-style: none;
  }

  .Footer-li-mobile a {
    text-align: center;
    text-decoration: none;
    color: white;
  }

  .footer-content-mobile .Extra {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
  }
}
