/* Alterações que afetam todo o site */
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--bs-black) var(--cl-gray-09);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: var(--cl-gray-09);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--bs-black);
  border-radius: 20px;
  border: 3px solid var(--cl-gray-09);
}

main {
  width: 100vw;
}
ul {
  margin: 0;
  padding: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

#btn-wpp-fixed a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  transition: 0.3s;
  cursor: pointer;
  animation-delay: 4s;
  overflow: hidden;
}

#btn-wpp-fixed a:hover {
  filter: opacity(0.75);
  transition: 0.3s;
}

#btn-wpp-fixed img {
  width: 100%;
  height: 100%;
}

.nav-top {
  position: absolute;
  top: 20px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  justify-items: center;
  width: 100vw;
  padding: 0 5%;
  box-sizing: border-box;
  z-index: 998;
}

.nav-top > div {
  width: 100%;
}

.content-icon-menu {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 5px;
  box-sizing: border-box;
}

.menu-mobile {
  display: none;
  z-index: 998;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.nav-top a,
.content-nav-mobile a {
  text-decoration: none;
}

.nav-links li,
.content-nav-mobile li {
  text-decoration: none;
  color: var(--cl-white);
  list-style: none;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-icons-mobile {
  display: none;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
}

.grid-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
}

.grid-icons a {
  transition: 0.3s;
}

.grid-icons a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.btn-blog {
  display: none;
}

/* MENU MOBILE */

#logo-mobile {
  display: none;
}

.close {
  position: relative;
}

.close > div {
  width: 40px;
  height: 40px;
}

.close > div::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 40px;
  top: 50%;
  background-color: #878787;
  transform: rotate(-45deg);
}

.close > div::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 40px;
  top: 50%;
  background-color: #878787;
  transform: rotate(45deg);
}

.view-menu-mobile {
  top: 0;
  left: 0;
  cursor: pointer;
}

.navbar-mobile {
  left: -102%;
  top: 0;
  padding: 36px 0;
  display: none;
  position: fixed;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  z-index: 99;
  width: 100%;
  height: 100vh;
  transition: 0.5s;
  background-color: var(--cl-gray-00);
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-size: 20px;
  align-items: center;
}

/* animation */

.open-menu {
  animation: openNavAnimation 0.2s forwards;
}

.close-menu {
  animation: closeNavAnimation 0.2s forwards;
}

@keyframes navAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes openNavAnimation {
  from {
    left: -102%;
  }
  to {
    left: 0;
  }
}
@keyframes closeNavAnimation {
  from {
    left: 0;
  }
  to {
    left: -102%;
  }
}

/* ------------ SECTION HERO ----------------- */

#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#hero .slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

#slide-1 {
  background-image: url("../images/photos/img_hero.webp");
}

#slide-2 {
  background-image: url("../images/photos/img_hero2.webp");
}

#hero h1,
.newsletter-header h1 {
  font-family: var(--font-title);
  font-size: var(--tp-xl);
  letter-spacing: 12px;
  font-weight: 400;
  color: var(--cl-white);
}

.box-slider {
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: +1;
  height: 100vh !important;
}

/* ------------ CUSTOM SLIDER -------------- */

.slick-prev,
.slick-next {
  z-index: +1;
  width: auto;
  height: auto;
}

#hero .slick-prev {
  left: 30px;
  top: auto !important;
}

#hero .slick-next {
  right: 60px;
  top: auto !important;
}

.slick-next:before {
  content: url("../images/svg/next.svg");
}

.slick-prev:before {
  content: url("../images/svg/prev.svg");
}

#hero .slick-dots {
  bottom: 20px !important;
  z-index: +1;
}

.slick-dots li {
  width: 30px;
  height: 30px;
}

.slick-dots li button {
  width: 30px;
  height: 30px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  width: 30px !important;
  left: 0 !important;
  margin: 0;
  transition: 0.3s !important;
  background: var(--cl-white) !important;
}

.slick-dots li button:before {
  font-size: 0;
  opacity: 0.5;
  height: 2px;
  width: 30px;
  background-color: var(--cl-white);
}

#icon-scroll {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 20px;
  margin: 0 auto;
  background-image: url("../images/svg/scroll_down.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: +2;
}

/* ------------ SECTION RICK EMBAIXADOR ------------- */

#rick {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 5%;
  gap: 80px;
}

#rick > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#rick h1 {
  max-width: 600px;
  text-align: center;
}

#rick p {
  color: var(--cl-white);
  text-transform: uppercase;
  max-width: 780px;
  text-align: center;
  margin-top: 28px;
  padding: 0 5%;
}

#rick img {
  max-height: 600px;
}

.margin-section {
  margin: 220px 0;
}

/* ------------------ SECTION SERVICES -------------- */

#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#services > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 120px;
}

.container-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0 5%;
  box-sizing: border-box;
  width: 100%;
}

.container-services > a.btn-secundary {
  display: none;
  width: 240px;
  text-align: center;
  order: 3;
}

.content-services {
  width: 55%;
  max-width: 600px;
  min-width: 600px;
}

.service-show {
  width: 285px !important;
  height: 360px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.box-services > div p {
  font-size: var(--tp-s);
  letter-spacing: 3px;
  position: absolute;
  margin: auto;
  z-index: 99;
  color: var(--cl-white);
  text-transform: uppercase;
  text-align: center;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.2);
  width: calc(100% - 44px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-service {
  text-align: center;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}

.title-service h2 {
  font-size: var(--tp-xl);
  color: var(--cl-gray-06);
  letter-spacing: 16px;
  font-family: var(--font-text-b);
  text-transform: uppercase;
  min-width: 600px;
}

.title-service a {
  width: 240px;
}

/*  ---------------------- SECTION PROFESSIONAL ------------------- */

#professionals,
#hall,
#explore-blog {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  box-sizing: border-box;
}

.box-professionals {
  max-width: 1200px;
}

.professionals-show {
  width: 280px !important;
  height: 500px !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--cl-black);
}

.professionals-show > div {
  width: 100%;
  position: relative;
  height: 100px;
  padding: 26px 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.8s;
  overflow: hidden;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.4);
}

#professionals .bg-blur {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.8s;
}

.professionals-show > div h2 {
  font-size: var(--tp-m);
  color: var(--cl-white);
  letter-spacing: 6px;
  z-index: +2;
  text-transform: uppercase;
  text-align: center;
}

.professionals-show > div p {
  font-size: var(--tp-xs);
  color: var(--cl-gray-05);
  letter-spacing: 1px;
  z-index: +2;
  margin: 0;
}

.information-professional {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  z-index: +2;
}

.professionals-show:hover > div {
  height: 330px !important;
  transition: 0.8s;
}

.professionals-show:hover .information-professional {
  display: initial;
}

#professionals .slick-prev,
#professionals .slick-next {
  top: 526px !important;
}

.box-professionals .slick-dots li button:before,
.box-professionals .slick-dots li button,
.box-professionals .slick-dots li {
  width: 10px !important;
}

.box-professionals .slick-dots li {
  margin: 0 2px !important;
}

/* ---------------------------- SECTION HALL --------------------- */

.box-hall {
  width: 80%;
  max-width: 1200px;
  margin-top: 40px;
}

.hall-show {
  height: 500px;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#hall .slick-prev,
#hall .slick-next {
  top: 526px !important;
}

.box-hall::before {
  position: absolute;
  border: 1px solid var(--cl-gray-05);
  content: "";
  width: 100%;
  height: 500px;
  top: -40px;
  right: -40px;
}

/*  ------------------------ SECTION GALERY -------------- */

#galery {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mosaico {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100vw;
  margin: 0;
  padding: 0;
  grid-auto-rows: calc(100vw / 3);
}

.mosaico > div {
  background-color: #000;
  position: relative;
}

.mosaico > div img {
  outline: 1px solid var(--cl-gray-00);
  outline-offset: -1px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  transition: 0.5s;
}

.mosaico > div img:hover {
  opacity: 1;
  transition: 0.5s;
}

.r1 {
  grid-row: span 1;
}

.r2 {
  grid-row: span 2;
}

.c1 {
  grid-column: span 1;
}

.c2 {
  grid-column: span 2;
}

/* ----------- SECTION MAPS ---------------- */

#maps {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  box-sizing: border-box;
}

#maps iframe {
  max-width: 600px;
  width: 100%;
  height: 450px;
}

#maps p {
  margin: 0;
  font-size: var(--tp-s);
}
#maps h2 {
  font-size: var(--tp-m);
  color: var(--cl-gray-04);
}

#maps > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 600px;
  padding: 0 12px;
}

#maps > div::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 120%;
  left: -30%;
  top: -10%;
  border: 1px solid var(--cl-gray-02);
  z-index: -1;
}

/* ------------- SLIDER GENERIC ----------------- */

.slick-prev,
.slick-next {
  top: 386px;
  z-index: +99;
}

.slick-dots {
  bottom: -50px;
  z-index: +1;
}

/* ====================== FOTOS DO SITE VIA BACKGROUND IMAGE ======================= */

/* ----------- IMAGE SERVICES ---------- */
#luzes {
  background-image: url("../images/photos/luzes.jpg");
}

#corte-borbado {
  background-image: url("../images/photos/gallery16.jpg");
}

#corte-feminino {
  background-image: url("../images/photos/feminino.jpg");
}
#corte-masculino {
  background-image: url("../images/photos/gallery21.jpg");
}
#coloracao {
  background-image: url("../images/photos/gallery03.jpg");
}

#hidratacao {
  background-image: url("../images/photos/hidratacao.jpg");
}

#reconstrucao {
  background-image: url("../images/photos/reconstrucao.jpg");
}

#tratamento-couro {
  background-image: url("../images/photos/couro.jpg");
}

#alinhamento-fios {
  background-image: url("../images/photos/alinhamento.jpg");
}

#nutricao {
  background-image: url("../images/photos/nutricao.jpg");
}

#maquiagem {
  background-image: url("../images/photos/maquiagem.jpg");
}
#automaquiagem {
  background-image: url("../images/photos/automaquiagem.jpg");
}
#pump-effect {
  background-image: url("../images/photos/pump.jpg");
}
#lash-lifting {
  background-image: url("../images/photos/lash.jpg");
}
#nano-pigmentacao {
  background-image: url("../images/photos/nano.jpeg");
}

#peeling {
  background-image: url("../images/photos/limpeza-pele.JPG");
}

#drenagem-linfatica {
  background-image: url("../images/photos/drenagem.jpg");
}

#drenagem-linfatica {
  background-image: url("../images/photos/drenagem.jpg");
}

#sobrancelha-soap {
  background-image: url("../images/photos/soap.jpg");
}

#sobrancelha-design {
  background-image: url("../images/photos/design-sobrancelha.jpg");
}

#sobrancelha-henna {
  background-image: url("../images/photos/henna.jpg");
}

#microagulhamento {
  background-image: url("../images/photos/microagulhamento.jpg");
}

/* ---------- IMAGE PROFESSIONALS ------------- */

#professional-1 {
  background-image: url("../images/photos/01.webp");
}
#professional-2 {
  background-image: url("../images/photos/02.webp");
}
#professional-3 {
  background-image: url("../images/photos/03.webp");
}
#professional-4 {
  background-image: url("../images/photos/04.webp");
}
#professional-5 {
  background-image: url("../images/photos/05.webp");
}
#professional-6 {
  background-image: url("../images/photos/06.webp");
}
#professional-7 {
  background-image: url("../images/photos/07.webp");
}
#professional-8 {
  background-image: url("../images/photos/08.webp");
}
#professional-9 {
  background-image: url("../images/photos/09.webp");
}
#professional-10 {
  background-image: url("../images/photos/10.webp");
}
#professional-11 {
  background-image: url("../images/photos/11.webp");
}
#professional-12 {
  background-image: url("../images/photos/12.webp");
}
#professional-13 {
  background-image: url("../images/photos/13.webp");
}
#professional-14 {
  background-image: url("../images/photos/14.webp");
}
#professional-15 {
  background-image: url("../images/photos/15.webp");
}

#hall-1 {
  background-image: url("../images/photos/hall-1.jpg");
}

#hall-2 {
  background-image: url("../images/photos/hall-2.jpg");
}

/* gallery */

#gallery-01 {
  background-image: url("../images/photos/gallery01.jpg");
}
#gallery-02 {
  background-image: url("../images/photos/gallery10.jpg");
}
#gallery-03 {
  background-image: url("../images/photos/gallery09.jpg");
}
#gallery-04 {
  background-image: url("../images/photos/gallery04.jpg");
}
#gallery-05 {
  background-image: url("../images/photos/gallery05.jpg");
}
#gallery-06 {
  background-image: url("../images/photos/gallery02.jpg");
}
#gallery-07 {
  background-image: url("../images/photos/gallery07.jpg");
}
#gallery-08 {
  background-image: url("../images/photos/gallery08.jpg");
}
#gallery-09 {
  background-image: url("../images/photos/gallery09.jpg");
}
#gallery-10 {
  background-image: url("../images/photos/gallery08.jpg");
}
#gallery-11 {
  background-image: url("../images/photos/gallery11.jpg");
}
#gallery-12 {
  background-image: url("../images/photos/gallery12.jpg");
}
#gallery-13 {
  background-image: url("../images/photos/gallery13.jpg");
}
#gallery-14 {
  background-image: url("../images/photos/gallery14.jpg");
}
#gallery-15 {
  background-image: url("../images/photos/gallery15.jpg");
}
#gallery-16 {
  background-image: url("../images/photos/gallery16.jpg");
}
#gallery-17 {
  background-image: url("../images/photos/gallery17.jpg");
}
#gallery-18 {
  background-image: url("../images/photos/gallery18.jpg");
}
#gallery-19 {
  background-image: url("../images/photos/gallery19.jpg");
}
#gallery-20 {
  background-image: url("../images/photos/gallery20.jpg");
}
#gallery-21 {
  background-image: url("../images/photos/gallery21.jpg");
}
#gallery-22 {
  background-image: url("../images/photos/gallery23.jpg");
}
#gallery-23 {
  background-image: url("../images/photos/gallery10.jpg");
}
#gallery-24 {
  background-image: url("../images/photos/gallery24.jpg");
}
#gallery-25 {
  background-image: url("../images/photos/gallery25.jpg");
}
#gallery-26 {
  background-image: url("../images/photos/gallery26.jpg");
}
#gallery-27 {
  background-image: url("../images/photos/gallery27.jpg");
}
#gallery-28 {
  background-image: url("../images/photos/gallery28.jpg");
}

/* 

================================================================= PAGE SERVICE ================================================================

*/

#page-service {
  margin-top: 180px;
  scroll-behavior: smooth;
  margin-bottom: 120px;
}

#page-service section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 120px;
}

#page-service section h1 {
  text-align: center;
}

#page-service section > div {
  max-width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.card-service {
  display: flex;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.name-service {
  width: 25vw;
  max-width: 400px;
  min-width: 320px;
  height: 50vw;
  max-height: 700px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  filter: brightness(0.6);
  background-image: url("../images/galery/gl-6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}

.name-service:hover {
  filter: brightness(1);
  transition: 0.5s;
}

.name-service > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px 20px 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 50%
  );
}

.name-service h2 {
  font-size: var(--tp-l);
  color: var(--cl-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}

.cta-view-details {
  cursor: pointer;
  padding: 12px 36px;
  text-transform: uppercase;
  font-size: var(--tp-m);
  color: var(--cl-white) !important;
  text-decoration: underline !important;
  backdrop-filter: blur(7px);
  background-color: rgb(255 255 255 / 20%);
  transition: 0.3s;
}

.cta-view-details:hover {
  background-color: rgb(255 255 255 / 10%);
  text-align: center;
  transition: 0.3s;
}

.details-service {
  width: 25vw;
  max-width: 400px;
  min-width: 320px;
  height: 50vw;
  max-height: 700px;
  min-height: 500px;

  position: absolute;
  left: -100%;
  z-index: +1;
  padding: 20px;
  box-sizing: border-box;

  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: 0.5s;
}

.details-service-show {
  left: 0;
  transition: 0.5s;
}

.details-service h3 {
  color: var(--cl-white);
}

.details-service .description-service {
  color: var(--cl-gray-05);
  text-align: center;
}

.details-service > div:last-child {
  opacity: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.details-service-show div {
  animation-delay: 0.5s !important;
  animation: view-service linear 0.3s forwards;
}

@keyframes view-service {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.details-service a {
  width: 90%;
  text-align: center;
}

.details-service p {
  margin: 0;
}

.header-details {
  position: absolute;
  top: 20px;
  opacity: 0;
  width: calc(100% - 40px);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-details {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
}

.close-details > span {
  z-index: +1;
  position: relative;
  color: var(--cl-gray-06);
  text-transform: uppercase;
}

.icon-close-details {
  position: absolute;
  left: 10%;
  top: 50%;
}

.icon-close-details span:first-child {
  display: block;
  top: 50%;
  transform: rotate(45deg);
  width: 40px;
  height: 1px;
  background-color: var(--cl-gray-06);
}

.icon-close-details span:last-child {
  display: block;
  top: 50%;
  transform: rotate(-45deg);
  width: 40px;
  height: 1px;
  background-color: var(--cl-gray-06);
}

.icon-vip-services {
  top: 20px;
  left: 20px;
}

.icon-vip-services svg {
  height: 40px;
  width: 40px;
  fill: var(--cl-gray-06);
}

.nav-services {
  position: fixed;
  z-index: 999;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  box-sizing: border-box;
  background-color: rgb(0 0 0 / 50%);
  backdrop-filter: blur(8px);
}

.nav-services ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-services ul li {
  position: relative;
  padding: 8px 12px;
  overflow: hidden;
}

.nav-services a.active {
  color: var(--cl-gray-09) !important;
}

.nav-services a.active::after {
  left: 0% !important;
  transition: 0.3s;
}

.nav-services a::after {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 1.5px solid var(--cl-gray-02);
  border-bottom: 1.5px solid var(--cl-gray-02);
  height: calc(100% - 8px);
  top: 4px;
  left: -100%;
  transition: 0.3s;
}

.nav-services ul li a {
  cursor: pointer;
  text-transform: uppercase;
  font-size: var(--tp-m);
  color: var(--cl-gray-05);
  transition: 0.3s;
}

.nav-services ul li a:hover {
  transition: 0.3s;
  color: var(--cl-gray-05);
}

/* 

===================================================================== BLOG ==================================================================== 

*/

.container-blog {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  flex-direction: column;
  gap: 40px;
}

.box-topviews {
  max-width: 1200px;
  position: relative;
  width: 100%;
}

.topviews-show:hover,
.box-explore a > div:hover {
  transition: 8s linear;
  background-position: bottom;
  background-size: 320px;
}

.topviews-show,
.box-explore a > div {
  position: relative;
  width: 280px !important;
  height: 500px !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  background-size: 300px;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("../images/photos/professional-4.jpg");
  transition: 0.5s;
}

.container-blog .slick-prev,
.container-blog .slick-next {
  top: 526px !important;
}

.container-blog h2 {
  font-size: var(--tp-xl);
  text-transform: uppercase;
  color: var(--cl-gray-05);
  letter-spacing: 12px;
  text-align: center;
}

.container-blog > div p,
.box-explore a > div p {
  margin: 0;
}

.topviews-show .bg-blur,
.box-explore a > div .bg-blur {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.8s;
}

.description-blog {
  position: relative;
  padding: 26px 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.8s;
  width: 100%;
  height: 150px;
}

.topviews-show h5,
.box-explore a > div h5 {
  z-index: +1;
  font-size: var(--tp-s);
  color: var(--cl-gray-05);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.autor-blog {
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--cl-black);
  color: var(--cl-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  box-sizing: border-box;
}

.autor-blog > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.autor-blog p {
  font-size: var(--tp-xxs);
}

.photo-autor {
  width: 30px;
  height: 30px;
  background-color: var(--cl-gray-04);
}

.box-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  position: relative;
}

#search-blog form {
  width: 100%;
  background-color: var(--cl-black);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  padding: 46px 5%;
  box-sizing: border-box;
}

#search-blog input {
  height: 40px;
  width: 100%;
  border-bottom: 1px solid var(--cl-white);
  border-left: none;
  border-right: none;
  border-top: none;
  background-color: var(--cl-black);
  padding: 6px 42px 6px 42px;
  color: var(--cl-white);
  font-size: var(--tp-xs);
}

#search-blog input:focus {
  border-left: none;
  border-top: 1px solid var(--cl-white);
  border-bottom: 1px solid var(--cl-white);
  border-right: 1px solid var(--cl-white);
  outline: 4px solid var(--bs-black);
  border-left: none;
}

#search-blog input::placeholder {
  color: var(--cl-gray-07);
}
#search-blog select {
  position: relative;
  background-color: transparent;
  height: 40px;
  border-bottom: 1px solid var(--cl-white);
  color: var(--cl-gray-07);
  font-size: var(--tp-xs);
  border-left: none;
  border-right: none;
  border-top: none;
  min-width: 140px;
  max-width: 220px;
  padding: 0 36px 0 12px;
  border-radius: 0;
  z-index: 2;
  -moz-appearance: none;
  -webkit-appearance: none;
}

#search-blog select::-ms-expand {
  display: none;
}

#search-blog select:focus-visible {
  border-radius: 0;
  border: 1px solid var(--cl-white);
  outline: none;
}

#search-blog select option {
  background-color: var(--cl-gray-00);
}

.box-select > div {
  position: relative;
}

#arrow-select {
  position: absolute;
  right: 0px;
  width: 30px;
  height: 30px;
  bottom: 5px;
  background-image: url("../images/svg/arrow_select.svg");
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  z-index: 1;
}

#left-border {
  position: absolute;
  background-color: var(--cl-black);
  left: 0px;
  bottom: -13px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#left-border span {
  display: block;
  height: 52px;
  width: 1px;
  background-color: var(--cl-white);
  rotate: 320deg;
  left: -16px;
  bottom: 7px;
  position: relative;
}

#search-blog button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  border: none;
  background-color: var(--cl-black);
  color: var(--cl-gray-07);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------- SECTION EXPLORE  -----------------------*/

#explore-blog h1 {
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--cl-gray-00);
  border-bottom: 1px solid var(--cl-gray-01);
}

.box-explore {
  display: flex;
  gap: 40px 120px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1220px;
}

.box-explore a > div::before {
  content: "";
  position: absolute;
  border: 1px solid var(--cl-gray-02);
  width: 280px;
  height: 500px;
  top: -30px;
  right: -30px;
  z-index: -1;
}

.box-explore a > div {
  column-span: 20px;
  grid-row: span 2;
  grid-column: span 1;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

.box-explore a:nth-child(2),
.box-explore a:nth-child(5),
.box-explore a:nth-child(8) {
  margin-top: -220px;
}

.box-explore a:nth-child(1),
.box-explore a:nth-child(3),
.box-explore a:nth-child(4),
.box-explore a:nth-child(6),
.box-explore a:nth-child(7),
.box-explore a:nth-child(9) {
  margin-top: 220px;
}

.paginator {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.paginator li {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--cl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--tp-xs);
  transition: 0.3s;
}

.paginator li:hover {
  background-color: var(--cl-white);
  opacity: 0.75;
  transition: 0.3s;
}

.paginator li:hover a {
  color: var(--cl-black);
}

.paginator li a {
  color: var(--cl-white);
  padding: 4px 8px;
  box-sizing: border-box;
  margin-top: 0 !important;
  text-align: center;
}

.paginator li .active {
  background-color: var(--cl-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--tp-xs);
  color: var(--cl-gray-00);
}

.paginator li:last-child,
.paginator li:first-child {
  width: auto !important;
}

/* =================================================== POST BLOG =============================================================== */

#post-blog {
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
  margin-bottom: 160px !important;
}

#post-blog p,
#post-blog a {
  color: var(--cl-gray-05);
  margin: 0;
}

.box-header-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  gap: 60px;
  width: 100%;
  margin-bottom: 120px;
  max-width: 1600px;
}

.img-header-post {
  position: relative;
}

.img-header-post img,
.img-header-post {
  width: 40vw;
  height: 40vw;
  max-width: 720px;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.img-header-post::before {
  content: "";
  position: absolute;
  left: -16%;
  top: -40px;
  width: 40vw;
  height: 40vw;
  max-width: 720px;
  max-height: 720px;
  border: 1px solid var(--cl-gray-05);
}

.content-header-post {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 800px;
}

.content-header-post > div,
.box-title-post > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.content-header-post h1,
#page-service h1 {
  font-size: var(--tp-xl);
  letter-spacing: 4px;
  font-weight: 800;
}

.autor-post h3 {
  font-size: var(--tp-s);
  font-weight: 400;
  color: var(--cl-white);
}

.autor-post p {
  font-size: var(--tp-xs);
}

.autor-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
}

.box-title-post {
  flex-direction: column;
  align-items: flex-start !important;
}

.content-header-post span {
  color: var(--cl-gray-07);
}

.tag-category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--cl-white);
  color: var(--cl-gray-00) !important;
  text-transform: uppercase;
  padding: 4px 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.tag-category span {
  color: var(--cl-gray-00);
}

.tag-category:hover {
  background-color: transparent;
  outline: 1px solid var(--cl-gray-05);
  color: var(--cl-gray-05) !important;
  transition: 0.3s;
}

.tag-category:hover span {
  color: var(--cl-gray-05) !important;
  transition: 0.3s;
}

.post-full-text {
  max-width: 1200px;
  margin: 0 auto;
}

.post-full-text img {
  max-width: 100% !important;
  height: auto !important;
}

.end-post {
  width: 80%;
  height: 12px;
  background-image: url("../images/svg/end_post.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 60px auto;
  max-width: 900px;
}

.reactions {
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.reactions > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.box-like {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.like-button {
  display: block;
  cursor: pointer;
  transition: 0.3s;
  background: none !important;
  border: none;
}

.like-button svg {
  position: relative;
  fill: var(--cl-gray-00);
  stroke: var(--cl-white);
  transition: 0.4s;
}

.like-button.liked svg path {
  filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 1));
}

.like-button.liked svg,
.like-button.liked + .like-count {
  fill: var(--cl-white);
  stroke: var(--cl-white);
  transition: 0.4s;
  color: var(--cl-white);
}

.like-button:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

.share {
  display: flex;
  gap: 20px;
}

.share a span {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7;
  transition: 0.2s;
}

.share a span:hover {
  opacity: 1;
  filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 1));
  transition: 0.2s;
}

.share .instagram {
  background-image: url("../images/svg/instagram.svg");
}

.share .whatsapp {
  background-image: url("../images/svg/whatsapp_share.svg");
}

.share .facebook {
  background-image: url("../images/svg/facebook.svg");
}

.share .twitter {
  background-image: url("../images/svg/twitter.svg");
}

#comments {
  margin: 36px 0;
  font-size: var(--tp-l);
}

.box_comment p {
  margin: 0 !important;
}

.box_comment {
  margin-bottom: 16px;
}

.name_comment {
  font-size: var(--tp-xs);
  color: var(--cl-gray-04);
}

.comment_content {
  font-family: var(--font-text-m);
}

.comment_adm {
  margin-top: 16px;
  padding-left: 32px;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cl-gray-01);
}

.comment_adm::before {
  content: url("../images/svg/before_comment_blog.svg");
  position: absolute;
  left: 6px;
  top: 4px;
}

.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#comentarios .align-center p {
  color: var(--cl-gray-04);
}

#comentarios .align-center p,
#comentarios .align-center h2 {
  text-align: center;
}

/* 

===================================================================== NEWSLETTER ==================================================================== 

*/

.newsletter {
  position: relative;
  width: 100vw;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55vh;
  background-image: url("../images/photos/bg_newslatter.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.box-newsletter {
  position: absolute;
  padding: 32px 16px;
  z-index: +1;
  bottom: -62px;
  width: 100%;
  max-width: 900px;
}
.box-newsletter > div:first-child,
.newsletter-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: +2;
}

.newsletter-header p {
  color: var(--cl-gray-05);
}

.newsletter > div .bg-blur {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
}

.newsletter-article,
.form-newsletter {
  width: 100%;
}

.newsletter-email {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.newsletter-email input {
  height: 60px;
  background-color: var(--cl-white);
  font-size: var(--tp-s);
  color: var(--cl-gray-02);
  padding: 0 16px 0 56px;
  width: 100%;
  border: none;
}

.newsletter-email button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  width: 150px;
  background-color: var(--cl-gray-01);
  color: var(--cl-white);
  border: none;
}

.newsletter-email input::placeholder {
  font-size: var(--tp-s);
  color: var(--cl-gray-04);
}

.email-icon {
  position: absolute;
  top: 14px;
  left: 12px;
  background-image: url("../images/svg/icon_email.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}

/* ================== LOADING SITE ====================== */

#eKnyNwAj84D1 {
  max-height: 260px;
}

/*  */

.modal_news {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(33, 44, 85, 0.8);
  opacity: 0;
}

.section_adv {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  background-color: rgba(33, 44, 85, 0.8);
  opacity: 0;
}

.modal_login {
  display: none;
  position: fixed;
  z-index: 1111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(255 255 255 / 35%);
  opacity: 0;
}

.modal_login_div {
  position: relative;
  background-color: var(--cl-gray-00);
  margin: auto;
  padding: 0;
  border-radius: 0px;
  border: none;
  width: 30%;
  max-width: 600px;
  min-width: 500px;
  text-align: center;
  opacity: 0;
}

.div_adv article {
  text-align: left;
  padding: 1em 3em;
  font-weight: 300;
}

.div_adv article strong {
  text-align: left;
  padding: 2em 0em;
  color: #555;
  text-transform: uppercase;
}

.div_adv {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 7px;
  border: 1px solid #888;
  width: 90%;
  text-align: center;
  opacity: 0;
  margin-bottom: 100px;
}

.accept {
  padding: 1em;
  background-color: #416b3d;
  border-radius: 5px;
  color: #fff;
}

.modal_news_div {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 7px;
  border: 1px solid #888;
  width: 30%;
  text-align: center;
  opacity: 0;
}

#form_modal_news {
  display: block;
  opacity: 1;
  /*margin-top: -10%;*/
  text-align: center;
}

#form_modal_create {
  display: none;
  opacity: 0;
  text-align: center;
}

#form_modal_create .block-form {
  box-shadow: none;
}

.login-google {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.login-new,
.login-access {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.login-new p,
.login-access p {
  margin: 0;
  color: var(--color-gray-40);
}

.login-google p {
  margin: 0;
  padding: 0;
  color: var(--color-gray-60);
}

.login-google > div {
  display: flex;
  gap: 20px;
}

.login-google > div a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cl-gray-04);
  transition: 0.3s;
}

.login-google > div svg {
  fill: var(--cl-white);
  transition: 0.3s;
}

.login-google > div a:hover {
  background-color: var(--cl-gray-07);
  transition: 0.3s;
}

.login-google > div a:hover svg {
  fill: var(--cl-gray-00);
  transition: 0.3s;
}

.title-login {
  color: var(--color-gray-60);
  text-transform: uppercase;
}

#form_modal_login {
  opacity: 1;
  text-align: center;
}

#form_modal_pass {
  display: none;
  opacity: 0;
  /*margin-top: -10%;*/
  text-align: center;
}

.notify_site {
  width: 80%;
  margin: 0 auto;
}

.msg_notify {
  position: relative;
  width: 100%;
  background: #fe500000;
  text-align: center;
  border: 1px solid #fff;
  padding: 0.7em 0;
  color: #fff;
  margin-bottom: 2%;
  margin-top: 15px;
}

.label_check {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-top: 12px;
  cursor: pointer;
  color: #9e9e9e;
  /* font-size: 0.8em; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.label_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input::placeholder {
  color: var(--cl-gray-04) !important;
}

.checkmark {
  position: absolute;
  /* top: 0; */
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.label_check:hover input ~ .checkmark {
  background-color: #ccc;
}

.label_check input:checked ~ .checkmark {
  background-color: #2196f3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.label_check input:checked ~ .checkmark:after {
  display: block;
}

.label_check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal_login_div {
  position: relative;
}

.modal_login_div hr {
  background-color: #ddd;
  height: 1px;
  width: 89%;
  margin: 0 auto;
  border: none;
  margin-bottom: 15px;
}

.modal_login_div .footer_modal {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7em;
  color: #9b9b9b;
}

.modal_news_div {
  position: relative;
}

.modal_news_div hr {
  background-color: #ddd;
  height: 1px;
  width: 89%;
  margin: 0 auto;
  border: none;
  margin-bottom: 15px;
}

.modal_news_div .footer_modal {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7em;
  color: #9b9b9b;
}

.close {
  color: var(--cl-gray-05);
  font-size: 58px;
  line-height: 58px;
  font-weight: 400;
  z-index: 9;
}

.close:hover,
.close:focus {
  color: var(--cl-white);
  text-decoration: none;
  cursor: pointer;
}

.content_modal {
  padding-bottom: 20px;
  width: 100%;
}

.content_modal .div_form {
  margin: 0 auto;
  display: flex;
  flex-basis: 90%;
  flex-wrap: wrap;
  text-align: left;
}

.div_form form {
  width: 100%;
}

.div_form .block-form {
  box-shadow: none !important;
}

.ancor_login {
  display: flex;
  width: 100%;
  justify-content: center;
}

.ancor_login a {
  color: var(--color-solid-progress);
}

.reset-password {
  text-align: right;
  color: var(--color-gray-60) !important;
}

/* .div_form input,
.div_form textarea,
.div_form button {
  padding: 0.9em 0.5em;
  width: 100%;
  color: #555;
  font-family: "Roboto", sans-serif;
  outline: none;
  font-size: 1em;
  border-radius: 7px;
  border: solid 1px #ccc;
  margin-top: 15px;
  font-weight: 300;
}

.div_form button {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9em;
} */
#form_news_msg .msg_notify {
  border-color: #fff !important;
  color: #fff !important;
  /*width: 50%;*/
  margin-bottom: 10px !important;
  margin: 0 auto;
}

#form_leads {
  max-width: 600px !important;
}

#form_leads .label-gray a {
  color: var(--color-black-20);
}

.label-gray {
  color: var(--color-gray-40);
  text-align: center;
}

#form_leads_msg .msg_notify {
  width: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.title_modal {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  color: #fe5000;
  font-size: 1.5em;
  margin-bottom: 10px !important;
  padding-bottom: 1em;
  display: flex;
  justify-content: center;
}

.bem_span {
  font-size: 0.8em;
  color: green;
  font-weight: 500;
}

.mal_span {
  font-size: 0.8em;
  color: red;
  font-weight: 500;
}

.modal-fade {
  display: none;
  position: fixed;
  background-color: rgba(33, 44, 85, 0.8);
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
}

.modal-dialog {
  /*display: flex;*/
  width: 45%;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-top: 0;
  opacity: 0;
}

.thumb-news-home {
  position: relative;
}

.sorry {
  font-size: 3em;
  text-align: center;
  width: 100%;
  color: #ccc;
}

.imagem-mascara {
  width: 100%;
  height: 100%;
  position: absolute;
  /* background-size: auto; */
  top: 0;
  left: 0;
  /* background-position: center; */
  background: url(../images/icones/play.png) 50% 50% no-repeat;
}

.modal-dialog .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
}

/* galeria vertical */

#galeria-vip {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

#galeria-vip .container-mov {
  margin-left: auto;
  margin-right: auto;
  width: 200%;
  margin-top: 20vw;
  /* Espaço para mostrar que o scroll começa somente quando o container surgir */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: rotate(25deg);
  left: -25%;
}

#galeria-vip .container-mov:first-child {
  margin-top: 30vw;
}

#galeria-vip .movable-div {
  width: max-content;
  margin: 8px auto;
  display: flex;
  gap: 16px;
  position: relative;
  transition: 0.2s forwards linear;
  left: -25%;
}

#galeria-vip .movable-div h2 {
  font-size: var(--tp-xl);
}

#galeria-vip .img-gallery {
  min-width: 25vw;
  height: 20vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contato-main {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.contato-header {
  margin-top: 40px;
  text-align: center;
}

.login-sair {
  background-color: black;
  color: white;
}

.form_comment {
  display: flex;
  flex-direction: column;
}

.form-btn-input {
  color: white;
  margin-top: 10px;
  border: solid 1px white;
  border-radius: 5px;
}
