@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap");
* {
  font-family: "Mulish", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  text-decoration: none;
  list-style: none;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
* ::-webkit-scrollbar {
  width: 10px;
  background-color: #202020;
}
* ::-webkit-scrollbar-thumb {
  background-color: #358085;
  border-radius: 3px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

.container {
  width: 80%;
}
@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
}
@media (max-width: 100rem) {
  .container {
    width: 60%;
  }
}

img {
  display: flex;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  position: relative;
}
img.seta {
  width: 49px;
  height: 49px;
}
img.sb {
  width: 15px;
  height: 10px;
}
img.social {
  width: 27px;
  height: 27px;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
h1.dark {
  color: #202020;
}
h1.big {
  font-size: 40px;
  color: #fff;
}
h1.small {
  font-size: 25px;
}

h2 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
p.dark {
  color: #202020;
}
p.medio {
  font-size: 18px;
}
p.small {
  font-size: 20px;
}

nav {
  width: 100%;
  height: 5.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: fixed;
  z-index: 99999999;
  top: 0;
  transition: all 0.5s ease;
}
nav.support .container .socials .back button {
  background-color: transparent;
  border: 2px solid #E1E1E1;
  width: 154px;
  height: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.3rem;
  border-radius: 7px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
nav.support .container .socials .back button:hover {
  transform: translateY(-3px);
}
nav.support .container .socials .back button img {
  width: 12px;
  height: 8px;
  transform: rotateY(180deg);
}
nav .container {
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1098039216);
  backdrop-filter: blur(23px);
  border-radius: 0 0 20px 20px;
  padding: 0 5rem;
}
nav .container .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
}
nav .container .socials a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: all 0.3s ease;
}
nav .container .socials a img {
  width: 21px;
  height: 21px;
  transition: all 0.3s ease;
}
nav .container .socials a img:hover {
  transform: scale(0.9);
}
nav .container .socials a:hover {
  transform: translateY(-3px);
}
nav .container .logo {
  width: 121px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .container .logo img {
  width: 121px;
  height: 41px;
}
nav .container .menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
}
nav .container .menu a {
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
nav .container .menu a:hover {
  transform: translateY(-3px);
}
nav .container .menu #nav__btn {
  width: 25px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
  z-index: 999;
  transition: all 0.8s ease;
  position: relative;
  right: 0%;
  cursor: pointer;
}
nav .container .menu #nav__btn .line {
  display: block;
  width: 18px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: all 0.5s ease;
  border-radius: 4px;
}
nav .container .menu #nav__btn[data-active=true] {
  position: relative;
  z-index: 9999;
  transition: all 0.5s ease;
}
nav .container .menu #nav__btn[data-active=true] .line {
  background-color: #fff;
  transition: all 0.5s ease;
}

#sidebar__nav {
  position: fixed;
  z-index: 99999999;
  top: 0;
  bottom: 0;
  visibility: hidden;
  width: 30%;
  background-color: #358085;
  right: -30%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
#sidebar__nav .btn {
  position: absolute;
  top: 5%;
  right: 85%;
}
#sidebar__nav .btn img {
  height: 20px;
  width: 20px;
  cursor: pointer;
}
#sidebar__nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#sidebar__nav ul a li {
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
}
#sidebar__nav ul a li::after {
  content: " ";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #E1E1E1;
  color: #0D0D0D;
  bottom: -5px;
  display: flex;
  align-items: start;
  transition: all 0.3s ease;
}
#sidebar__nav ul a li:hover::after {
  width: 70%;
}
#sidebar__nav[data-active=true] {
  visibility: visible;
  right: 0;
}

@media (max-width: 1024px) {
  #sidebar__nav {
    position: fixed;
    z-index: 99999;
    top: 0;
    bottom: 0;
    visibility: hidden;
    width: 75%;
    background-color: #0D0D0D;
    right: -75%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
  }
  #sidebar__nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #sidebar__nav ul li {
    color: #fff;
    font-size: 22px;
  }
  #sidebar__nav[data-active=true] {
    visibility: visible;
    right: 0;
  }
}
@media (max-width: 1024px) {
  nav[data-scrolled=true] .container {
    background-color: rgba(255, 255, 255, 0.1098039216);
    backdrop-filter: blur(23px);
  }
  nav .container {
    padding: 0 2rem;
    background-color: transparent;
    backdrop-filter: none;
    transition: all 0.5s ease;
  }
  nav .container .socials {
    display: none;
  }
  nav .container .menu a {
    display: none;
  }
}
header {
  position: relative;
  height: 100vh;
  padding: 0;
}
header a #navigation {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 10%;
  z-index: 99999999;
  transform: rotate(-90deg) scale(0);
  cursor: pointer;
  transition: all 0.3s ease;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(transparent, rgba(0, 0, 0, 0.7));
}
header video {
  height: 100vh;
}
header .container {
  z-index: 999;
  position: absolute;
  background-color: transparent;
  top: 40%;
  left: 10%;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
header .container .text {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  top: 10%;
  position: relative;
  text-align: start;
  align-items: start;
  justify-content: center;
}
header .container .text .socials {
  display: none;
}
header .container .text h1 {
  width: 60%;
}
header .container .text p {
  width: 47%;
  font-weight: 300;
}
header .container .text a button {
  width: 215px;
  height: 52px;
  border-radius: 41px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #358085;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
header .container .text a button:hover {
  transform: translateY(-3px);
  color: #358085;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 0 !important;
    gap: 0;
  }
  header::after {
    content: "";
    position: absolute;
    inset: 0;
    display: none;
    background: radial-gradient(transparent, rgba(0, 0, 0, 0.5));
  }
  header video {
    height: 210px;
  }
  header .container {
    width: 100%;
    height: 100%;
    top: auto;
    left: auto;
    z-index: 999;
    background-color: #0D0D0D;
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    position: relative;
  }
  header .container .text {
    padding-top: 0rem;
    align-items: center;
    text-align: center;
    gap: 2rem 0;
  }
  header .container .text h1 {
    width: 100%;
    font-size: 24px;
  }
  header .container .text p {
    width: 85%;
    font-size: 15px;
  }
  header .container .text a button {
    width: 215px;
    height: 52px;
    border-radius: 41px;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #358085;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  header .container .text a button:hover {
    transform: translateY(-3px);
    color: #358085;
    border: none;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  header .container .text .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
  }
  header .container .text .socials img {
    width: 36px;
    height: 36px;
  }
}
#after-header {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
  height: fit-content;
}
@media (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
#after-header .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
#after-header .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
  gap: 1.5rem 0;
}
#after-header .container .text a button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  width: 185px;
  height: 32px;
  border-radius: 7px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#after-header .container .text a button:hover {
  background-color: #202020;
  color: #fff;
  font-weight: 600;
  transform: translateY(-3px);
}
#after-header .container .text a button img {
  width: 15px;
  height: 10px;
}
#after-header .container #secao {
  width: fit-content;
  height: 500px;
  padding-left: 6rem;
  z-index: 9999999;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  #after-header {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-header .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem 0rem;
    width: 83%;
    place-items: center;
  }
  #after-header .container .text {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem 0;
    padding-top: 0rem;
  }
  #after-header .container .text h1 {
    font-size: 20px;
  }
  #after-header .container .text p {
    font-size: 14px;
    width: 93%;
  }
  #after-header .container .text a button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.3rem;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    width: 185px;
    height: 32px;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #after-header .container .text a button:hover {
    background-color: #202020;
    color: #fff;
    font-weight: 600;
    transform: translateY(-3px);
  }
  #after-header .container .text a button img {
    width: 15px;
    height: 10px;
  }
  #after-header .container #secao {
    width: fit-content;
    height: 450px;
    padding-left: 0;
  }
}
#banner1 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  height: 300px;
  background-color: #E1E1E1;
}
@media (max-width: 1024px) {
  #banner1 {
    padding: 4.5rem 0;
  }
}
#banner1 .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner1 .container .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem 0;
}
#banner1 .container .text h3 {
  width: 89%;
  font-size: 20px;
  font-weight: 400;
  color: #232323;
}
#banner1 .container .text a button {
  width: 215px;
  height: 52px;
  border-radius: 41px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #202020;
  cursor: pointer;
  transition: all 0.3s ease;
}
#banner1 .container .text a button:hover {
  transform: translateY(-3px);
  color: #202020;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 1024px) {
  #banner1 {
    height: 413px;
  }
  #banner1 .container .text h3 {
    width: 110%;
    font-weight: 400;
  }
}
#treatments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
}
@media (max-width: 1024px) {
  #treatments {
    padding: 4.5rem 0;
  }
}
#treatments .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 2rem;
  position: relative;
}
#treatments .container .text {
  padding-left: 25%;
  width: 110%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1.3rem 0;
  position: static;
}
#treatments .container .text h1 {
  font-size: 36px;
  line-height: 1;
}
#treatments .container .text p {
  width: 92%;
}
#treatments .container .text a button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 32px;
  gap: 0 0.3rem;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  width: 185px;
  height: 32px;
  border-radius: 7px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#treatments .container .text a button:hover {
  background-color: #202020;
  color: #fff;
  font-weight: 600;
  transform: translateY(-3px);
}
#treatments .container .text a button img {
  width: 15px;
  height: 10px;
}
#treatments .container .treatments__swiper {
  width: 60vw;
  margin-left: 10%;
}
#treatments .container .treatments__swiper .swiper-pagination {
  display: none;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 183px;
  background-color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide:hover {
  background-color: #E1E1E1;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide:hover .textt h4 {
  color: #232323;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide:hover .textt p {
  color: #232323;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide .textt {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide .textt h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
#treatments .container .treatments__swiper .swiper-wrapper .swiper-slide .textt p {
  width: 90%;
  font-size: 14px;
  line-height: 1.5;
}
#treatments .container .btn {
  display: none;
}
#treatments .arrow {
  width: 100%;
  align-items: center;
  justify-content: end;
  right: 10%;
  bottom: -30px;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 0 1rem;
  cursor: pointer;
  z-index: 99999;
}
#treatments .arrow .right {
  transform: rotate(180deg);
}
#treatments .btn {
  display: none;
}

@media (max-width: 1024px) {
  #treatments {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
    padding-bottom: 0 !important;
    gap: 1.85rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #treatments {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #treatments .container {
    width: 83%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 1rem 0rem;
    position: relative;
  }
  #treatments .container .text {
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3rem 0;
    position: static;
    text-align: center;
  }
  #treatments .container .text h1 {
    font-size: 24px;
    line-height: 1;
  }
  #treatments .container .text p {
    width: 87%;
    line-height: 1.7;
  }
  #treatments .container .text a button {
    display: none;
  }
  #treatments .container .treatments__swiper {
    width: 83vw;
    margin-left: 0%;
  }
  #treatments .container .treatments__swiper .swiper-pagination {
    display: none;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 183px;
    background-color: #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    cursor: pointer;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide .textt {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
    cursor: pointer;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide .textt h4 {
    font-size: 20px;
    font-weight: 600;
    color: #404040;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide .textt p {
    width: 90%;
    font-size: 14px;
    line-height: 1.5;
    color: #404040;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    border-color: #E1E1E1;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text h4 {
    color: #fff;
  }
  #treatments .container .treatments__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text p {
    color: #fff;
  }
  #treatments .container .btn {
    display: flex;
    padding-top: 0rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #treatments .container .btn a {
    display: none;
  }
  #treatments .container .btn a button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 32px;
    gap: 0 0.3rem;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    width: 185px;
    height: 32px;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #treatments .container .btn a button:hover {
    background-color: #202020;
    color: #fff;
    font-weight: 600;
    transform: translateY(-3px);
  }
  #treatments .container .btn a button img {
    width: 15px;
    height: 10px;
  }
  #treatments .arrow {
    width: 100vw !important;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    flex-direction: row;
    position: relative;
    gap: 0 2rem;
    cursor: pointer;
    z-index: 999;
    right: 0;
    margin-bottom: 1rem;
  }
  #treatments .arrow .right {
    transform: rotateZ(180deg);
  }
  #treatments .btn {
    display: flex;
    padding-top: 0rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #treatments .btn a {
    display: block;
  }
  #treatments .btn a button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 32px;
    gap: 0 0.3rem;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    width: 185px;
    height: 32px;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #treatments .btn a button:hover {
    background-color: #202020;
    color: #fff;
    font-weight: 600;
    transform: translateY(-3px);
  }
  #treatments .btn a button img {
    width: 15px;
    height: 10px;
  }
}
#experience {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #experience {
    padding: 4.5rem 0;
  }
}
#experience .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 7rem;
}
#experience .container img {
  width: 100%;
  height: 463px;
}
#experience .container .text {
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
#experience .container .text h1 {
  width: 75%;
}
#experience .container .text .ps {
  width: 92%;
}
#experience .container .text .ps p {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  #experience {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
    padding-top: 0;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #experience {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #experience .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 2rem;
  }
  #experience .container img {
    width: 100%;
    height: 310px;
  }
  #experience .container .text {
    padding: 0%;
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #experience .container .text h1 {
    width: 85%;
    font-size: 22px;
  }
  #experience .container .text .ps {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 1rem 0;
  }
  #experience .container .text .ps p {
    font-size: 16px;
    line-height: 1.4;
  }
}
#sucess {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #E1E1E1;
}
@media (max-width: 1024px) {
  #sucess {
    padding: 4.5rem 0;
  }
}
#sucess .container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#sucess .container .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem 0;
}
#sucess .container .title h1 {
  color: #202020;
}
#sucess .container .title p {
  color: #404040;
  width: 70%;
}
#sucess .container .sucess__swiper {
  width: 80vw;
  height: 300px;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 250px;
  background-color: #202020;
  border-radius: 7px;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .btn {
  width: 100%;
  height: 50px;
  background-color: #232323;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .btn button {
  cursor: pointer;
  background-color: #232323;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: start center;
  position: relative;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  border-radius: 0.4rem;
  object-position: 0 0;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image img.image-before {
  height: 50%;
  position: absolute;
  left: 0;
  z-index: 5;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image .slider__input {
  position: absolute;
  width: 171px;
  height: 100%;
  z-index: 10;
  opacity: 0;
  top: 0px;
  cursor: pointer;
  transform: rotate(90deg);
  z-index: 9999;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image .bar {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  display: grid;
  place-items: center;
  z-index: 999;
  background-color: #fff;
  top: 50%;
}
#sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image .bar::after {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
  background-image: url("../assets/icons/antes-e-dps.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  right: -8px;
  top: -12px;
  z-index: 999;
}
#sucess .container .btn a button {
  width: 215px;
  height: 52px;
  border-radius: 41px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #404040;
  cursor: pointer;
  transition: all 0.3s ease;
}
#sucess .container .btn a button:hover {
  transform: translateY(-3px);
  color: #404040;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#sucess .container .arrow {
  display: none;
}

@media (max-width: 1024px) {
  #sucess .container {
    position: relative;
  }
  #sucess .container .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem 0;
  }
  #sucess .container .title h1 {
    color: #202020;
    font-size: 26px;
  }
  #sucess .container .title p {
    color: #404040;
    width: 97%;
    font-size: 16px;
  }
  #sucess .container .sucess__swiper {
    width: 80vw;
    height: 220px;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 171px;
    background-color: #202020;
    border-radius: 7px;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .btn {
    width: 100%;
    height: 50px;
    background-color: #232323;
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .btn button {
    background-color: #232323;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 100%;
    position: relative;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
    border-radius: 0.4rem;
    object-position: 0 0;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image img.image-before {
    height: 50%;
    position: absolute;
    left: 0;
    z-index: 5;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image .slider__input {
    position: absolute;
    width: 171px;
    z-index: 10;
    opacity: 0;
    top: -117px;
    cursor: pointer;
    transform: rotate(90deg);
    z-index: 9999;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image .bar {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    display: grid;
    place-items: center;
    z-index: 999;
    background-color: #fff;
    top: 50%;
  }
  #sucess .container .sucess__swiper .swiper-wrapper .swiper-slide .image .bar::after {
    content: "";
    width: 26px;
    height: 26px;
    display: block;
    background-image: url("../assets/icons/antes-e-dps.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    right: -8px;
    top: -12px;
    z-index: 999;
  }
  #sucess .container .btn {
    padding-top: 5rem;
  }
  #sucess .container .btn a button {
    width: 215px;
    height: 52px;
    border-radius: 41px;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #404040;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #sucess .container .btn a button:hover {
    transform: translateY(-3px);
    color: #404040;
    border: none;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #sucess .container .arrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
    position: absolute;
    bottom: 6rem;
  }
  #sucess .container .arrow .right {
    transform: rotateZ(180deg);
  }
}
.modal-cont {
  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-cont[data-active=true] {
  opacity: 1;
  pointer-events: all;
}
.modal-cont .modal {
  background-color: #E1E1E1;
  width: 80%;
  height: fit-content;
  text-align: center;
  padding: 4.5rem 0;
  line-height: 1.3;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}
.modal-cont .modal .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
  padding-left: 20%;
  gap: 2rem 0;
}
.modal-cont .modal .text .about {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.modal-cont .modal .text .about h1 {
  color: #358085;
  font-size: 24px;
}
.modal-cont .modal .text .about p {
  color: #0D0D0D;
  font-size: 14px;
  width: 100%;
}
.modal-cont .modal .imgs {
  width: 402px;
  height: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid #707070;
  border-radius: 25px;
}
.modal-cont .modal .imgs img {
  width: 100%;
  height: 100%;
}
.modal-cont .modal .imgs img:nth-child(1) {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.modal-cont .modal .imgs img:nth-child(2) {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.modal-cont .modal #fechar {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
  right: 20px;
  top: 20px;
  background-color: #358085;
  border-radius: 50%;
  z-index: 99;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-cont .modal #fechar img {
  width: 12px;
  height: 12px;
  z-index: 999;
}

.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: #E1E1E1;
  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: #358085;
  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;
  color: #358085;
}
.modal-container .modal2 .text p {
  font-size: 14px;
  color: #232323;
}

@media (max-width: 1024px) {
  .modal-cont {
    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-cont[data-active=true] {
    opacity: 1;
    pointer-events: all;
  }
  .modal-cont .modal {
    background-color: #E1E1E1;
    width: 90%;
    height: fit-content;
    text-align: center;
    padding: 2rem 1rem;
    line-height: 1.1;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    gap: 1rem 0;
  }
  .modal-cont .modal .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    padding-left: 0%;
    gap: 0.5rem 0;
  }
  .modal-cont .modal .text .about {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
    padding: 0 1rem;
  }
  .modal-cont .modal .text .about h1 {
    color: #358085;
    font-size: 22px;
  }
  .modal-cont .modal .text .about p {
    color: #0D0D0D;
    font-size: 14px;
    width: 100%;
  }
  .modal-cont .modal .imgs {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid #707070;
    border-radius: 25px;
  }
  .modal-cont .modal .imgs img {
    width: 100%;
    height: 100%;
  }
  .modal-cont .modal .imgs img:nth-child(1) {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  .modal-cont .modal .imgs img:nth-child(2) {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .modal-cont .modal #fechar {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: transparent;
    right: 12px;
    top: 12px;
    background-color: #358085;
    border-radius: 50%;
    z-index: 99;
    display: grid;
    place-items: center;
  }
  .modal-cont .modal #fechar img {
    width: 12px;
    height: 12px;
    z-index: 999;
  }
}
@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;
    padding: 2rem 1rem;
  }
  .modal-container .modal2 .image {
    height: 200px;
  }
  .modal-container .modal2 .text {
    position: relative;
    bottom: 0;
    padding: 1rem 1rem 1rem 1rem;
  }
}
#aesthetic {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
}
@media (max-width: 1024px) {
  #aesthetic {
    padding: 4.5rem 0;
  }
}
#aesthetic .btn {
  display: none;
}
#aesthetic .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#aesthetic .container .text {
  padding-left: 25%;
  width: 110%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1.3rem 0;
  position: static;
}
#aesthetic .container .text h1 {
  font-size: 36px;
  line-height: 1;
  width: 50%;
}
#aesthetic .container .text p {
  width: 82%;
  line-height: 1.5;
}
#aesthetic .container .text a button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 32px;
  gap: 0 0.3rem;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  width: 185px;
  height: 32px;
  border-radius: 7px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#aesthetic .container .text a button:hover {
  background-color: #202020;
  color: #fff;
  font-weight: 600;
  transform: translateY(-3px);
}
#aesthetic .container .text a button img {
  width: 15px;
  height: 10px;
}
#aesthetic .container .aesthetic__swiper {
  width: 60vw;
  margin-left: 6%;
}
#aesthetic .container .aesthetic__swiper .swiper-pagination {
  display: none;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
  width: 100%;
  height: 304px;
  background-color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: #E1E1E1;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .textt h4 {
  color: #202020;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .textt p {
  color: #202020;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt {
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
#aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt p {
  width: 90%;
  font-size: 14px;
  line-height: 1.5;
}
#aesthetic .container .btn {
  display: none;
}
#aesthetic .arrow {
  position: absolute;
  right: 10%;
  bottom: 4%;
  display: flex;
  flex-direction: row;
  gap: 0 1rem;
  cursor: pointer;
}
#aesthetic .arrow .right {
  transform: rotateZ(180deg);
}

@media (max-width: 1024px) {
  #aesthetic {
    gap: 2rem 0;
  }
  #aesthetic .container {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 2rem 0rem;
    position: relative;
  }
  #aesthetic .container .text {
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3rem 0;
    position: static;
    text-align: center;
  }
  #aesthetic .container .text h1 {
    font-size: 24px;
    line-height: 1;
  }
  #aesthetic .container .text p {
    width: 90%;
    line-height: 1.7;
  }
  #aesthetic .container .text a button {
    display: none;
  }
  #aesthetic .container .aesthetic__swiper {
    width: 80vw;
    margin-left: 0%;
  }
  #aesthetic .container .aesthetic__swiper .swiper-pagination {
    display: none;
  }
  #aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 304px;
    background-color: #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
  }
  #aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
  }
  #aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }
  #aesthetic .container .aesthetic__swiper .swiper-wrapper .swiper-slide .textt p {
    width: 90%;
    font-size: 14px;
    line-height: 1.5;
  }
  #aesthetic .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0rem;
  }
  #aesthetic .btn a button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 32px;
    gap: 0 0.3rem;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    width: 185px;
    height: 32px;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #aesthetic .btn a button:hover {
    background-color: #202020;
    color: #fff;
    font-weight: 600;
    transform: translateY(-3px);
  }
  #aesthetic .btn a button img {
    width: 15px;
    height: 10px;
  }
  #aesthetic .arrow {
    width: 100%;
    padding-left: 0rem;
    right: 0;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 0 2rem;
    cursor: pointer;
    z-index: 999;
  }
  #aesthetic .arrow .right {
    transform: rotate(180deg);
    cursor: pointer;
  }
}
#feedbacks {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
}
@media (max-width: 1024px) {
  #feedbacks {
    padding: 4.5rem 0;
  }
}
#feedbacks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
}
#feedbacks .container .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
}
#feedbacks .container .title p {
  font-size: 16px;
}
#feedbacks .container .depoimento__video {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 400px;
  transition: all 0.5s ease;
}
#feedbacks .container .depoimento__video iframe {
  width: 100%;
  height: 100%;
}
#feedbacks .container .video__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 60vw;
  gap: 0 2rem;
  transition: all 0.5s ease;
  position: static;
}
#feedbacks .container .video__wrapper .swiper-pagination {
  bottom: 150px;
  z-index: 99;
  position: absolute;
}
#feedbacks .container .video__wrapper .swiper-pagination .swiper-pagination-bullet {
  background-color: #358085;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background {
  width: 100%;
  height: 192px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.5s ease;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 70%;
  z-index: 10;
  transition: all 0.5s ease;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.hide__menu_items::after {
  display: none;
  transition: all 0.5s ease;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.hide__menu_items .play__wrapper {
  display: none;
  transition: all 0.5s ease;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.hide__menu_items .play__wrapper img {
  transition: all 0.5s ease;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.first {
  background-image: url("../assets/images/thumbs/first.jpg");
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.second {
  background-image: url("../assets/images/thumbs/second.jpg");
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.third {
  background-image: url("../assets/images/thumbs/third.jpg");
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.fourth {
  background-image: url("../assets/images/thumbs/fourth.jpg");
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background.fifth {
  background-image: url("../assets/images/thumbs/fifth.jpg");
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background .play__wrapper {
  width: 50px;
  height: 50px;
  z-index: 20;
  border-radius: 50%;
  background-color: rgba(241, 241, 241, 0.6117647059);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
#feedbacks .container .video__wrapper .depoimento__menu__item__background .play__wrapper img {
  width: 20px;
  height: 20px;
}
#feedbacks .container .big iframe {
  border-radius: 16px;
}
#feedbacks .container .smalls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 0 0.5rem;
  width: 990px;
}
#feedbacks .container .smalls iframe {
  width: 100%;
  border-radius: 16px;
}
#feedbacks .container .btn {
  margin-top: 50px;
}
#feedbacks .container .btn a button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.3rem;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  width: 185px;
  height: 32px;
  border-radius: 7px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#feedbacks .container .btn a button:hover {
  background-color: #202020;
  color: #fff;
  font-weight: 600;
  transform: translateY(-3px);
}
#feedbacks .container .btn a button img {
  width: 15px;
  height: 10px;
}

@media (max-width: 1024px) {
  #feedbacks {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
    padding-top: 0 !important;
    position: relative;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #feedbacks {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #feedbacks .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
    width: 83%;
  }
  #feedbacks .container .title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
  }
  #feedbacks .container .title h1 {
    font-size: 24px;
    width: 80%;
  }
  #feedbacks .container .title p {
    font-size: 16px;
    width: 94%;
  }
  #feedbacks .container .video__wrapper {
    width: 80vw;
    padding-bottom: 0;
    position: static;
  }
  #feedbacks .container .video__wrapper .swiper-pagination {
    bottom: 128px;
    z-index: 99;
    position: absolute;
  }
  #feedbacks .container .video__wrapper .swiper-pagination .swiper-pagination-bullet {
    background-color: #358085;
  }
  #feedbacks .container .big iframe {
    border-radius: 16px;
    width: 318px;
    height: 180px;
  }
  #feedbacks .container .smalls {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 2rem 0rem;
    width: 318px;
  }
  #feedbacks .container .smalls iframe {
    width: 318px;
    height: 180px;
    border-radius: 16px;
  }
  #feedbacks .container .btn {
    margin-top: 32px;
  }
  #feedbacks .container .btn a button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.3rem;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    width: 185px;
    height: 32px;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #feedbacks .container .btn a button:hover {
    background-color: #202020;
    color: #fff;
    font-weight: 600;
    transform: translateY(-3px);
  }
  #feedbacks .container .btn a button img {
    width: 15px;
    height: 10px;
  }
}
#satisfaction {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
  place-items: center end;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #satisfaction {
    padding: 4.5rem 0;
  }
}
#satisfaction.support {
  padding-top: 6rem;
}
#satisfaction.support .container {
  width: 85%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 8rem;
}
#satisfaction.support .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#satisfaction.support .container .text h1 {
  font-size: 25px;
  width: 100%;
}
#satisfaction.support .container .text p {
  width: 110%;
}
#satisfaction.support .container .satisfaction__swiper {
  width: 60vw;
}
#satisfaction.support .container .satisfaction__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}
#satisfaction.support .container .satisfaction__swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}
#satisfaction .container {
  width: 85%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 8rem;
}
#satisfaction .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem 0;
}
#satisfaction .container .text h1 {
  font-size: 25px;
  width: 100%;
}
#satisfaction .container .text p {
  width: 110%;
}
#satisfaction .container .satisfaction__swiper {
  width: 60vw;
}
#satisfaction .container .satisfaction__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}
#satisfaction .container .satisfaction__swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#satisfaction .arrow {
  display: flex;
  flex-direction: row;
  gap: 0 1rem;
  position: absolute;
  bottom: 25px;
  right: 8%;
  cursor: pointer;
}
#satisfaction .arrow .right {
  transform: rotateZ(180deg);
}

@media (max-width: 1024px) {
  #satisfaction {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
    place-items: center;
    padding-top: 0 !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #satisfaction {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #satisfaction .container {
    width: 85%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem 0rem;
  }
  #satisfaction .container .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem 0;
  }
  #satisfaction .container .text h1 {
    font-size: 24px;
    font-weight: 600;
    width: 70%;
  }
  #satisfaction .container .text p {
    width: 80%;
  }
  #satisfaction .container .satisfaction__swiper {
    width: 70vw;
    padding-bottom: 2rem;
  }
  #satisfaction .arrow {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 0 1rem;
    position: absolute;
    bottom: 10px;
    right: 0%;
  }
  #satisfaction .arrow .right {
    transform: rotateZ(180deg);
  }
}
#contact {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
#contact .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#contact .container .map {
  width: 100%;
  height: 461px;
}
#contact .container .map iframe {
  width: 100%;
  height: 100%;
  opacity: 0.74;
}
#contact .container .map form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 328px;
  gap: 2.2rem 0;
  padding: 2.75rem 2.35rem;
  border-radius: 0.813rem;
  background-color: #fff;
  position: absolute;
  left: 10%;
  top: 5%;
}
#contact .container .map form .title {
  display: grid;
  place-items: center;
  gap: 0.85rem 0;
}
#contact .container .map form .title h1 {
  color: #358085;
  font-size: 22px;
  font-weight: 700;
}
#contact .container .map form .title p {
  width: 90%;
  color: #232323;
  font-size: 13px;
  font-weight: 300;
}
#contact .container .map form input {
  width: 100%;
  height: 2rem;
  background: transparent;
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
  padding-bottom: 0.95rem;
  color: #232323;
}
#contact .container .map form input::placeholder {
  font-size: 0.75rem;
  color: #232323;
}
#contact .container .map form select {
  width: 100%;
  height: 2rem;
  background: transparent;
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
  padding-bottom: 0.95rem;
  color: #232323;
  cursor: pointer;
}
#contact .container .map form select::placeholder {
  font-size: 12px;
  font-weight: 700;
  color: #358085;
}
#contact .container .map form select option {
  border: 0;
  background-color: transparent;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
}
#contact .container .map form button {
  width: 215px;
  height: 52px;
  border-radius: 41px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #358085;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 8.125rem;
  height: 2.125rem;
  border-radius: 10px;
  font-size: 12px;
}
#contact .container .map form button:hover {
  transform: translateY(-3px);
  color: #358085;
  border: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact .container .map form button:hover {
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
}
#contact .container .all {
  background-color: #0D0D0D;
  padding: 0 20% 0 15%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.6rem 0;
}
#contact .container .all h1 {
  width: 75%;
}
#contact .container .all .address {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 0 1rem;
  width: 88%;
}
#contact .container .all .address .title {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 0 0.5rem;
}
#contact .container .all .address .title img {
  width: 13px;
  height: 16px;
  object-fit: fill;
}
#contact .container .all .address .title p {
  font-size: 15px;
}
#contact .container .all .address a {
  font-size: 13px;
  color: #fff;
  width: 100%;
  transition: all 0.3s ease;
}
#contact .container .all .address a:hover {
  transform: translateY(-3px);
}
#contact .container .all .phone {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 0 1rem;
}
#contact .container .all .phone .title {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 0 0.5rem;
}
#contact .container .all .phone .title img {
  width: 13px;
  height: 16px;
  object-fit: fill;
}
#contact .container .all .phone .title p {
  font-size: 15px;
}
#contact .container .all .phone a {
  font-size: 13px;
  color: #fff;
  width: 75%;
  transition: all 0.3s ease;
}
#contact .container .all .phone a:hover {
  transform: translateY(-3px);
}
#contact .container .all .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
}
#contact .container .all .socials a img {
  object-fit: fill;
  width: 30px;
  height: 25px;
  transition: all 0.3s ease;
}
#contact .container .all .socials a img:hover {
  transform: scale(0.9);
}

@media (max-width: 1024px) {
  #contact {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
    padding-bottom: 0;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #contact .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }
  #contact .container .map {
    width: 100%;
    height: 461px;
    display: grid;
    place-items: center;
  }
  #contact .container .map iframe {
    width: 100%;
    height: 100%;
    opacity: 0.74;
  }
  #contact .container .map form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 328px;
    gap: 2.2rem 0;
    padding: 2.75rem 2.35rem;
    border-radius: 0.813rem;
    background-color: #fff;
    position: absolute;
    left: auto;
    top: 22%;
  }
  #contact .container .map form .title {
    display: grid;
    place-items: center;
    gap: 0.85rem 0;
  }
  #contact .container .map form .title h1 {
    color: #358085;
    font-size: 22px;
    font-weight: 700;
  }
  #contact .container .map form .title p {
    width: 90%;
    color: #232323;
    font-size: 13px;
    font-weight: 300;
  }
  #contact .container .map form input {
    width: 100%;
    height: 2rem;
    background: transparent;
    border-bottom: 1px solid rgba(35, 35, 35, 0.1);
    padding-bottom: 0.95rem;
    color: #358085;
  }
  #contact .container .map form input::placeholder {
    font-size: 0.75rem;
    color: #232323;
  }
  #contact .container .map form select {
    width: 100%;
    height: 2rem;
    background-color: transparent;
  }
  #contact .container .map form select option {
    width: 100%;
    border: 0;
    background-color: transparent;
  }
  #contact .container .map form button {
    width: 215px;
    height: 52px;
    border-radius: 41px;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #358085;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 8.125rem;
    height: 2.125rem;
    border-radius: 10px;
    font-size: 12px;
  }
  #contact .container .map form button:hover {
    transform: translateY(-3px);
    color: #358085;
    border: none;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #contact .container .map form button:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
  }
  #contact .container .all {
    background-color: #0D0D0D;
    padding: 60% 20% 0 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.6rem 0;
  }
  #contact .container .all h1 {
    width: 100%;
    font-size: 24px;
    font-weight: 500;
  }
  #contact .container .all .address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    width: 110%;
  }
  #contact .container .all .address .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
  }
  #contact .container .all .address .title img {
    width: 16px;
    height: 16px;
    object-fit: fill;
  }
  #contact .container .all .address .title p {
    font-size: 21px;
    font-weight: 500;
  }
  #contact .container .all .address a {
    font-size: 13px;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease;
  }
  #contact .container .all .address a:hover {
    transform: translateY(-3px);
  }
  #contact .container .all .phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
  }
  #contact .container .all .phone .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
  }
  #contact .container .all .phone .title img {
    width: 16px;
    height: 16px;
    object-fit: fill;
  }
  #contact .container .all .phone .title p {
    font-size: 22px;
    font-weight: 500;
  }
  #contact .container .all .phone a {
    font-size: 13px;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease;
  }
  #contact .container .all .phone a:hover {
    transform: translateY(-3px);
  }
  #contact .container .all .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
  }
  #contact .container .all .socials a img {
    object-fit: fill;
    width: 29px;
    height: 29px;
    transition: all 0.3s ease;
  }
  #contact .container .all .socials a img:hover {
    transform: scale(0.9);
  }
}
#header-support {
  width: 100%;
  height: 468px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/suporte4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position-y: 23%;
}
@media screen and (max-width: 64rem) {
  #header-support {
    background-image: url("../assets/images/suporte4.jpg");
  }
}
#header-support a #navigation {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 5%;
  bottom: 10%;
  z-index: 999999;
  transform: rotate(-90deg) scale(0);
  cursor: pointer;
  transition: all 0.3s ease;
}

#about {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
}
@media (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
#about .container {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
}
#about .container .text {
  padding-left: 20%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2.5rem 0;
}
#about .container .text .ps {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.3rem 0;
  width: 100%;
}
#about .container .text .ps p {
  font-size: 16px;
  font-size: 400;
}
#about .container .text .ps p strong {
  font-weight: 700;
}
#about .container .socials {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1rem 0;
}
#about .container .socials .each {
  width: 284px;
  height: 56px;
  background-color: #404040;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
}
#about .container .socials .each:hover {
  background-color: #358085;
  color: #fff;
}
#about .container .socials .each a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 0.4rem;
  font-size: 14px;
  color: #fff;
  padding-left: 1.5rem;
  width: 100%;
  height: 100%;
}
#about .container .socials .each a img {
  width: 18px;
  height: 18px;
  object-fit: fill;
}

@media (max-width: 1024px) {
  #about {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #about .container {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
  #about .container .text {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2.5rem 0;
  }
  #about .container .text .ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3rem 0;
    width: 107%;
  }
  #about .container .text .ps p {
    font-size: 16px;
    font-size: 400;
  }
  #about .container .text .ps p strong {
    font-weight: 700;
  }
  #about .container .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 0;
  }
  #about .container .socials .each {
    width: 284px;
    height: 56px;
    background-color: #404040;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    border-radius: 17px;
    transition: all 0.3s ease;
  }
  #about .container .socials .each:hover {
    background-color: #358085;
    color: #fff;
  }
  #about .container .socials .each a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0 0.4rem;
    font-size: 14px;
    color: #fff;
    padding-left: 1.5rem;
    width: 100%;
    height: 100%;
  }
  #about .container .socials .each a img {
    width: 18px;
    height: 18px;
    object-fit: fill;
  }
}
#images {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding-top: 0;
  background-color: #0D0D0D;
}
@media (max-width: 1024px) {
  #images {
    padding: 4.5rem 0;
  }
}
#images .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#images .container img {
  width: 100%;
  height: 299px;
}

@media (max-width: 1024px) {
  #images {
    padding: 0;
  }
  #images .container {
    grid-template-columns: 1fr;
  }
}
#meet {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0D0D0D;
  place-items: center start;
  margin: -1px;
}
@media (max-width: 1024px) {
  #meet {
    padding: 4.5rem 0;
  }
}
#meet .container {
  width: 85%;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  place-items: center;
  gap: 0 5rem;
}
#meet .container .img {
  position: relative;
  width: 599px;
  height: 314px;
  background-color: #E1E1E1;
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
  z-index: 87;
  display: flex;
  align-items: center;
  justify-content: end;
}
#meet .container .img img {
  position: absolute;
  right: 10%;
  height: 424px;
  width: 352px;
  z-index: 88;
}
#meet .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#meet .container .text h1 {
  width: 100%;
}
#meet .container .text .paragraphs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0;
}
#meet .container .text .paragraphs p {
  font-size: 16px;
  font-weight: 300;
}
#meet .container .text .specialties {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem 0;
}
#meet .container .text .specialties h1 {
  font-size: 22px;
}
#meet .container .text .specialties p {
  font-size: 16px;
}

@media (max-width: 1024px) {
  #meet {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0D0D0D;
    place-items: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #meet {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #meet .container {
    padding-top: 4rem;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 8rem 0;
  }
  #meet .container .img {
    padding-top: 2rem;
    position: relative;
    width: 100%;
    height: 214px;
    background-color: transparent;
    border-radius: 11px;
    z-index: 87;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #meet .container .img img {
    position: relative;
    height: 354px;
    width: 282px;
    z-index: 88;
    right: 0;
    border-radius: 12px;
  }
  #meet .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem 0;
  }
  #meet .container .text h1 {
    width: 100%;
  }
  #meet .container .text p {
    font-size: 16px;
    font-weight: 300;
  }
}/*# sourceMappingURL=style.css.map */