@font-face {
  font-family: "Sagoe";
  src: url("../assets/fonts/segoe.ttf");
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Sagoe";
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

.container {
  width: 80%;
}

img {
  width: 100%;
  display: block;
}

h1 {
  font-size: 1.635rem;
  font-weight: 600;
  color: #051429;
}
h1.title {
  font-size: 1.875rem;
}
h1.small {
  font-size: 1.5rem;
}
h1.x-small {
  font-size: 1.375rem;
}

h2 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #454445;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

@media screen and (min-width: 100rem) {
  .container {
    width: 60%;
  }
}
@media screen and (max-width: 64rem) {
  .container {
    width: 85%;
  }
  h1 {
    font-size: 1.25rem;
  }
  h1.title {
    font-size: 1.25rem;
  }
}
nav {
  width: 100%;
  height: 5.5rem;
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
nav[data-scrolled=true] {
  background: #051429;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .container .nav__logo img {
  width: 7.188rem;
  height: 3.125rem;
}
nav .container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2.5rem;
}
nav .container ul li {
  display: grid;
  place-items: center;
  position: relative;
}
nav .container ul li::after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: all 0.3s cubic-bezier(0.93, 0, 0.49, 0.96);
  background: #FFFFFF;
}
nav .container ul li:hover::after {
  width: 115%;
}
nav .container ul li a {
  display: inline-block;
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
  color: #FFFFFF;
  transition: all 0.3s ease-out;
}
nav .container ul li a:hover {
  transform: translateY(-0.25rem);
}
nav .container .nav__btn {
  display: none;
}
nav .container .nav__socials {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
nav .container .nav__socials a {
  transition: all 0.3s ease-out;
  perspective: 1000px;
  transform-style: preserve-3d;
}
nav .container .nav__socials a:hover {
  transform: rotateX(18deg) translateY(-0.15rem);
}
nav .container .nav__socials a img {
  width: 1.375rem;
  height: 1.375rem;
}

#nav__background {
  display: none;
}

@media screen and (max-width: 64rem) {
  nav .container .nav__logo img {
    width: 5.5rem;
  }
  nav .container ul {
    width: 85%;
    position: fixed;
    top: 5.4rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.95);
    margin-top: 0.3rem;
    gap: 2rem 0;
    padding: 2.5rem;
    background: #051429;
    transition: all 0.25s cubic-bezier(0.24, -0.46, 0.75, 1.07);
  }
  nav .container ul[data-active=true] {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
  }
  nav .container ul li::after {
    display: none;
  }
  nav .container ul li a:hover {
    transform: translateY(0);
  }
  nav .container .nav__btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 105;
  }
  nav .container .nav__btn .btn {
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    z-index: 4;
    transition: 0.6s;
  }
  nav .container .nav__btn .btn:checked ~ .lines .line:nth-child(1) {
    opacity: 0;
  }
  nav .container .nav__btn .btn:checked ~ .lines .line:nth-child(3) {
    transform: rotate(45deg) translate(-1em, 0.2em);
  }
  nav .container .nav__btn .btn:checked ~ .lines .line:nth-child(2) {
    transform: rotate(-45deg) translate(-0.9em, -0.3em);
  }
  nav .container .nav__btn .lines {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  nav .container .nav__btn .lines .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 0.2em;
    pointer-events: none;
    border-radius: 0.2rem;
    background: #FFFFFF;
    transition: 0.3s;
  }
  nav .container .nav__btn .lines .line:nth-child(2) {
    top: 25%;
  }
  nav .container .nav__btn .lines .line:nth-child(3) {
    top: 75%;
  }
  nav .container .nav__socials {
    display: none;
  }
  #nav__background {
    display: block;
    position: fixed;
    z-index: 990;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    transition: all 0.25s ease-in-out;
  }
  #nav__background[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
}
header {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("../assets/images/home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
header .container {
  display: grid;
  place-items: center start;
  gap: 1.8rem 0;
  margin-top: 5rem;
}
header .container h1 {
  width: 38%;
  color: #FFFFFF;
}
header .container a button {
  width: 10.5rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #051429;
  border: 2px solid #051429;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
header .container a button:hover {
  color: #FFFFFF;
  background: transparent;
  border: 2px solid #FFFFFF;
}

@media screen and (max-width: 64rem) {
  header {
    place-items: end center;
    background-image: url("../assets/images/home-mobile.jpg");
  }
  header .container {
    place-items: center;
    text-align: center;
    gap: 1rem 0;
    margin: 0 0 25% 0;
  }
  header .container h1 {
    width: 80%;
  }
}
#about_header {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  place-items: center end;
}
@media screen and (max-width: 64rem) {
  #about_header {
    padding: 3.5rem 0;
  }
}
#about_header .container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#about_header .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem 0;
  width: 100%;
}
#about_header .container .text p {
  color: #707070;
}
#about_header .container .text a {
  display: flex;
  align-items: flex-end;
  font-size: 1rem;
  font-weight: 600;
  gap: 0 0.5rem;
  color: #C69F57;
}
#about_header .container .text a:hover img {
  margin-left: 0.2rem;
}
#about_header .container .text a img {
  width: 1rem;
  height: 1rem;
  transition: all 0.3s ease-out;
}
#about_header .container .about__photos {
  width: 60vw;
  height: fit-content;
  position: relative;
  right: -20%;
}
#about_header .container .about__photos .swiper-wrapper .swiper-slide {
  height: 383px;
  object-fit: cover;
}
#about_header .container .about__photos .swiper-pagination {
  display: none;
}

@media (max-width: 1024px) {
  #about_header {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    place-items: center;
  }
}
@media screen and (max-width: 1024px) and (max-width: 64rem) {
  #about_header {
    padding: 3.5rem 0;
  }
}
@media (max-width: 1024px) {
  #about_header .container {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  #about_header .container .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem 0;
    width: 100%;
  }
  #about_header .container .text p {
    color: #707070;
  }
  #about_header .container .text a {
    display: flex;
    align-items: flex-end;
    font-size: 1rem;
    font-weight: 600;
    gap: 0 0.5rem;
    color: #C69F57;
  }
  #about_header .container .text a:hover img {
    margin-left: 0.2rem;
  }
  #about_header .container .text a img {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease-out;
  }
  #about_header .container .about__photos {
    width: 150vw;
    height: fit-content;
    position: relative;
    right: 0%;
  }
  #about_header .container .about__photos .swiper-wrapper .swiper-slide {
    height: 372px;
    object-fit: cover;
    width: 100%;
  }
  #about_header .container .about__photos .swiper-pagination {
    display: none;
  }
}
#banner1 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  padding: 1rem 0;
}
@media screen and (max-width: 64rem) {
  #banner1 {
    padding: 3.5rem 0;
  }
}
#banner1 .container {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1rem 0;
  padding: 5.5rem 0;
  border-radius: 1.5rem;
  background: #051429;
  color: #FFFFFF;
}
#banner1 .container h1 {
  color: #FFFFFF;
}
#banner1 .container p {
  width: 56%;
}

@media screen and (max-width: 64rem) {
  #banner1 {
    padding: 2rem 0;
  }
  #banner1 .container {
    gap: 3rem 0;
    padding: 3.5rem 0;
  }
  #banner1 .container h1 {
    width: 70%;
  }
  #banner1 .container p {
    width: 80%;
  }
}
#dentistry {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
@media screen and (max-width: 64rem) {
  #dentistry {
    padding: 3.5rem 0;
  }
}
#dentistry .container {
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#dentistry .container .title {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.75rem 0;
}
#dentistry .container .title h2 {
  width: 75%;
}
#dentistry .container .treatments__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
#dentistry .container .treatments__wrapper__moblie {
  display: none;
}
#dentistry .container .treatments__wrapper .treatment, #dentistry .container .treatments__wrapper__moblie .treatment {
  display: grid;
  grid-template-columns: 40% 60%;
  transition: all 0.3s ease-out;
}
#dentistry .container .treatments__wrapper .treatment:hover, #dentistry .container .treatments__wrapper__moblie .treatment:hover {
  transform: translateY(-0.3rem);
}
#dentistry .container .treatments__wrapper .treatment img, #dentistry .container .treatments__wrapper__moblie .treatment img {
  display: flex;
  width: 100%;
  height: 100%;
}
#dentistry .container .treatments__wrapper .treatment .treatment__content, #dentistry .container .treatments__wrapper__moblie .treatment .treatment__content {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center start;
  gap: 0.8rem 0;
  padding: 1.5rem;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  background: #EFEFEF;
}
#dentistry .container .treatments__wrapper .treatment .treatment__content .treatment__name, #dentistry .container .treatments__wrapper__moblie .treatment .treatment__content .treatment__name {
  font-size: 1rem;
  font-weight: 600;
  color: #051429;
}
#dentistry .container .treatments__wrapper .treatment .treatment__content p, #dentistry .container .treatments__wrapper__moblie .treatment .treatment__content p {
  font-size: 0.688rem;
  color: #707070;
}
#dentistry .container .treatments__wrapper .treatment .treatment__content .see__more, #dentistry .container .treatments__wrapper__moblie .treatment .treatment__content .see__more {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  gap: 0 0.5rem;
  color: #C69F57;
  cursor: pointer;
}
#dentistry .container .treatments__wrapper .treatment .treatment__content .see__more img, #dentistry .container .treatments__wrapper__moblie .treatment .treatment__content .see__more img {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.2rem;
}
#dentistry .container a button {
  width: 10.5rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #C69F57;
  border: 2px solid #C69F57;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
#dentistry .container a button:hover {
  color: #C69F57;
  background: transparent;
  border: 2px solid #C69F57;
}

@media screen and (max-width: 64rem) {
  #dentistry {
    position: relative;
  }
  #dentistry .container .title h2 {
    width: 100%;
  }
  #dentistry .container .treatments__wrapper {
    display: none;
  }
  #dentistry .container .treatments__wrapper__moblie {
    width: 80vw;
    display: block;
    position: static;
  }
  #dentistry .container .treatments__wrapper__moblie .swiper-wrapper .treatments {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem 0;
  }
  #dentistry .container .treatments__wrapper__moblie .swiper-pagination {
    bottom: 8.7rem;
  }
  #dentistry .container .treatments__wrapper__moblie .swiper-pagination .swiper-pagination-bullet {
    background: #051429;
    transition: all 0.3s ease-out;
  }
  #dentistry .container a {
    margin-top: 2rem;
  }
}
#banner2 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}
@media screen and (max-width: 64rem) {
  #banner2 {
    padding: 3.5rem 0;
  }
}
#banner2 .banner__background {
  width: 100%;
  height: 100%;
  background: #C69F57;
}
#banner2 .container {
  position: absolute;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
  color: #FFFFFF;
}
#banner2 .container h1 {
  color: #FFFFFF;
}
#banner2 .container p {
  width: 40%;
}

@media screen and (max-width: 64rem) {
  #banner2 {
    grid-template-columns: 1fr;
    padding: 0;
    background: #C69F57;
  }
  #banner2 .banner__background {
    display: none;
  }
  #banner2 .container {
    position: relative;
    place-items: center;
    text-align: center;
    gap: 2rem 0;
    padding: 4rem 0;
  }
  #banner2 .container h1 {
    width: 70%;
  }
  #banner2 .container p {
    width: 90%;
  }
}
#aesthetic {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
@media screen and (max-width: 64rem) {
  #aesthetic {
    padding: 3.5rem 0;
  }
}
#aesthetic .container {
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#aesthetic .container .title {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1rem 0;
}
#aesthetic .container .title h2 {
  width: 75%;
}
#aesthetic .container .treatments__wrapper {
  width: 80vw;
  position: static;
  margin-top: 3rem;
}
#aesthetic .container .treatments__wrapper__moblie {
  display: none;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50% 50%;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment img,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment img {
  width: 100%;
  height: 100%;
  display: flex;
  border-top-left-radius: 1.45rem;
  border-top-right-radius: 1.45rem;
  background: #EFEFEF;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment .treatment__content,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment .treatment__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem 0;
  padding: 1rem 1.8rem;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  background: #EFEFEF;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment .treatment__content .treatment__name,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment .treatment__content .treatment__name {
  font-size: 1rem;
  font-weight: 600;
  color: #051429;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment .treatment__content p,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment .treatment__content p {
  font-size: 0.688rem;
  color: #707070;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment .treatment__content .see__more,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment .treatment__content .see__more {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  gap: 0 0.4rem;
  color: #C69F57;
  cursor: pointer;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment .treatment__content .see__more:hover img,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment .treatment__content .see__more:hover img {
  margin-left: 0.15rem;
}
#aesthetic .container .treatments__wrapper .swiper-wrapper .treatment .treatment__content .see__more img,
#aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatment .treatment__content .see__more img {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.2rem;
  transition: all 0.3s ease-out;
}
#aesthetic .container .treatments__wrapper .swiper-button-prev,
#aesthetic .container .treatments__wrapper .swiper-button-next,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-prev,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-next {
  width: 2rem;
  height: 2rem;
  top: 33%;
  background-image: url("../assets/icons/botao.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: background-image 0.3s ease-out;
}
#aesthetic .container .treatments__wrapper .swiper-button-prev:hover,
#aesthetic .container .treatments__wrapper .swiper-button-next:hover,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-prev:hover,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-next:hover {
  background-image: url("../assets/icons/bota-branco.svg");
}
#aesthetic .container .treatments__wrapper .swiper-button-prev::after,
#aesthetic .container .treatments__wrapper .swiper-button-next::after,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-prev::after,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-next::after {
  display: none;
}
#aesthetic .container .treatments__wrapper .swiper-button-prev,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-prev {
  left: 79.6%;
  transform: rotateZ(180deg);
}
#aesthetic .container .treatments__wrapper .swiper-button-next,
#aesthetic .container .treatments__wrapper__moblie .swiper-button-next {
  right: 15%;
}
#aesthetic .container a button {
  width: 10.5rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #C69F57;
  border: 2px solid #C69F57;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
#aesthetic .container a button:hover {
  color: #C69F57;
  background: transparent;
  border: 2px solid #C69F57;
}

@media screen and (min-width: 100rem) {
  #aesthetic .container .treatments__wrapper .swiper-button-next {
    right: 25%;
  }
  #aesthetic .container .treatments__wrapper .swiper-button-prev {
    left: 71%;
  }
}
@media screen and (max-width: 64rem) {
  #aesthetic .container .title h2 {
    width: 100%;
  }
  #aesthetic .container .treatments__wrapper {
    display: none;
  }
  #aesthetic .container .treatments__wrapper__moblie {
    width: 80vw;
    display: block;
    position: static;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatments {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.85rem;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatments .treatment .treatment__content {
    padding: 1.75rem 1rem;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatments .treatment .treatment__content .treatment__name {
    font-size: 0.75rem;
    font-weight: 600;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatments .treatment .treatment__content p {
    font-size: 0.563rem;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-wrapper .treatments .treatment .treatment__content .see__more {
    font-size: 0.625rem;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-pagination {
    bottom: 8.5rem;
  }
  #aesthetic .container .treatments__wrapper__moblie .swiper-pagination .swiper-pagination-bullet {
    background: #051429;
    transition: all 0.3s ease-out;
  }
  #aesthetic .container a {
    margin-top: 2rem;
  }
}
#banner3 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  padding: 0;
}
@media screen and (max-width: 64rem) {
  #banner3 {
    padding: 3.5rem 0;
  }
}
#banner3 .container {
  display: grid;
  place-items: center end;
  text-align: end;
  gap: 1rem 0;
  padding: 8rem 5rem;
  border-radius: 1.5rem;
  background-image: url("../assets/images/banner2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#banner3 .container h1 {
  color: #FFFFFF;
}
#banner3 .container p {
  width: 53%;
  color: #FFFFFF;
}

@media screen and (max-width: 64rem) {
  #banner3 {
    padding: 2rem 0;
  }
  #banner3 .container {
    height: 34.875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 1rem 0 4rem 0;
    background-image: url("../assets/images/banner2-mobile.png");
  }
  #banner3 .container p {
    width: 80%;
  }
}
#professionals {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
@media screen and (max-width: 64rem) {
  #professionals {
    padding: 3.5rem 0;
  }
}
#professionals .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#professionals .container .title {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#professionals .container .title h2 {
  color: #454445;
}
#professionals .container .professionals__wrapper {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1.25rem;
}
#professionals .container .professionals__wrapper .professional {
  width: 100%;
  height: 16rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60% 40%;
}
#professionals .container .professionals__wrapper .professional:nth-child(1) span {
  width: 50%;
  text-align: center;
}
#professionals .container .professionals__wrapper .professional img {
  display: flex;
  width: 100%;
  height: 100%;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  background: #EFEFEF;
}
#professionals .container .professionals__wrapper .professional .professional__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0;
  padding: 1rem 0;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  background: #EFEFEF;
}
#professionals .container .professionals__wrapper .professional .professional__content .professional__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #051429;
}
#professionals .container .professionals__wrapper .professional .professional__content span {
  font-size: 0.75rem;
  color: #454445;
}

@media screen and (max-width: 64rem) {
  #professionals .container .professionals__wrapper {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  #professionals .container .professionals__wrapper .professional {
    height: 15rem;
  }
  #professionals .container .professionals__wrapper .professional:nth-child(1) span {
    width: 60%;
  }
  #professionals .container .professionals__wrapper .professional:nth-child(1) span.professional__name {
    width: 100%;
  }
}
#testimonials {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: #EFEFEF;
}
@media screen and (max-width: 64rem) {
  #testimonials {
    padding: 3.5rem 0;
  }
}
#testimonials .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#testimonials .container .title {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.4rem 0;
}
#testimonials .container .testimonials__wrapper {
  width: 80vw;
  position: static;
  margin-top: 1.5rem;
}
#testimonials .container .testimonials__wrapper__moblie {
  display: none;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper, #testimonials .container .testimonials__wrapper__moblie .swiper-wrapper {
  padding: 2rem 0;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper .testimonial, #testimonials .container .testimonials__wrapper__moblie .swiper-wrapper .testimonial {
  width: 100%;
  height: 10.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.75rem 0;
  border-radius: 0.875rem;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.168627451);
  background: #051429;
  color: #FFFFFF;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper .testimonial .client__name, #testimonials .container .testimonials__wrapper__moblie .swiper-wrapper .testimonial .client__name {
  font-size: 1rem;
  font-weight: 600;
}
#testimonials .container .testimonials__wrapper .swiper-wrapper .testimonial .testimonial__text, #testimonials .container .testimonials__wrapper__moblie .swiper-wrapper .testimonial .testimonial__text {
  width: 70%;
  font-size: 0.75rem;
}
#testimonials .container .testimonials__wrapper .swiper-button-prev,
#testimonials .container .testimonials__wrapper .swiper-button-next, #testimonials .container .testimonials__wrapper__moblie .swiper-button-prev,
#testimonials .container .testimonials__wrapper__moblie .swiper-button-next {
  width: 2rem;
  height: 2rem;
  top: 40%;
  background-image: url("../assets/icons/botao.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: background-image 0.3s ease-out;
}
#testimonials .container .testimonials__wrapper .swiper-button-prev:hover,
#testimonials .container .testimonials__wrapper .swiper-button-next:hover, #testimonials .container .testimonials__wrapper__moblie .swiper-button-prev:hover,
#testimonials .container .testimonials__wrapper__moblie .swiper-button-next:hover {
  background-image: url("../assets/icons/bota-branco.svg");
}
#testimonials .container .testimonials__wrapper .swiper-button-prev::after,
#testimonials .container .testimonials__wrapper .swiper-button-next::after, #testimonials .container .testimonials__wrapper__moblie .swiper-button-prev::after,
#testimonials .container .testimonials__wrapper__moblie .swiper-button-next::after {
  display: none;
}
#testimonials .container .testimonials__wrapper .swiper-button-prev, #testimonials .container .testimonials__wrapper__moblie .swiper-button-prev {
  left: 84.4%;
  transform: rotateZ(180deg);
}
#testimonials .container .testimonials__wrapper .swiper-button-next, #testimonials .container .testimonials__wrapper__moblie .swiper-button-next {
  right: 10%;
}

@media screen and (min-width: 100rem) {
  #testimonials .container .testimonials__wrapper .swiper-button-prev {
    left: 76%;
  }
  #testimonials .container .testimonials__wrapper .swiper-button-next {
    right: 20%;
  }
}
@media screen and (max-width: 64rem) {
  #testimonials {
    padding-bottom: 5.5rem;
  }
  #testimonials .container {
    gap: 1rem 0;
  }
  #testimonials .container .title h2 {
    width: 85%;
  }
  #testimonials .container .testimonials__wrapper {
    display: none;
  }
  #testimonials .container .testimonials__wrapper__moblie {
    width: 80vw;
    display: block;
    position: static;
  }
  #testimonials .container .testimonials__wrapper__moblie .swiper-wrapper .testimonials {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 0;
  }
  #testimonials .container .testimonials__wrapper__moblie .swiper-pagination {
    bottom: 3.5rem;
  }
  #testimonials .container .testimonials__wrapper__moblie .swiper-pagination .swiper-pagination-bullet {
    background: #051429;
    transition: all 0.3s ease-out;
  }
}
#instagram {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: #051429;
}
@media screen and (max-width: 64rem) {
  #instagram {
    padding: 3.5rem 0;
  }
}
#instagram .container {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1.5rem;
}
#instagram .container .posts__wrapper {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
#instagram .container .instagram__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem 0;
}
#instagram .container .instagram__content h1 {
  width: 60%;
  color: #FFFFFF;
}
#instagram .container .instagram__content p {
  width: 75%;
  font-size: 0.875rem;
  color: #FFFFFF;
}
#instagram .container .instagram__content a button {
  width: 10.5rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #C69F57;
  border: 2px solid #C69F57;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
#instagram .container .instagram__content a button:hover {
  color: #FFFFFF;
  background: transparent;
  border: 2px solid #FFFFFF;
}
#instagram .container .btn__moblie {
  display: none;
}

@media screen and (min-width: 100rem) {
  #instagram .container {
    width: 45%;
  }
}
@media screen and (max-width: 64rem) {
  #instagram .container {
    width: 85%;
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  #instagram .container .posts__wrapper {
    order: 2;
    width: 90%;
  }
  #instagram .container .instagram__content {
    order: 1;
    align-items: center;
    text-align: center;
  }
  #instagram .container .instagram__content p {
    width: 90%;
  }
  #instagram .container .instagram__content a {
    display: none;
  }
  #instagram .container .btn__moblie {
    order: 3;
    display: block;
    margin-top: 0.5rem;
  }
  #instagram .container .btn__moblie button {
    width: 10.5rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
    background: #C69F57;
    border: 2px solid #C69F57;
    transition: all 0.3s ease-out;
    cursor: pointer;
  }
  #instagram .container .btn__moblie button:hover {
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #FFFFFF;
  }
}
#contact {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: #C69F57;
}
@media screen and (max-width: 64rem) {
  #contact {
    padding: 3.5rem 0;
  }
}
#contact .container {
  display: grid;
  grid-template-columns: 40% 30%;
  justify-content: space-around;
  align-items: center;
}
#contact .container .form__wrapper {
  width: 100%;
  display: grid;
  place-items: center start;
  gap: 1.5rem 0;
}
#contact .container .form__wrapper .title {
  display: grid;
  place-items: center start;
  gap: 0.45rem 0;
}
#contact .container .form__wrapper .title h1 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #051429;
}
#contact .container .form__wrapper .title p {
  width: 70%;
  font-size: 0.875rem;
  color: #FFFFFF;
}
#contact .container .form__wrapper form {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.3rem 0;
}
#contact .container .form__wrapper form input {
  width: 100%;
  height: 2.75rem;
  padding-left: 2.2rem;
  border-radius: 1.375rem;
  outline: none;
  background: #FFFFFF;
}
#contact .container .form__wrapper form input::placeholder {
  font-size: 0.875rem;
  color: #805C10;
}
#contact .container .form__wrapper form button {
  width: 10.5rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  background: #051429;
  border: 2px solid #051429;
  transition: all 0.3s ease-out;
  cursor: pointer;
  width: 6.375rem;
  height: 2.063rem;
  border-radius: 1.063rem;
  font-size: 0.875rem;
}
#contact .container .form__wrapper form button:hover {
  color: #FFFFFF;
  background: transparent;
  border: 2px solid #FFFFFF;
}
#contact .container .contact__wrapper {
  display: grid;
  place-items: center start;
  gap: 2.5rem 0;
}
#contact .container .contact__wrapper h2 {
  font-weight: 600;
  color: #051429;
}
#contact .container .contact__wrapper .contact {
  display: grid;
  place-items: center start;
  gap: 1.2rem 0;
}
#contact .container .contact__wrapper .contact span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #051429;
}
#contact .container .contact__wrapper .contact .contact__socials {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
#contact .container .contact__wrapper .contact .contact__socials a {
  transition: all 0.3s ease-out;
}
#contact .container .contact__wrapper .contact .contact__socials a:hover {
  transform: translateY(-0.1rem);
}
#contact .container .contact__wrapper .contact .contact__socials a img {
  width: 1.5rem;
  height: 1.5rem;
}
#contact .container .contact__wrapper .contact .tel {
  font-size: 0.875rem;
  font-weight: 300;
  color: #FFFFFF;
}
#contact .container .contact__wrapper .contact .tel span {
  font-weight: 600;
  color: #FFFFFF;
}

@media screen and (max-width: 64rem) {
  #contact .container {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 3.5rem 0;
  }
  #contact .container .form__wrapper {
    place-items: center;
    text-align: center;
    gap: 2rem 0;
  }
  #contact .container .form__wrapper .title {
    place-items: center;
    gap: 1.2rem 0;
  }
  #contact .container .form__wrapper .title h1 {
    width: 65%;
    color: #FFFFFF;
  }
  #contact .container .form__wrapper .title p {
    width: 90%;
  }
  #contact .container .form__wrapper form {
    width: 100%;
    align-items: center;
  }
  #contact .container .form__wrapper form input {
    height: 4.188rem;
    border-radius: 2.125rem;
  }
  #contact .container .form__wrapper form button {
    width: 9.688rem;
    height: 3.125rem;
    border-radius: 1.563rem;
    margin-top: 1rem;
    font-size: 1.125rem;
  }
  #contact .container .contact__wrapper {
    place-items: center;
  }
  #contact .container .contact__wrapper .contact {
    place-items: center;
  }
}
footer {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0 0.8rem 0;
  background: #EFEFEF;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
footer .container img {
  width: 12%;
}
footer .container .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .container .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  font-family: "Sagoe";
  opacity: 1;
  color: rgba(69, 68, 69, 0.6823529412);
}
footer .container .copyrights .copy img {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer .container img {
    width: 35%;
  }
}
#support-banner {
  width: 100%;
  height: 5.5rem;
  background: #051429;
}

#units {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  padding-bottom: 3rem;
}
@media screen and (max-width: 64rem) {
  #units {
    padding: 3.5rem 0;
  }
}
#units .container {
  display: grid;
  place-items: center;
  gap: 4.5rem 0;
}
#units .container .units__wrapper {
  width: 85%;
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#units .container .units__wrapper .unit {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: start center;
  gap: 0 3rem;
}
#units .container .units__wrapper .unit .unit__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#units .container .units__wrapper .unit .unit__info .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.3rem 0;
  padding: 3rem 3.5rem;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  background: #EFEFEF;
}
#units .container .units__wrapper .unit .unit__info .info a {
  font-size: 1rem;
  color: #454445;
}
#units .container .units__wrapper .unit .unit__info .info a span {
  font-weight: 600;
  color: #C69F57;
}
#units .container .units__wrapper .unit .unit__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem 0;
}
#units .container .units__wrapper .unit .unit__content h1 {
  font-size: 1.25rem;
  color: #C69F57;
}
#units .container .units__wrapper .unit .unit__content p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #707070;
}
#units .container .units__wrapper .unit .unit__content .unit__socials {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
#units .container .units__wrapper .unit .unit__content .unit__socials a {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}
#units .container .units__wrapper .unit .unit__content .unit__socials a:hover {
  transform: rotateX(18deg) translateY(-0.2rem);
}
#units .container .units__wrapper .unit .unit__content .unit__socials a img {
  width: 1.65rem;
  height: 1.65rem;
}

@media screen and (max-width: 64rem) {
  #units .container {
    gap: 3.5rem 0;
  }
  #units .container .units__wrapper {
    width: 100%;
  }
  #units .container .units__wrapper .unit {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
  }
  #units .container .units__wrapper .unit .unit__info {
    order: 2;
  }
  #units .container .units__wrapper .unit .unit__info .info {
    gap: 0.85rem 0;
    padding: 2.5rem 1.5rem;
  }
  #units .container .units__wrapper .unit .unit__info .info a {
    font-size: 0.875rem;
  }
  #units .container .units__wrapper .unit .unit__content {
    order: 1;
    align-items: center;
  }
  #units .container .units__wrapper .unit .unit__content h1 {
    font-size: 1rem;
  }
  #units .container .units__wrapper .unit .unit__content .unit__socials {
    display: none;
  }
}
#popup {
  position: fixed;
  z-index: 9999;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease-out;
}
#popup[data-active=true] {
  visibility: visible;
  opacity: 1;
}
#popup[data-active=true] .popup__box {
  opacity: 1;
  transform: scale(1);
}
#popup .popup__box {
  width: 65%;
  height: 70%;
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  opacity: 0;
  transform: scale(0.9);
  border-radius: 0.6rem;
  overflow: hidden;
  background: #051429;
  transition: all 0.25s cubic-bezier(0.05, -0.01, 0, 1.52);
}
#popup .popup__box #close {
  display: grid;
  place-items: center;
  position: absolute;
  top: 8%;
  right: 5%;
  background: transparent;
  cursor: pointer;
}
#popup .popup__box #close img {
  width: 1rem;
  height: 1rem;
}
#popup .popup__box img {
  width: 75%;
}
#popup .popup__box .popup__content {
  display: grid;
  place-items: center start;
  gap: 0.8rem 0;
  padding-right: 3rem;
  color: #FFFFFF;
}
#popup .popup__box .popup__content h1 {
  color: #FFFFFF;
}
#popup .popup__box .popup__content p {
  font-size: 0.875rem;
}

@media screen and (min-width: 100rem) {
  #popup .popup__box {
    width: 50%;
    height: 50%;
  }
}
@media screen and (max-width: 64rem) {
  #popup .popup__box {
    width: 85%;
    height: fit-content;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 3rem 0;
    padding: 3rem 2.5rem;
  }
  #popup .popup__box #close {
    right: 8%;
  }
  #popup .popup__box .popup__content {
    place-items: center;
    text-align: center;
    padding-right: 0;
  }
}/*# sourceMappingURL=style.css.map */