@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@font-face {
  font-family: Franklin;
  src: url("../assets/fonts/franklin.otf");
}
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  background-position: center;
  background-repeat: no-repeat;
  list-style: none;
  text-decoration: none;
  object-fit: cover;
}

::-webkit-scrollbar {
  background-color: #bf8b7d;
}

::-webkit-scrollbar-thumb {
  background-color: #dab1a6;
  border-radius: 20px;
}

html {
  scroll-behavior: smooth;
  display: flex;
}

img {
  display: flex;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  position: relative;
}
img.social {
  width: 16px;
  height: 16px;
}

.container {
  width: 80%;
}

h1 {
  font-family: Franklin;
}

@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
}
@media (min-width: 100rem) {
  .container {
    width: 60%;
  }
}
nav {
  width: 100%;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 3;
  padding-top: 1rem;
}
nav[data-active=true] .container {
  padding: 2rem 6rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #bf8b7d;
}
nav[data-active=true] .container ul {
  gap: 0 3rem;
}
nav[data-active=true] .container ul li:hover {
  color: #fff;
  font-weight: 300;
}
nav[data-active=true] .container ul li:hover::after {
  background-color: #fff;
}
nav .container {
  width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 4rem;
  border-radius: 24px;
  transition: all 0.4s ease;
  padding: 0 6rem;
}
nav .container .logo {
  display: none;
  transition: all .5s ease;
}
nav .container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 3rem;
}
nav .container ul a li {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
}
nav .container ul a li::after {
  content: " ";
  display: block;
  width: 0%;
  height: 1px;
  color: #fff;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  transition: all 0.3s ease;
}
nav .container ul a li:hover {
  color: #fff;
}
nav .container ul a li:hover::after {
  width: 100%;
}
nav .container .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  padding-right: 0;
}
nav .container .socials a img {
  object-fit: fill;
  transition: all 0.3s ease;
  cursor: pointer;
}
nav .container .socials a img:hover {
  transform: scale(1.2);
}
nav .container #nav__btn {
  display: none;
}
nav .container #sidebar__nav {
  display: none;
}

@media (max-width: 1024px) {
  nav {
    background-color: #1c385f !important;
    transition: all 0.3s ease;
    place-items: center !important;
    padding-top: 0 !important;
  }
  nav[data-active=true] {
    background-color: transparent !important;
  }
  nav[data-active=true] .container {
    width: 90%;
    box-shadow: none;
    padding: 0 2rem;
    background-color: transparent;
  }
  nav[data-active=true] .container .logo{
    opacity: 0;
    visibility: hidden;
  }
  nav .container {
    width: 90%;
    padding: 0 1.5rem;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
  }
  nav .container .logo {
    display: flex;
    width: fit-content !important;
    height: 50px !important;
  }
  nav .container .logo img {
    width: fit-content !important;
    height: 50px !important;
    object-fit: fill;
  }
  nav .container ul {
    display: none;
  }
  nav .container .socials {
    display: none;
  }
  nav .container #nav__btn {
    display: flex;
  }
  nav .container #sidebar__nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -80%;
    width: 80%;
    background-color: #1c385f;
    display: grid;
    place-items: center;
    transition: all 0.5s ease;
    z-index: 998;
  }
  nav .container #sidebar__nav[data-active=true] {
    right: 0;
  }
  nav .container #sidebar__nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: start;
    width: 60%;
    gap: 4rem;
  }
  nav .container #sidebar__nav ul li {
    width: 130px;
    text-align: start;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  nav .container #sidebar__nav ul li::after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    bottom: -0.5rem;
    height: 2px;
    width: 100%;
    opacity: 10%;
    transition: all 0.3s ease-out;
  }
  nav .container #sidebar__nav #fechar {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 25px;
    left: 30px;
  }
}
@media (max-width: 375px) {
  nav {
    height: 5rem;
  }
  nav[data-active] {
    background-color: #dab1a6;
  }
  nav .container #sidebar__nav ul {
    gap: 3rem 0;
  }
  nav .container #sidebar__nav ul a li {
    font-size: 16px;
  }
}
header {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/home.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  header {
    background-image: url("../assets/images/home-mob.webp");
  }
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 3rem 0;
}
header .container img {
  width: fit-content;
  height: 68px;
}
header .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
header .container .text h1 {
  width: 25%;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}
header .container .text p {
  width: 30%;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
header .container .text a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background-color: #1c385f;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .container .text a button:hover {
  transform: translateY(-3px);
  color: #1c385f;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  header {
    padding: 0;
  }
  header .container {
    align-items: center;
    justify-content: end;
    height: 70vh;
    position: relative;
    padding-bottom: 3.5rem;
  }
  header .container img {
    display: none;
  }
  header .container .text {
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  header .container .text h1 {
    width: 100%;
    font-size: 24px;
  }
  header .container .text p {
    width: 95%;
    font-size: 14px;
    color: #fff !important;
  }
  header .container .text a {
    position: absolute;
    bottom: 0%;
  }
}
#after-header {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
#after-header .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  place-items: center;
}
#after-header .container .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem 0;
}
#after-header .container .title h1 {
  color: #bf8b7d;
  width: 70%;
  font-size: 26px;
  font-weight: 300;
}
#after-header .container .title p {
  color: #6D6D6D;
  width: 70%;
  font-size: 14px;
  line-height: 1.5;
}
#after-header .container .title .btn a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background-color: #bf8b7d;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
}
#after-header .container .title .btn a button:hover {
  transform: translateY(-3px);
  color: #bf8b7d;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#after-header .container .differential {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
}
#after-header .container .differential img {
  width: 50px;
  height: 50px;
}
#after-header .container .differential p {
  color: #6D6D6D;
  font-size: 14px;
  text-align: center;
  width: 90%;
}
#after-header .container .differential .one {
  width: 70%;
}

@media (max-width: 1024px) {
  #after-header {
    padding-top: 3rem;
  }
  #after-header .container {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #after-header .container .title {
    align-items: center;
  }
  #after-header .container .title h1 {
    font-size: 20px;
    text-align: center;
    width: 80%;
  }
  #after-header .container .title p {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }
  #after-header .container .title .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
  }
}
#who-we-are {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  place-items: center;
}
@media (max-width: 1024px) {
  #who-we-are {
    padding: 4.5rem 0;
  }
}
#who-we-are .container {
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 42px;
  width: 80%;
  place-items: center;
  gap: 0;
}
#who-we-are .container img {
  width: 100%;
  height: 435px !important;
  overflow: hidden;
  border-top-right-radius: 81px;
  border-bottom-right-radius: 81px;
  position: relative;
  left: 0;
  z-index: 2;
}
#who-we-are .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 2rem 0;
  background-color: #1c385f;
  padding: 0 1rem 0 3rem;
  border-radius: 0 42px 42px 0;
  height: fit-content;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
#who-we-are .container .text::after {
  content: "";
  display: block;
  width: 60px;
  height: 100%;
  background-color: #1c385f;
  top: 0;
  left: -60px;
  position: absolute;
}
#who-we-are .container .text h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 200;
}
#who-we-are .container .text p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  width: 90%;
}
#who-we-are .container .text a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background-color: #bf8b7d;
  cursor: pointer;
  transition: all 0.3s ease;
}
#who-we-are .container .text a button:hover {
  transform: translateY(-3px);
  color: #bf8b7d;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #who-we-are {
    place-items: center;
    padding: 0;
  }
  #who-we-are .container {
    overflow: visible;
    width: 100%;
    gap: 0rem;
    grid-template-columns: 1fr;
    background-color: #dab1a6;
    border-top-right-radius: 118px;
    border-top-left-radius: 118px;
  }
  #who-we-are .container img {
    width: 100%;
    height: 298px;
    top: 0%;
    z-index: 2;
    right: 0;
    left: auto;
    position: relative;
    border-top-left-radius: 81px;
    border-bottom-right-radius: 0;
  }
  #who-we-are .container .text {
    width: 100%;
    height: 100%;
    padding-top: 0;
    text-align: start;
    padding-right: 0;
    padding-top: 2rem;
    align-items: start;
    padding-left: 2rem;
    border-radius: 12px;
    overflow: visible;
  }
  #who-we-are .container .text::after {
    content: "";
    display: block;
    width: 60px;
    height: 90px;
    background-color: #1c385f;
    top: 0;
    left: 0px;
    position: absolute;
  }
  #who-we-are .container .text::before {
    content: "";
    display: block;
    width: 60px;
    height: 90px;
    background-color: #1c385f;
    top: -90px;
    right: 0px !important;
    position: absolute;
  }
  #who-we-are .container .text h1 {
    font-weight: 300;
    z-index: 999;
  }
  #who-we-are .container .text p {
    z-index: 999;
    width: 90%;
  }
}
#procedures {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  padding-top: 0rem;
}
@media (max-width: 1024px) {
  #procedures {
    padding: 4.5rem 0;
  }
}
#procedures .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.5rem;
  width: 80vw;
}
#procedures .container .title {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  padding-left: 0rem;
}
#procedures .container .title img {
  width: 46px;
  height: 46px;
}
#procedures .container .title h1 {
  color: #bf8b7d;
  font-size: 30px;
  font-weight: 300;
  width: 60%;
  line-height: 1;
}
#procedures .container .title h2 {
  color: #dab1a6;
  font-size: 20px;
  font-weight: 500;
}
#procedures .container .arrow {
  width: 100%;
  align-items: center;
  justify-content: end;
  right: 10%;
  bottom: 10px;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 0 1rem;
  cursor: pointer;
  z-index: 1 !important;
}
#procedures .container .arrow img {
  width: 24px;
  height: 13px;
}
#procedures .container .arrow .left {
  transform: rotate(180deg);
}
#procedures .container .aesthetic__swiper {
  width: 80vw;
}
#procedures .container .aesthetic__swiper .swiper-pagination {
  display: none;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
  width: 100%;
  height: 335px;
  background-color: #dab1a6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: #bf8b7d;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .textt h4 {
  color: #fff;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .textt p {
  color: #fff;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt {
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt h4 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
#procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt p {
  width: 90%;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1024px) {
  #procedures {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #E9E2DC;
    padding-top: 0;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #procedures {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #procedures .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 3rem;
  }
  #procedures .container .title {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    padding-left: 0;
  }
  #procedures .container .title img {
    width: 46px;
    height: 46px;
  }
  #procedures .container .title h1 {
    color: #bf8b7d;
    font-size: 34px;
    font-weight: 300;
    width: 90%;
    line-height: 1;
  }
  #procedures .container .title h2 {
    color: #dab1a6;
    font-size: 24px;
    font-weight: 500;
  }
  #procedures .container .arrow {
    width: 100%;
    align-items: center;
    justify-content: center;
    right: 0%;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    position: absolute;
    gap: 0 1rem;
    cursor: pointer;
    z-index: 99999;
  }
  #procedures .container .arrow img {
    width: 36px;
    height: 19px;
  }
  #procedures .container .arrow .left {
    transform: rotate(180deg);
  }
  #procedures .container .aesthetic__swiper {
    width: 80vw;
  }
  #procedures .container .aesthetic__swiper .swiper-pagination {
    display: none;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide {
    cursor: pointer;
    width: 100%;
    height: 335px;
    background-color: #dab1a6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    background-color: #bf8b7d;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .textt h4 {
    color: #fff;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .textt p {
    color: #fff;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt h4 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
  }
  #procedures .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt p {
    width: 90%;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
  }
}
.modal-container {
  position: fixed;
  z-index: 999999999;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.modal-container[data-active=true] {
  opacity: 1;
  pointer-events: all;
}
.modal-container .modal2 {
  background-color: #E9E2DC;
  width: 55%;
  height: 65%;
  text-align: center;
  padding-top: 0;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.modal-container .modal2 img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}
.modal-container .modal2 #fecharr {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
  right: 20px;
  top: 20px;
  background-color: #dab1a6;
  border-radius: 50%;
  z-index: 99;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-container .modal2 #fecharr img {
  width: 12px;
  height: 12px;
  z-index: 999;
}
.modal-container .modal2 .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0 3.5rem;
  text-align: start;
  gap: 1rem 0;
}
.modal-container .modal2 .text h1 {
  font-size: 24px;
  font-weight: 300;
  color: #dab1a6;
}
.modal-container .modal2 .text p {
  font-size: 14px;
  color: #6D6D6D;
}

@media (max-width: 1024px) {
  .modal-container .modal2 {
    width: 85%;
    height: fit-content;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .modal-container .modal2 .image {
    display: flex;
    height: 250px;
  }
  .modal-container .modal2 .text {
    padding: 3rem 2.5rem;
  }
}
#esthetic {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  place-items: center end;
}
@media (max-width: 1024px) {
  #esthetic {
    padding: 4.5rem 0;
  }
}
#esthetic .container {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
#esthetic .container .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem 0;
  padding-left: 0rem;
}
#esthetic .container .title img {
  width: 46px;
  height: 46px;
}
#esthetic .container .title h1 {
  color: #bf8b7d;
  font-size: 30px;
  font-weight: 400;
  width: 40%;
  line-height: 1;
}
#esthetic .container .title h2 {
  color: #dab1a6;
  font-size: 22px;
  font-weight: 400;
}
#esthetic .container .title p {
  color: #6D6D6D;
  font-size: 16px;
  font-weight: 400;
  width: 65%;
  line-height: 1.5;
}
#esthetic .container .esthetic__swiper {
  width: 80vw;
  z-index: 2;
}
#esthetic .container .esthetic__swiper .swiper-pagination {
  display: none;
}
#esthetic .container .esthetic__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 335px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #dab1a6;
  border-radius: 20px;
  cursor: pointer;
}
#esthetic .container .esthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: #bf8b7d;
}
#esthetic .container .esthetic__swiper .swiper-wrapper .swiper-slide .textt {
  padding: 10%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#esthetic .container .esthetic__swiper .swiper-wrapper .swiper-slide .textt h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
#esthetic .container .esthetic__swiper .swiper-wrapper .swiper-slide .textt p {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}
#esthetic .arrow {
  width: 100%;
  align-items: center;
  justify-content: end;
  right: 10%;
  top: 10%;
  display: flex;
  flex-direction: row;
  position: absolute;
  gap: 0 1rem;
  cursor: pointer;
  z-index: 1 !important;
}
#esthetic .arrow img {
  width: 24px;
  height: 13px;
}
#esthetic .arrow .left {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  #esthetic {
    place-items: center;
    padding-bottom: 8rem !important;
  }
  #esthetic .container {
    flex-direction: column;
    gap: 3rem 0;
    width: 80%;
  }
  #esthetic .container .title {
    padding-left: 0;
  }
  #esthetic .container .title h1 {
    width: 60%;
  }
  #esthetic .container .title p {
    width: 100%;
  }
  #esthetic .container .esthetic__swiper .swiper-wrapper .swiper-slide {
    z-index: 2 !important;
  }
  #esthetic .arrow {
    width: 100%;
    bottom: -75%;
    justify-content: center;
    align-items: center;
    right: 0;
  }
  #esthetic .arrow img {
    width: 36px;
    height: 19px;
  }
}
#structure {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #structure {
    padding: 4.5rem 0;
  }
}
#structure .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 4rem;
}
#structure .container img {
  width: 471px;
  height: 466px;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
  border: 12px solid #bf8b7d;
}
#structure .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#structure .container .text .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem 0;
}
#structure .container .text .title h1 {
  font-size: 24px;
  font-weight: 400;
  color: #bf8b7d;
}
#structure .container .text .title h2 {
  font-size: 15px;
  font-weight: 400;
  color: #dab1a6;
}
#structure .container .text p {
  width: 81%;
  font-size: 16px;
  font-weight: 300;
  color: #6D6D6D;
  line-height: 1.3;
}
#structure .container .text a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
}
#structure .container .text a button:hover {
  transform: translateY(-3px);
  color: transparent;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#structure .container .text a button:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  #structure {
    padding-top: 8rem;
    padding-bottom: 0;
  }
  #structure .container {
    grid-template-columns: 1fr;
    position: relative;
    gap: 4rem 0;
  }
  #structure .container img {
    width: 318px;
    height: 315px;
  }
  #structure .container .text {
    align-items: center;
  }
  #structure .container .text .title {
    position: absolute;
    top: -12%;
    left: 0;
  }
  #structure .container .text p {
    width: 92%;
  }
}
#results {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #BCAA9C;
}
@media (max-width: 1024px) {
  #results {
    padding: 4.5rem 0;
  }
}
#results .container {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 3rem 0;
}
#results .container .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#results .container .title h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  width: 30%;
  line-height: 1.3;
}
#results .container .title p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  width: 55%;
}
#results .container .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.5rem;
  width: 100%;
}
#results .container .images img {
  width: 100%;
  height: 321px;
}
#results .container .results__swiper {
  display: none;
}
#results .container .arrow {
  display: none;
}
#results .container .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#results .container .btn a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
#results .container .btn a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #results .container .title h1 {
    width: 70%;
    font-size: 24px;
  }
  #results .container .title p {
    width: 95%;
    font-size: 16px;
  }
  #results .container .images {
    grid-template-columns: 1fr;
    gap: 1rem 0;
    display: none;
  }
  #results .container .results__swiper {
    display: flex;
    width: 80vw;
  }
  #results .container .results__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 321px;
  }
  #results .container .results__swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  #results .container .arrow {
    width: 100%;
    align-items: center;
    justify-content: center;
    right: 0%;
    top: 81%;
    display: flex;
    flex-direction: row;
    position: absolute;
    gap: 0 1rem;
    cursor: pointer;
    z-index: 1;
  }
  #results .container .arrow img {
    width: 36px;
    height: 19px;
  }
  #results .container .arrow .left {
    transform: rotate(180deg);
  }
  #results .container .btn {
    margin-top: 2rem;
  }
}
#depoiments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  place-items: center end;
}
@media (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
#depoiments .container {
  width: 90%;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1.8fr;
  position: relative;
}
#depoiments .container .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.8rem 0;
}
#depoiments .container .title img {
  width: 46px;
  height: 46px;
}
#depoiments .container .title h1 {
  font-size: 26px;
  font-weight: 300;
  color: #bf8b7d;
  width: 80%;
  line-height: 1.3;
}
#depoiments .container .title p {
  font-size: 16px;
  font-weight: 300;
  color: #6D6D6D;
  width: 80%;
  line-height: 1.5;
}
#depoiments .container .depoiments__swiper {
  width: 60vw;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 227px;
  background-color: #dab1a6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: #bf8b7d;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
  padding: 0 1rem;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide .text p {
  width: 85%;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
#depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide .text h2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
#depoiments .arrow {
  width: 100%;
  align-items: center;
  justify-content: end;
  right: 10%;
  top: 12%;
  display: flex;
  flex-direction: row;
  position: absolute;
  gap: 0 1rem;
  cursor: pointer;
  z-index: 1 !important;
}
#depoiments .arrow img {
  width: 24px;
  height: 13px;
}
#depoiments .arrow .left {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  #depoiments {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    color: #E9E2DC;
    place-items: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #depoiments .container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    position: relative;
    gap: 3rem 0;
  }
  #depoiments .container .title {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem 0;
  }
  #depoiments .container .title img {
    width: 46px;
    height: 46px;
  }
  #depoiments .container .title h1 {
    font-size: 24px;
    font-weight: 400;
    color: #bf8b7d;
    width: 100%;
    line-height: 1;
  }
  #depoiments .container .title p {
    font-size: 14px;
    font-weight: 300;
    color: #6D6D6D;
    width: 90%;
  }
  #depoiments .container .depoiments__swiper {
    width: 80vw;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 287px;
    background-color: #dab1a6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    background-color: #bf8b7d;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem 0;
    padding: 0 1rem;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide .text p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
  }
  #depoiments .container .depoiments__swiper .swiper-wrapper .swiper-slide .text h2 {
    width: 70%;
    font-size: 16px;
    font-weight: 600;
  }
  #depoiments .arrow {
    width: 80%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0 1rem;
    display: flex;
    position: absolute;
    bottom: -85%;
    cursor: pointer;
    z-index: 1 !important;
  }
  #depoiments .arrow img {
    width: 36px;
    height: 19px;
  }
  #depoiments .arrow .left {
    transform: rotate(180deg);
  }
}
#team {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  #team {
    padding: 4.5rem 0;
  }
}
#team .arrow {
  display: none;
}
#team .arroww {
  display: none;
}
#team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem 0;
  width: 80vw;
}
#team .container .team__swiper {
  width: 80vw;
  display: flex;
  align-items: start;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 331px;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide .dr {
  position: relative;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide .dr img {
  width: 100%;
  height: 331px;
  border-radius: 9px;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide .dr:hover .text {
  opacity: 1;
  height: fit-content;
  padding: 5% 0;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide .dr .text {
  position: absolute;
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: .2rem 0;
  background-color: #1c385f;
  bottom: 0;
  border-radius: 9px;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide:hover .dr .text h1 {
  font-size: 14px;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide:hover .dr .text p {
  font-size: 12px;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide .dr .text h1 {
  width: 90%;
  color: #fff;
  font-size: 0;
  font-weight: 500;
  font-family: Poppins;
  transition: all .5s ease;
}
#team .container .team__swiper .swiper-wrapper .swiper-slide .dr .text p {
  color: #fff;
  font-size: 0;
  font-weight: 300;
  width: 60%;
  transition: all .5s ease;
}
#team .container .title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem 0;
}
#team .container .title h1 {
  font-size: 26px;
  font-weight: 300;
  color: #bf8b7d;
  width: 100%;
  line-height: 1.3;
}
#team .container .title h2 {
  font-size: 22px;
  font-weight: 400;
  color: #dab1a6;
}

@media (max-width: 1024px) {
  #team .arroww {
    display: none;
  }
  #team .container {
    align-items: center;
  }
  #team .container .title {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
  }
  #team .container .title h1 {
    font-size: 28px;
    font-weight: 400;
    color: #bf8b7d;
    width: 100%;
    line-height: 1;
  }
  #team .container .title h2 {
    font-size: 24px;
    font-weight: 400;
    color: #dab1a6;
  }
  #team .container .images {
    display: none;
  }
  #team .container .team__swiper {
    display: flex;
    width: 80vw;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 431px;
    position: relative;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr {
    width: 100%;
    height: 100%;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr img {
    width: 100%;
    height: 100%;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr:hover .text {
    height: 112px;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr .text {
    background-color: #1c385f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 112px;
    border-radius: 9px;
    gap: 0.5rem 0;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr:hover .text h1 {
    font-size: 16px;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr:hover .text p {
    font-size: 14px;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr .text h1 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  #team .container .team__swiper .swiper-wrapper .swiper-slide .dr .text p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    width: 60%;
  }
  #team .arrow {
    display: flex;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
    position: relative;
    top: 3rem;
  }
  #team .arrow img {
    width: 36px;
    height: 19px;
  }
  #team .arrow .left {
    transform: rotate(180deg);
  }
}
#doubt {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #doubt {
    padding: 4.5rem 0;
  }
}
#doubt .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  place-items: center;
  gap: 0 10rem;
}
#doubt .container .title-mbl {
  display: none;
}
#doubt .container .all-doubt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
  width: 100%;
}
#doubt .container .all-doubt .all {
  background-color: #dab1a6;
  width: 100%;
  height: 78px;
  transition: all 0.3s ease;
  border-radius: 20px;
  padding: 0 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
#doubt .container .all-doubt .all[data-active=true] {
  height: fit-content;
  padding-bottom: 3rem;
  background-color: #bf8b7d;
  transition: all 0.3s ease;
}
#doubt .container .all-doubt .all[data-active=true] .top {
  transition: all 0.3s ease;
}
#doubt .container .all-doubt .all[data-active=true] .top img {
  transform: rotateZ(180deg);
}
#doubt .container .all-doubt .all[data-active=true] .text {
  display: flex;
}
#doubt .container .all-doubt .all .top {
  width: 100%;
  height: 78px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
#doubt .container .all-doubt .all .top h2 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
#doubt .container .all-doubt .all .top img {
  width: 13px;
  height: 7px;
  transition: all 0.5s ease;
}
#doubt .container .all-doubt .all .text {
  display: none;
  padding: 0rem;
  transition: all 0.3s ease;
}
#doubt .container .all-doubt .all .text p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
}
#doubt .container .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#doubt .container .title h1 {
  color: #bf8b7d;
  font-size: 28px;
  font-weight: 300;
  width: 75%;
  line-height: 1.2;
}
#doubt .container .title p {
  color: #6D6D6D;
  font-size: 14px;
  font-weight: 300;
  width: 70%;
  line-height: 1.5;
}
#doubt .container .title a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background-color: #bf8b7d;
  cursor: pointer;
  transition: all 0.3s ease;
}
#doubt .container .title a button:hover {
  transform: translateY(-3px);
  color: #bf8b7d;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #doubt .container {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  #doubt .container .title-mbl {
    display: flex;
  }
  #doubt .container .title-mbl h1 {
    font-size: 34px;
    font-weight: 400;
    color: #bf8b7d;
    width: 100%;
  }
  #doubt .container .all-doubt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    width: 100%;
  }
  #doubt .container .all-doubt .all {
    background-color: #dab1a6;
    width: 100%;
    height: 78px;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 0 2rem;
  }
  #doubt .container .all-doubt .all[data-active=true] {
    height: fit-content;
    padding-bottom: 3rem;
    background-color: #bf8b7d;
  }
  #doubt .container .all-doubt .all[data-active=true] .top img {
    transform: rotateZ(180deg);
  }
  #doubt .container .all-doubt .all[data-active=true] .text {
    display: flex;
  }
  #doubt .container .all-doubt .all .top {
    width: 100%;
    height: 78px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 1rem;
  }
  #doubt .container .all-doubt .all .top h1 {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
  }
  #doubt .container .all-doubt .all .top img {
    width: 13px;
    height: 7px;
    transition: all 0.5s ease;
  }
  #doubt .container .all-doubt .all .text {
    display: none;
    padding: 0rem;
  }
  #doubt .container .all-doubt .all .text p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
  }
  #doubt .container .title h1 {
    display: none;
  }
  #doubt .container .title p {
    font-size: 16px;
    width: 90%;
  }
}
#contact {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
}
@media (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
#contact .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  width: 100%;
}
#contact .container .text {
  background-color: #bf8b7d;
  width: 100%;
  height: 100%;
  padding-left: 20%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#contact .container .text .title {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#contact .container .text .title h1 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  width: 60%;
}
#contact .container .text .title p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  width: 80%;
  line-height: 1.5;
}
#contact .container .text .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 1rem;
}
#contact .container .text .socials a img {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}
#contact .container .text .socials a img:hover {
  transform: scale(1.2);
}
#contact .container .text .socials a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #dab1a6;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
#contact .container .text .socials a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #dab1a6;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact .container .text .socials a button:hover {
  font-weight: 400;
}
#contact .container .text .address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#contact .container .text .address .all {
  width: 55%;
  transition: all 0.3s ease;
}
#contact .container .text .address .all:hover {
  transform: translateY(-3px);
}
#contact .container .text .address .all a {
  color: #fff;
  font-size: 14px;
  font-size: 300 !important;
  cursor: pointer;
}
#contact .container .text .address .all a span {
  font-size: 14px;
  font-weight: 600;
  padding-right: 0.5rem;
}
#contact .container .form__wrapper {
  background-color: #dab1a6;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact .container .form__wrapper form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
  width: 352px;
}
#contact .container .form__wrapper form .title2 h1 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
#contact .container .form__wrapper form input, #contact .container .form__wrapper form select {
  width: 100%;
  height: 57px;
  border-radius: 11px;
  padding-left: 1rem;
  color: #bf8b7d;
}
#contact .container .form__wrapper form input::placeholder, #contact .container .form__wrapper form select::placeholder {
  color: #dab1a6;
  font-size: 13px;
  font-weight: 400;
}
#contact .container .form__wrapper form textarea {
  width: 100%;
  height: 153px;
  border-radius: 11px;
  padding-left: 1rem;
  padding-top: 1rem;
  color: #bf8b7d;
}
#contact .container .form__wrapper form textarea::placeholder {
  color: #dab1a6;
  font-size: 13px;
  font-weight: 400;
}
#contact .container .form__wrapper form .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
#contact .container .form__wrapper form .btn button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #dab1a6;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 92px;
}
#contact .container .form__wrapper form .btn button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #dab1a6;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #contact {
    padding: 0;
  }
  #contact .container {
    grid-template-columns: 1fr;
  }
  #contact .container .text {
    background-color: #bf8b7d;
    width: 100%;
    height: 100%;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 3rem 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #contact .container .text .title {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
  }
  #contact .container .text .title h1 {
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    width: 70%;
  }
  #contact .container .text .title p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    width: 70%;
  }
  #contact .container .text .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0 1rem;
  }
  #contact .container .text .socials a img {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
  }
  #contact .container .text .socials a img:hover {
    transform: scale(1.2);
  }
  #contact .container .text .socials a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #bf8b7d;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #contact .container .text .socials a button:hover {
    transform: translateY(-3px);
    color: #fff;
    border: none;
    background-color: #bf8b7d;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #contact .container .text .address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
  }
  #contact .container .text .address .all {
    width: 80%;
  }
  #contact .container .text .address .all a {
    color: #fff;
    font-size: 14px;
    font-size: 300 !important;
  }
  #contact .container .text .address .all a span {
    font-size: 14px;
    font-weight: 700;
    padding-right: 0.5rem;
  }
  #contact .container .form__wrapper {
    background-color: #dab1a6;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #contact .container .form__wrapper form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    width: 352px;
  }
  #contact .container .form__wrapper form .title2 h1 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
  }
  #contact .container .form__wrapper form input {
    width: 100%;
    height: 57px;
    border-radius: 11px;
    padding-left: 1rem;
    color: #bf8b7d;
  }
  #contact .container .form__wrapper form input::placeholder {
    color: #dab1a6;
    font-size: 13px;
    font-weight: 400;
  }
  #contact .container .form__wrapper form textarea {
    width: 100%;
    height: 153px;
    border-radius: 11px;
    padding-left: 1rem;
    padding-top: 1rem;
    color: #bf8b7d;
  }
  #contact .container .form__wrapper form textarea::placeholder {
    color: #dab1a6;
    font-size: 13px;
    font-weight: 400;
  }
  #contact .container .form__wrapper form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #contact .container .form__wrapper form .btn button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #dab1a6;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 154px;
  }
  #contact .container .form__wrapper form .btn button:hover {
    transform: translateY(-3px);
    color: #fff;
    border: none;
    background-color: #dab1a6;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
#support {
  width: 100%;
  height: 530px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/fotos-novas/pag-apoio/banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #support {
    background-image: url("../assets/fotos-novas/pag-apoio/banner.webp");
  }
}
#support .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 4rem 0;
  position: relative;
  height: 100%;
}
#support .container img {
  width: 73px;
  height: 92px;
}
#support .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 0.5rem 0;
  position: absolute;
  bottom: 20%;
  height: 100%;
}
#support .container .text h1 {
  width: 70%;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
}
#support .container .text p {
  width: 70%;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}
#support .container .text a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background-color: #bf8b7d;
  cursor: pointer;
  transition: all 0.3s ease;
}
#support .container .text a button:hover {
  transform: translateY(-3px);
  color: #bf8b7d;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #support {
    width: 100%;
    height: 530px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background-image: url("../assets/fotos-novas/pag-apoio/banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 1024px) and (max-width: 64rem) {
  #support {
    background-image: url("../assets/fotos-novas/pag-apoio/banner.webp");
  }
}
@media (max-width: 1024px) {
  #support .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 4rem 0;
    position: relative;
    height: 100%;
  }
  #support .container img {
    width: 73px;
    height: 92px;
  }
  #support .container .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 1rem 0;
    position: absolute;
    bottom: 15%;
    height: 100%;
  }
  #support .container .text h1 {
    width: 100%;
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
  }
  #support .container .text p {
    width: 100%;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
  }
  #support .container .text a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    background-color: #bf8b7d;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #support .container .text a button:hover {
    transform: translateY(-3px);
    color: #bf8b7d;
    border: none;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
#dras {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E9E2DC;
}
@media (max-width: 1024px) {
  #dras {
    padding: 4.5rem 0;
  }
}
#dras .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8rem 0;
}
#dras .container .daellia {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0 2rem;
}
#dras .container .daellia .photo {
  width: 100%;
  height: 415px;
  position: relative;
}
#dras .container .daellia .photo img {
  width: 100%;
  height: 100%;
}
#dras .container .daellia .photo .text {
  background-color: #dab1a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0;
  padding: 7% 0%;
  border-radius: 14px;
  position: absolute;
  bottom: 9%;
  right: -15%;
  width: 239px;
}
#dras .container .daellia .photo .text h2 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
#dras .container .daellia .photo .text h3 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
#dras .container .daellia .photo .text p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  width: 80%;
  text-align: center;
}
#dras .container .daellia .about-daellia {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.7rem 0;
  padding: 0 11%;
}
#dras .container .daellia .about-daellia h1 {
  font-size: 24px;
  font-weight: 300;
  color: #bf8b7d;
}
#dras .container .daellia .about-daellia p {
  font-size: 14px;
  font-weight: 300;
  color: #6D6D6D;
}
#dras .container .daellia .about-daellia a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: #E9E2DC;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  width: 182px;
  height: 31px;
}
#dras .container .daellia .about-daellia a button:hover {
  transform: translateY(-3px);
  color: #E9E2DC;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#dras .container .daellia .about-daellia a button:hover {
  background-color: #dab1a6;
}
#dras .container .daellia .about-daellia a button img {
  width: 13px;
  height: 13px;
}
#dras .container .camila {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 0 2rem;
}
#dras .container .camila .photo {
  width: 100%;
  height: 415px;
  position: relative;
  order: 2;
}
#dras .container .camila .photo img {
  width: 100%;
  height: 100%;
}
#dras .container .camila .photo .text {
  background-color: #dab1a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0;
  padding: 7% 0%;
  border-radius: 14px;
  position: absolute;
  bottom: 9%;
  right: -15%;
  width: 267px;
}
#dras .container .camila .photo .text h2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
#dras .container .camila .photo .text h3 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
#dras .container .camila .photo .text p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  width: 80%;
  text-align: center;
}
#dras .container .camila .about-camila {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.7rem 0;
  padding: 0 11%;
  order: 1;
}
#dras .container .camila .about-camila h1 {
  font-size: 24px;
  font-weight: 300;
  color: #bf8b7d;
}
#dras .container .camila .about-camila p {
  font-size: 14px;
  font-weight: 300;
  color: #6D6D6D;
}
#dras .container .camila .about-camila a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: #E9E2DC;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  width: 182px;
  height: 31px;
}
#dras .container .camila .about-camila a button:hover {
  transform: translateY(-3px);
  color: #E9E2DC;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#dras .container .camila .about-camila a button:hover {
  background-color: #dab1a6;
}
#dras .container .camila .about-camila a button img {
  width: 13px;
  height: 13px;
}
#dras .container .karenina {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0 2rem;
}
#dras .container .karenina .photo {
  width: 100%;
  height: 415px;
  position: relative;
}
#dras .container .karenina .photo img {
  width: 100%;
  height: 100%;
}
#dras .container .karenina .photo .text {
  background-color: #dab1a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0;
  padding: 7% 0%;
  border-radius: 14px;
  position: absolute;
  bottom: 9%;
  right: -15%;
  width: 239px;
}
#dras .container .karenina .photo .text h2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
#dras .container .karenina .photo .text h3 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
#dras .container .karenina .photo .text p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  width: 80%;
  text-align: center;
}
#dras .container .karenina .about-karenina {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.7rem 0;
  padding: 0 11%;
}
#dras .container .karenina .about-karenina h1 {
  font-size: 24px;
  font-weight: 300;
  color: #bf8b7d;
}
#dras .container .karenina .about-karenina p {
  font-size: 14px;
  font-weight: 300;
  color: #6D6D6D;
}
#dras .container .karenina .about-karenina a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: #E9E2DC;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  width: 182px;
  height: 31px;
}
#dras .container .karenina .about-karenina a button:hover {
  transform: translateY(-3px);
  color: #E9E2DC;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#dras .container .karenina .about-karenina a button:hover {
  background-color: #dab1a6;
}
#dras .container .karenina .about-karenina a button img {
  width: 13px;
  height: 13px;
}
#dras .container .renata {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 0 2rem;
}
#dras .container .renata .photo {
  width: 100%;
  height: 415px;
  position: relative;
  order: 2;
}
#dras .container .renata .photo img {
  width: 100%;
  height: 100%;
}
#dras .container .renata .photo .text {
  background-color: #dab1a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0;
  padding: 7% 0%;
  border-radius: 14px;
  position: absolute;
  bottom: 9%;
  right: -15%;
  width: 267px;
}
#dras .container .renata .photo .text h2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
#dras .container .renata .photo .text h3 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
#dras .container .renata .photo .text p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  width: 75%;
  text-align: center;
}
#dras .container .renata .about-renata {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.7rem 0;
  padding: 0 11%;
  order: 1;
}
#dras .container .renata .about-renata h1 {
  font-size: 24px;
  font-weight: 300;
  color: #bf8b7d;
}
#dras .container .renata .about-renata p {
  font-size: 14px;
  font-weight: 300;
  color: #6D6D6D;
}
#dras .container .renata .about-renata a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: #E9E2DC;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  width: 182px;
  height: 31px;
}
#dras .container .renata .about-renata a button:hover {
  transform: translateY(-3px);
  color: #E9E2DC;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#dras .container .renata .about-renata a button:hover {
  background-color: #dab1a6;
}
#dras .container .renata .about-renata a button img {
  width: 13px;
  height: 13px;
}
#dras .container .ana {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0 2rem;
}
#dras .container .ana .photo {
  width: 100%;
  height: 415px;
  position: relative;
}
#dras .container .ana .photo img {
  width: 100%;
  height: 100%;
}
#dras .container .ana .photo .text {
  background-color: #dab1a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0;
  padding: 7% 0%;
  border-radius: 14px;
  position: absolute;
  bottom: 9%;
  right: -15%;
  width: 239px;
}
#dras .container .ana .photo .text h2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
#dras .container .ana .photo .text h3 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
#dras .container .ana .photo .text p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  width: 60.2%;
  text-align: center;
}
#dras .container .ana .about-ana {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.7rem 0;
  padding: 0 11%;
}
#dras .container .ana .about-ana h1 {
  font-size: 24px;
  font-weight: 300;
  color: #bf8b7d;
}
#dras .container .ana .about-ana p {
  font-size: 14px;
  font-weight: 300;
  color: #6D6D6D;
}
#dras .container .ana .about-ana a button {
  width: 176px;
  height: 41px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #bf8b7d;
  background-color: #E9E2DC;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bf8b7d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  width: 182px;
  height: 31px;
}
#dras .container .ana .about-ana a button:hover {
  transform: translateY(-3px);
  color: #E9E2DC;
  border: none;
  background-color: #bf8b7d;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#dras .container .ana .about-ana a button:hover {
  background-color: #dab1a6;
}
#dras .container .ana .about-ana a button img {
  width: 13px;
  height: 13px;
}

@media (max-width: 1024px) {
  #dras {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #E9E2DC;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #dras {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #dras .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
  }
  #dras .container .daellia {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 80vw;
  }
  #dras .container .daellia .photo {
    width: 100%;
    height: 415px;
    position: relative;
    order: 1;
  }
  #dras .container .daellia .photo img {
    width: 100%;
    height: 100%;
  }
  #dras .container .daellia .photo .text {
    background-color: #dab1a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0;
    padding: 7% 0%;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
  }
  #dras .container .daellia .photo .text h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  #dras .container .daellia .photo .text h2 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  #dras .container .daellia .photo .text p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    width: 80%;
    text-align: center;
  }
  #dras .container .daellia .about-daellia {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.7rem 0;
    padding: 0%;
    order: 2;
  }
  #dras .container .daellia .about-daellia h1 {
    font-size: 24px;
    font-weight: 600;
    color: #bf8b7d;
  }
  #dras .container .daellia .about-daellia p {
    font-size: 14px;
    font-weight: 300;
    color: #6D6D6D;
  }
  #dras .container .daellia .about-daellia a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #bf8b7d;
    background-color: #E9E2DC;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #bf8b7d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
    width: 182px;
    height: 31px;
  }
  #dras .container .daellia .about-daellia a button:hover {
    transform: translateY(-3px);
    color: #E9E2DC;
    border: none;
    background-color: #bf8b7d;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #dras .container .daellia .about-daellia a button:hover {
    background-color: #dab1a6;
  }
  #dras .container .daellia .about-daellia a button img {
    width: 13px;
    height: 13px;
  }
  #dras .container .camila {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 80vw;
  }
  #dras .container .camila .photo {
    width: 100%;
    height: 415px;
    position: relative;
    order: 1;
  }
  #dras .container .camila .photo img {
    width: 100%;
    height: 100%;
  }
  #dras .container .camila .photo .text {
    background-color: #dab1a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0;
    padding: 7% 0%;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
  }
  #dras .container .camila .photo .text h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  #dras .container .camila .photo .text h2 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  #dras .container .camila .photo .text p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    width: 80%;
    text-align: center;
  }
  #dras .container .camila .about-camila {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.7rem 0;
    padding: 0%;
    order: 2;
  }
  #dras .container .camila .about-camila h1 {
    font-size: 24px;
    font-weight: 600;
    color: #bf8b7d;
  }
  #dras .container .camila .about-camila p {
    font-size: 14px;
    font-weight: 300;
    color: #6D6D6D;
  }
  #dras .container .camila .about-camila a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #bf8b7d;
    background-color: #E9E2DC;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #bf8b7d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
    width: 182px;
    height: 31px;
  }
  #dras .container .camila .about-camila a button:hover {
    transform: translateY(-3px);
    color: #E9E2DC;
    border: none;
    background-color: #bf8b7d;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #dras .container .camila .about-camila a button:hover {
    background-color: #dab1a6;
  }
  #dras .container .camila .about-camila a button img {
    width: 13px;
    height: 13px;
  }
  #dras .container .karenina {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 80vw;
  }
  #dras .container .karenina .photo {
    width: 100%;
    height: 415px;
    position: relative;
    order: 1;
  }
  #dras .container .karenina .photo img {
    width: 100%;
    height: 100%;
  }
  #dras .container .karenina .photo .text {
    background-color: #dab1a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0;
    padding: 7% 0%;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
  }
  #dras .container .karenina .photo .text h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  #dras .container .karenina .photo .text h2 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  #dras .container .karenina .photo .text p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    width: 80%;
    text-align: center;
  }
  #dras .container .karenina .about-karenina {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.7rem 0;
    padding: 0%;
    order: 2;
  }
  #dras .container .karenina .about-karenina h1 {
    font-size: 24px;
    font-weight: 600;
    color: #bf8b7d;
  }
  #dras .container .karenina .about-karenina p {
    font-size: 14px;
    font-weight: 300;
    color: #6D6D6D;
  }
  #dras .container .karenina .about-karenina a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #bf8b7d;
    background-color: #E9E2DC;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #bf8b7d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
    width: 182px;
    height: 31px;
  }
  #dras .container .karenina .about-karenina a button:hover {
    transform: translateY(-3px);
    color: #E9E2DC;
    border: none;
    background-color: #bf8b7d;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #dras .container .karenina .about-karenina a button:hover {
    background-color: #dab1a6;
  }
  #dras .container .karenina .about-karenina a button img {
    width: 13px;
    height: 13px;
  }
  #dras .container .renata {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 80vw;
  }
  #dras .container .renata .photo {
    width: 100%;
    height: 415px;
    position: relative;
    order: 1;
  }
  #dras .container .renata .photo img {
    width: 100%;
    height: 100%;
  }
  #dras .container .renata .photo .text {
    background-color: #dab1a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0;
    padding: 7% 0%;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
  }
  #dras .container .renata .photo .text h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  #dras .container .renata .photo .text h2 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  #dras .container .renata .photo .text p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  #dras .container .renata .about-renata {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.7rem 0;
    padding: 0 !important;
    order: 2;
  }
  #dras .container .renata .about-renata h1 {
    font-size: 24px;
    font-weight: 600;
    color: #bf8b7d;
  }
  #dras .container .renata .about-renata p {
    font-size: 14px;
    font-weight: 300;
    color: #6D6D6D;
    width: 100%;
  }
  #dras .container .renata .about-renata a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #bf8b7d;
    background-color: #E9E2DC;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #bf8b7d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
    width: 182px;
    height: 31px;
  }
  #dras .container .renata .about-renata a button:hover {
    transform: translateY(-3px);
    color: #E9E2DC;
    border: none;
    background-color: #bf8b7d;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #dras .container .renata .about-renata a button:hover {
    background-color: #dab1a6;
  }
  #dras .container .renata .about-renata a button img {
    width: 13px;
    height: 13px;
  }
  #dras .container .ana {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 80vw;
  }
  #dras .container .ana .photo {
    width: 100%;
    height: 415px;
    position: relative;
    order: 1;
  }
  #dras .container .ana .photo img {
    width: 100%;
    height: 100%;
  }
  #dras .container .ana .photo .text {
    background-color: #dab1a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0;
    padding: 7% 0%;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
  }
  #dras .container .ana .photo .text h1 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  #dras .container .ana .photo .text h2 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  #dras .container .ana .photo .text p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    width: 80%;
    text-align: center;
  }
  #dras .container .ana .about-ana {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.7rem 0;
    padding: 0%;
    order: 2;
  }
  #dras .container .ana .about-ana h1 {
    font-size: 24px;
    font-weight: 600;
    color: #bf8b7d;
  }
  #dras .container .ana .about-ana p {
    font-size: 14px;
    font-weight: 300;
    color: #6D6D6D;
  }
  #dras .container .ana .about-ana a button {
    width: 176px;
    height: 41px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 400;
    color: #bf8b7d;
    background-color: #E9E2DC;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #bf8b7d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
    width: 182px;
    height: 31px;
  }
  #dras .container .ana .about-ana a button:hover {
    transform: translateY(-3px);
    color: #E9E2DC;
    border: none;
    background-color: #bf8b7d;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #dras .container .ana .about-ana a button:hover {
    background-color: #dab1a6;
  }
  #dras .container .ana .about-ana a button img {
    width: 13px;
    height: 13px;
  }
}
#img {
  width: 100%;
  height: 438px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/Grupo 53.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 64rem) {
  #img {
    background-image: url("../assets/images/Grupo 53.webp");
  }
}

@media (max-width: 1024px) {
  #img {
    background-position: 14%;
  }
}/*# sourceMappingURL=style.css.map */