:root {
  --text-color: #121212;
  --section-background-color-gradient: linear-gradient(
    to top,
    rgb(154, 154, 154),
    rgb(223, 223, 223)
  );
  --section-text-background-color: linear-gradient(
    to top,
    rgb(101, 101, 101),
    rgb(223, 223, 223)
  );
  --price-background-color: rgba(0, 0, 0, 0.8);
  --icon-color: #1f1f1f;
  --section-border: solid 1px rgb(26, 26, 26);
  --text-and-others-border: solid 1px rgb(27, 27, 27);
  --box-shadow-section: 0 3px 0.8rem 0.4rem rgba(0, 0, 0, 0.5);
  --title-h1-color: rgba(9, 9, 9, 0.991);
  --title-h2-color: rgba(15, 15, 15);
  --title-h3-color: rgb(22, 22, 22);
  --title-h4-color: rgb(17, 17, 17);
  --h2-border-bottom: solid 2px black;
}

/* Scrollbar para Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.2);
  border-left: var(--text-and-others-border);
}

::-webkit-scrollbar-thumb {
  background: var(--icon-color); /* escuro */
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
  transition: background 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 31, 31, 0.8);
}

/* Scrollbar para Firefox */
* {
  scrollbar-color: var(--icon-color) rgba(200, 200, 200, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-color: rgb(40, 40, 40) rgb(216, 216, 216);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Lora", sans-serif;
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.4;
  background-color: #4d4d4d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(8,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23E2ECF4'/%3E%3Cstop offset='1' stop-color='%23FFF9F9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='27' height='27' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%234D4D4D' cx='13.5' cy='13.5' r='13.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-attachment: fixed;
  overflow-y: auto;
  max-width: 1900px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header {
  z-index: 9999;
  position: sticky;
  width: 100vw;
  max-width: 100%;
  top: 0;
  left: 0;
  height: 12rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgb(24, 24, 24);
  box-shadow: 0 0 0.8rem 0.4rem rgba(10, 10, 10, 0.6);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto;
  gap: 1rem;
  width: 100%;
  padding: 1rem 2rem;
  box-sizing: border-box;
  max-width: 1200px;
  position: relative;
}

.container-brand-logo {
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-link {
  text-decoration: none;
  color: #121212;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 0.5rem;
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 0.5rem;
}

.link-icon:hover {
  transform: scale(1.05);
  color: #1e1e1e;
  border-bottom: solid 1px #1e1e1e;
  transition: all 0.3s ease-in-out;
  background-color: #f7f7f7;
}

.link-icon i {
  font-size: 1.6rem;
  color: var(--icon-color);
  transition: all 0.3s ease-in-out;
}

#menu-burguer-container {
  align-items: center;
  gap: 2rem;
  flex-direction: column;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  height: auto;
  margin: 0 auto;
  background-color: #4d4d4d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(8,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23E2ECF4'/%3E%3Cstop offset='1' stop-color='%23FFF9F9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='27' height='27' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%234D4D4D' cx='13.5' cy='13.5' r='13.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-attachment: fixed;
  border-radius: 0.5rem;
  box-shadow: 0 4px 5px 3px rgb(43, 43, 43);
  border-bottom: var(--text-and-others-border);
  border-left: var(--section-border);
  border-right: var(--section-border);
  position: absolute;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  padding: 2rem 1rem 1rem 1rem;
}

#menu-burguer-container.show {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

#menu-burguer {
  display: none;
  position: relative;
  font-size: 3rem;
  color: var(--icon-color);
  cursor: pointer;
  margin-left: 4rem;
  transition: all 0.5s ease-in-out;
}

#menu-burguer:hover {
  color: #414141;
}

#menu-burguer-container .burger-links {
  margin-top: 3rem;
}

.burger-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
}

.burguer-links a {
  text-decoration: none;
  color: #121212;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 0.5rem;
  flex: 1;
}
.burguer-links a:hover {
  transform: scale(1.05);
  color: #1e1e1e;
  border-bottom: solid 1px #1e1e1e;
  transition: all 0.3s ease-in-out;
}

#close-btn {
  border-radius: 0.5rem;
  border: solid 1.8px var(--icon-color);
  position: absolute;
  font-size: 1.8rem;
  top: 1rem;
  color: var(--icon-color);
  padding: 0.5rem;
  transition: all 0.5s ease-in-out;
}

#close-btn:hover {
  color: #414141;
  background-color: #d9d9d9;
}

/* Sobre Mim */
.aboutme {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  width: 80%;
  border-left: var(--text-and-others-border);
  border-right: var(--text-and-others-border);
  border-top: var(--text-and-others-border);
  box-shadow: var(--box-shadow-section);
  background-color: rgba(255, 255, 255, 0.4);
}

h1 {
  font-size: 3rem;
  text-align: center;
  color: var(--title-h1-color);
  margin-top: 2rem;
}

.aboutme h2 {
  font-size: 3rem;
  text-align: center;
  color: var(--title-h2-color);
  align-self: flex-start;
  border-bottom: var(--h2-border-bottom);
  background-color: rgb(216, 216, 216);
  box-shadow: var(--box-shadow-section);
  border-radius: 0.5rem;
  padding: 0.8rem 1.5rem;
  margin: 0;
  margin-bottom: 2rem;
}

.article {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  max-width: 1200px;
}

.article-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
}

.article-mobile .article-part-1 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.article-mobile .container-img-aboutme {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.article-mobile .container-img-aboutme img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}

.article-part-1 {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  height: auto;
}

.article p,
.article-mobile p {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  /* line-height: clamp(1.4rem, 2.5vw, 2.4rem); */
  line-height: 1.6 !important;
  text-align: center;
  max-width: 600px;
  color: rgb(30, 30, 30) ;
  border-bottom: var(--text-and-others-border);
  background-color: rgb(216, 216, 216);
  border-radius: 0.5rem;
  padding: 1.5rem;
  font-weight: 500;
  box-shadow: var(--box-shadow-section);
  margin: 0 auto;
  margin-top: 2rem;
  line-height: 1.2;
  width: 100%;
}

.article-part-1,
.container-img-aboutme {
  flex: 1 1 50%;
  max-width: 600px;
  min-width: 300px;
}

.container-img-aboutme {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #adadad;
  background: radial-gradient(
    circle,
    rgba(173, 173, 173, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(173, 173, 173, 1) 100%
  );
  border-radius: 1rem;
  flex: 1;
  border-radius: 1rem;
  border: var(--text-and-others-border);
  box-shadow: -4px 5px 4px rgba(39, 39, 39, 0.7);
  margin-left: 2rem;
}

.container-img-aboutme img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
/* Serviços */
.container-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: transparent;
}

.description-descont-text {
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
  width: 80%;
  max-width: 1000px;
  padding: 1rem;
}

.descont-link {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}
.descont-link,
.descont-message,
.fa-square-whatsapp-services {
  touch-action: manipulation;
  pointer-events: auto;
}

.descont-message {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  text-decoration: underline;
  animation: pulse 2s ease-in-out infinite;
  transition: transform 2s ease;
  cursor: pointer;
}

.descont-message:hover,
.descont-message:active {
  animation: none;
  color: #0e0e0e;
  transform: scale(1.05);
}

.fa-square-whatsapp-services {
  color: rgb(9, 173, 9);
  font-size: 4.5rem;
  animation: shake 0.8s ease-in-out infinite;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
  cursor: pointer;
  margin-top: 3rem;
}

.fa-square-whatsapp-services:hover {
  color: rgb(45, 206, 45);
  animation: none;
  transform: rotate(-10deg);
}

.fa-square-whatsapp-services:active {
  animation: none;
  transform: scale(1);
  transform: rotate(-10deg);
}

.descont-link {
  color: black;
  text-decoration: none;
}
.descont-link:visited {
  color: black;
  text-decoration: none;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

.container-services h2 {
  font-size: 3rem;
  text-align: center;
  color: var(--title-h2-color);
  margin-top: 1rem;
  border-bottom: var(--h2-border-bottom);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
}

.services {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 1rem auto;
  padding: 1rem;
  height: auto;
  width: 90%;
  max-width: 1200px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-radius: 0.5rem;
  border-bottom: 2px solid black;
  background-color: transparent;
}

.services h3 {
  font-size: 2rem;
  text-align: center;
  color: var(--title-h3-color);
  margin-top: 1rem;
}

.service,
.service-mobile {
  display: flex;
  align-self: flex-start;
  justify-self: center;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service:hover,
.service-mobile:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-section);
  border-radius: 0.5rem;
  background-color: rgb(231, 231, 231);
  position: relative;
  z-index: 9999;
}

.like-service {
  display: none;
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: bold !important;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.whats-btn {
  display: none;
  margin-top: auto; 
  align-self: center;
  background-image: linear-gradient(to top, #0e4b25, #1c7c3f, rgb(40, 164, 86));
  color: rgb(234, 234, 234);
  border: none;
  box-shadow: 0 3px 0.8rem 0.4rem rgba(0, 0, 0, 0.5);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  animation: pulse 2s linear infinite;
}

.service:hover .whats-btn,
.service-mobile:hover .whats-btn {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.service:hover .like-service,
.service-mobile:hover .like-service {
  display: block;
  opacity: 1;
}

.service p,
.service-mobile p {
  font-size: 1.4rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
  color: var(--text-color);
  flex-grow: 1;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin-top: 1rem;
}

.description-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.description-price {
  font-size: 1.6rem;
  color: rgb(169, 127, 21);
}

.days {
  font-size: 1.4rem;
  font-weight: bold;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 0.5rem;
  width: 100%;
}

.price-container p {
  color: white;
}

.price {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 0 0;
  padding: 1rem;
  border: solid 1px white;
  border-radius: 0.5rem;
  background-color: black;
  max-width: max-content;
  text-align: center;
}

.epilacao-facial-buco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  padding: 0.5rem;
  width: 100%;
}

.epilacao-facial,
.buco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 0.5rem;
  width: 100%;
  margin: 0.5rem 0;
  font-size: 1.4rem;
}

.epilacao-facial p,
.buco p {
  color: whitesmoke;
}

h5 {
  color: var(--title-h4-color);
}

.service i,
.service-mobile i {
  font-size: 1.8rem;
  color: #ca9d08;
}

.service-img-container {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  border-radius: 1rem;
  border: solid 2.5px rgb(33, 33, 33);
  box-shadow: 1px 5px 4px black;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}

.service:hover .service-img-container img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Mais pra frente caso a galeria fique muito grande */
/* .ver-menos {
  display: none;
}

.ver-mais,
.ver-menos {
  font-size: 2rem;
  color: var(--icon-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem;
  margin: 1rem auto;
  max-width: 20rem;
}

.ver-menos {
  display: none;
}
.ver-mais i,
.ver-menos i {
  font-size: 1.8rem;
}
.ver-mais:hover,
.ver-menos:hover {
  transform: translateY(-50%) scale(1.1);
  color: rgb(77, 77, 77);
} */

/* Meus trabalhos */
.works {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem;
  width: 90%;
}

.works h2 {
  font-size: 3rem;
  text-align: center;
  color: var(--title-h2-color);
  margin-top: 1rem;
  border-bottom: var(--h2-border-bottom);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
}

.scroller {
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  box-shadow: inset var(--box-shadow-section);
  border-radius: 0.5rem;
  background-color: rgba(215, 215, 215, 0.637);
  padding: 2rem;
  margin: 0 auto;
}

.scroller__inner {
  display: flex;
  gap: 2rem;
  padding: 1rem;
}

.slide {
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide .slide-img {
  width: 100%;
  height: 22rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  border: solid 4px rgb(24, 24, 24);
  display: block;
  object-position: center center;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 1rem));
  }
}

.slide h4 {
  font-size: 2rem;
  text-align: center;
  color: var(--text-color);
  padding: 0.5rem;
  border-radius: 1rem;
  border-top: solid 2px black;
  background-color: rgb(252, 252, 252);
  width: 100%;
  margin-bottom: 1rem;
}

/* Combos e Pacotes */

.container-combos-and-packages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 2rem;
  border: 0.5rem;
  border-bottom: var(--section-border);
  border-left: var(--section-border);
  box-shadow: var(--box-shadow-section);
  position: relative;
  overflow: hidden;
}

.container-combos-and-packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-40%) translateY(0);
  width: 120rem;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  background-image: url("images/background-combo-package.png");
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  opacity: 1;
  z-index: -1;
}

.container-combos-and-packages h2 {
  font-size: 3rem;
  text-align: center;
  color: var(--title-h2-color);
  margin-top: 1rem;
  border-bottom: var(--h2-border-bottom);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
}

.combos-and-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  width: 100%;
  gap: 1rem;
}

.combo-container {
  border-bottom: 2px solid rgb(19, 19, 19);
}

.combo-container,
.package-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  height: 100%;
}

.combo-item,
.package-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.3s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.combo-item:hover,
.package-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-section);
  border-radius: 0.5rem;
  background-color: rgb(247, 247, 247);
  z-index: 9999;
}

.combo-item .like-service,
.package-item .like-service {
  display: none;
  font-size: 1.6rem !important;
  color: var(--text-color);
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.combo-item .whats-btn,
.package-item .whats-btn {
  display: none;
  margin-top: auto;
  align-self: center;
  background-image: linear-gradient(to top, #0e4b25, #1c7c3f, rgb(40, 164, 86));
  color: rgb(234, 234, 234);
  border: none;
  box-shadow: 0 3px 0.8rem 0.4rem rgba(0, 0, 0, 0.5);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  animation: pulse 2s linear infinite;
}

.combo-item:hover .whats-btn,
.package-item:hover .whats-btn {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.combo-item:hover .like-service,
.package-item:hover .like-service {
  display: block;
  opacity: 1;
}


.combo-container h3,
.package-container h3 {
  font-size: 2.4rem;
  color: var(--title-h3-color);
  margin: 0 auto;
}

.combo-item h4,
.package-item h4 {
  font-size: 2rem;
  color: var(--title-h4-color);
  margin: 0 auto;
  text-align: center;
}

.combo-container i,
.package-container i {
  font-size: 1.4rem;
  color: var(--icon-color);
}

.package-item .combo-packages-imgs {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.package-item .combo-packages-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.combo-packages-imgs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 20rem;
  box-sizing: border-box;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.combo-container .combo-packages-imgs img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.combo-packages-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
  border: solid 4px rgb(27, 27, 27);
}

.combo-package-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: rgb(12, 12, 12);
  border-radius: 0.5rem;
  border: solid 1px black;
  padding: 0.5rem;
  margin: 0 auto;
  max-width: max-content;
  color: whitesmoke;
}

.combo-package-price i {
  color: rgb(169, 127, 21);
}

.package-prices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.combo-price i {
  font-size: 2rem;
  color: #d0a616;
}

.descont {
  color: #13c652;
}

.original-price {
  color: rgb(253, 68, 68);
  text-decoration: line-through;
}

.units {
  padding: 0 0.5rem;
  border-bottom: solid 1px rgb(165, 132, 60);
  border-radius: 0.5rem;
}

/* Avaliações */

.container-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem;
  width: 90%;
}
.container-reviews h2 {
  font-size: 3rem;
  text-align: center;
  color: var(--title-h2-color);
  margin-top: 1rem;
  border-bottom: var(--h2-border-bottom);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
}

.reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  width: 80%;
  border-radius: 0.5rem;
  background-color: transparent;
  border-bottom: var(--section-border);
  border-right: var(--section-border);
  box-shadow: inset var(--box-shadow-section);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("images/background-reviews.png");
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  opacity: 1;
  z-index: -1;
}

.review {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  width: 80%;
}

.review-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  width: 80%;
}

.name-and-img {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
}

.name-and-img-4-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.name-and-img h4 {
  font-size: 2rem;
  color: var(--title-h4-color);
  margin: 0;
}

.name-and-img-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.name-and-img-4 h4 {
  font-size: 2rem;
  text-align: center;
  color: var(--title-h4-color);
  margin: 0;
}

.name-and-img-4 img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 50%;
  border: var(--section-border);
}

.name-and-img img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 50%;
  border: var(--section-border);
}

.review-text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: justify;
  max-width: 600px;
  color: var(--text-color);
  padding: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border-left: var(--text-and-others-border);
  border-bottom: var(--text-and-others-border);
  background-color: whitesmoke;
}

.reviews-text-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.review-4 .review-text {
  flex: 1;
  text-align: center;
  max-width: none;
  border-left: var(--text-and-others-border);
  border-bottom: var(--text-and-others-border);
  border-right: var(--text-and-others-border);
}

.reviews-column-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.review-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.review-column .review-text {
  width: 100%;
  text-align: center;
  margin: 0 0 0.5rem 0;
  align-self: stretch;
}

.review-text i {
  font-size: 1.8rem;
  color: var(--icon-color);
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
}

.stars i {
  font-size: 1.6rem;
  color: #d1a71c;
  background-color: rgb(23, 23, 23);
  padding: 0.3rem;
  border-radius: 0.5rem;
}

.stars-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.stars-centered i {
  font-size: 1.6rem;
  color: #d1a71c;
  background-color: rgb(23, 23, 23);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.review-text-with-stars .review-text {
  margin-bottom: 0;
}

/* Footer */

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}

.contacts-mobile {
  display: none;
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1rem;
  width: 80%;
}

footer h2 {
  font-size: 2.4rem;
  text-align: center;
  color: var(--title-h2-color);
  margin-top: 1rem;
  border-bottom: var(--text-and-others-border);
  padding: 0.5rem 0;
}

.payment-methods,
.contact-1,
.contact-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  width: 70%;
  border-radius: 0.5rem;
}

.fa-pix,
.fa-sack-dollar,
.fa-credit-card {
  font-size: 1.8rem;
  padding: 0 0.5rem;
  color: var(--icon-color);
}

.payment-descont {
  font-size: 1.2rem;
  color: #0b0b0b;
  font-weight: 500;
}

.contact-1,
.scheduling {
  background-color: rgba(245, 245, 245, 0.514);
  border-bottom: var(--text-and-others-border);
  border-left: var(--text-and-others-border);
  border-right: var(--text-and-others-border);
  box-shadow: inset var(--box-shadow-section);
}

.contact-i {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1rem;
}

footer h4 {
  font-size: 2rem;
  text-align: center;
  color: var(--title-h4-color);
  font-weight: 500;
  font-family: "Lora";
}

footer a {
  text-decoration: none;
  cursor: pointer;
}

.fa-square-envelope {
  color: rgb(220, 38, 25);
}

.fa-square-envelope:hover {
  color: rgb(239, 69, 56);
}

.fa-square-instagram {
  color: rgb(253, 36, 115);
}

.fa-square-instagram:hover {
  color: rgb(250, 65, 133);
}

.fa-square-whatsapp {
  color: rgb(8, 171, 57);
}

.fa-square-whatsapp:hover {
  color: rgb(50, 206, 97);
}

footer i {
  font-size: 2.8rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

footer i:hover {
  transform: scale(1.1);
}

footer a {
  text-decoration: none;
}

.copyright {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: var(--text-color);
}

.fa-linktree {
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.fa-linktree:hover {
  transform: scale(1.15);
}

.fa-location-dot {
  color: rgb(194, 36, 21);
  font-size: 2.4rem;
  cursor: pointer;
  margin-bottom: 0.8rem;
}

.address {
  font-size: 1.6rem;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
}

@media (min-width: 1800px) {
  .nav-link {
    font-size: 4rem;
  }
  .container-brand-logo {
    height: 7rem;
  }
}

@media (min-width: 1400px) {
  header {
    flex-direction: row;
  }
  .nav-link {
    font-size: 2rem;
  }
  .container-brand-logo {
    height: 6rem;
    margin-left: 8rem;
  }
  .reviews {
    width: 100%;
  }
  .description {
    margin-top: 2rem;
  }
  .description-price {
    font-size: 2rem;
  }
  .days {
    font-size: 1.8rem;
  }
  .services p {
    font-size: 2rem;
  }

  .combo-package-price {
    font-size: 2rem;
  }
  .review-text {
    margin-left: 10rem;
  }

  .name-and-img h4,
  .name-and-img-4 h4 {
    color:rgb(253, 225, 83);
  }
}

@media (min-width: 1300px) {
  .aboutme h2 {
    font-size: 3rem;
  }

  .article-part-1 {
    align-self: center;
  }

  .article p {
    font-size: 2.4rem;
  }
}

@media (max-width: 978px) {
  .services {
    width: 80%;
  }
}

@media (max-width: 924px) {
  .article-mobile .container-img-aboutme {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .article-mobile .container-img-aboutme img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .aboutme h2 {
    align-self: center;
  }
  .article {
    display: none;
  }
  .article-mobile {
    display: flex;
  }
  .container-combos-and-packages {
    width: 80%;
  }
  .combos-and-packages {
    grid-template-columns: repeat(1, 1fr);
  }

  .container-combos-and-packages::before {
    content: "";
    background-image: none;
    background-color: transparent;
    filter: blur(1px);
    opacity: 1;
  }
}

@media (max-width: 816px) {
  header {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
  }

  .services {
    width: 60%;
  }
  .service-mobile {
    width: 360px;
  }
  #menu-burguer {
    display: block;
  }

  nav {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .nav-links {
    display: none;
  }
  .container-brand-logo {
    height: 6rem;
    flex-shrink: 0;
  }

  .contacts {
    display: none;
  }

  .scheduling {
    transform: translateY(10%);
  }
  footer {
    width: 70%;
  }
  /* Show mobile version */
  .contacts-mobile {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 0.5rem;
  }

  /* First column - Scheduling takes full height */
  .contacts-mobile-1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20rem;
  }

  .scheduling {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 90%;
  }

  /* Second column - Stacks payment and location vertically */
  .contacts-mobile-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .payment-methods-mobile,
  .location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 80%;
  }

  /* Fix duplicate heading in payment methods */
  .payment-methods-mobile h4:nth-child(2) {
    display: none;
  }

  /* Adjust font size for mobile */
  footer h4 {
    font-size: 2rem;
  }

  .payment-descont {
    font-size: 1rem;
    word-break: break-word;
    font-weight: bold;
  }

  .fa-pix,
  .fa-sack-dollar,
  .fa-credit-card {
    font-size: 1.6rem;
  }

  .contact-i {
    gap: 1rem;
  }

  footer i {
    font-size: 2.6rem;
  }

  .copyright {
    font-size: 1rem;
    font-weight: bold;
  }

  .fa-linktree {
    width: 2rem;
    height: 2rem;
  }

  .fa-location-dot {
    font-size: 2rem;
  }

  .address {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .whats-btn, .combo-item .whats-btn, .package-item .whats-btn {
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
    margin-top: 0.8rem;
    display: block;
    animation: pulse 2s linear infinite;
  }
  .like-service {
    display: block;
    opacity: 1;
  }

  .combo-item .like-service,
  .package-item .like-service {
    display: block;
    opacity: 1;
  }
  
  .works {
    width: 70%;
  }
  .combo-container {
    width: 90%;
    margin: 0 auto;
  }
  .descont-message {
    font-size: 2rem;
  }
  .fa-square-whatsapp-services {
    font-size: 3.5rem;
  }
}

@media (max-width: 690px) {
  .combo-container {
    width: 80%;
  }
  .package-item .combo-packages-imgs img {
    width: 80%;
    height: 15rem;
    aspect-ratio: 1 / 1;
  }
  .combo-packages-imgs {
    height: 15rem;
  }

  .combo-packages-imgs {
    max-width: 600px;
    aspect-ratio: 1 / 1;
  }
  footer {
    width: 60%;
  }
  .article-mobile p {
    width: 70%;
  }
  .scheduling h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .package-item .combo-packages-imgs img {
    width: 70%;
    height: 15rem;
    aspect-ratio: 1 / 1;
  }
  .combo-packages-imgs {
    height: 15rem;
  }

  .combo-packages-imgs {
    max-width: 400px;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 590px) {
  .description-descont-text {
    width: 100%;
    padding: 0.5rem;
  }

  .descont-link {
    width: 70%;
  }
  .descont-message {
    font-size: 1.8rem;
  }

  .fa-square-whatsapp-services {
    font-size: 3rem;
  }
  footer {
    width: 50%;
  }
  .address {
    font-size: 1.4rem;
  }
}

@media (max-width: 570px) {
  h1 {
    font-size: 2.6rem;
  }
  .container-brand-logo {
    height: 5rem;
  }
  .works {
    width: 60%;
  }
  .reviews {
    width: 60%;
  }
}

@media (max-width: 534px) {
  .description-descont-text {
    width: 95%;
  }
  .descont-message {
    font-size: 1.6rem;
  }

  .article-mobile p {
    width: 60%;
  }
}

@media (max-width: 520px) {
  .fa-square-whatsapp-services {
    margin-top: 2rem;
  }
}

@media (max-width: 500px) {
  footer h4 {
    font-size: 1.5rem;
  }
  .scheduling {
    margin-top: 5rem;
  }
  footer {
    width: 45%;
  }
  .scheduling {
    transform: translateY(0%);
  }
}

@media (max-width: 480px) {
  .descont-text {
    flex-direction: column;
  }
  .descont-link {
    flex-direction: column;
  }

  .fa-square-whatsapp-services {
    font-size: 3.5rem;
    margin-top: 0;
  }

  .aboutme {
    width: 70%;
  }
  .combo-item h4 {
    font-size: 1.6rem;
    text-align: center;
  }

  h1 {
    font-size: 2.2rem;
  }
  .aboutme h2 {
    font-size: 2.6rem;
  }
  .container-brand-logo {
    height: 4.5rem;
  }

  .article-mobile p {
    font-size: 1.4rem;
    width: 55%;
  }

  .works {
    width: 55%;
  }

  .scroller {
    width: 70%;
  }

  .slide .slide-img {
    height: 20rem;
  }

  .services {
    width: 60%;
  }

  .service-mobile {
    width: 360px;
  }

  .description-mobile {
    margin: 0 auto;
    text-align: center;
    width: 90%;
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .combos-and-packages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
  }

  .epilacao-facial-buco {
    width: 50%;
  }

  .combo-item,
  .package-item {
    width: 100%;
  }

  .package-item .combo-packages-imgs img {
    width: 100%;
    height: 10rem;
  }
  .combo-packages-imgs {
    height: 10rem;
  }

  .package-item .combo-packages-imgs img {
    width: 50%;
  }

  .combo-item .combo-packages-imgs {
    width: 60%;
    height: 10rem;
    margin: 0 auto;
  }
  .package-item .combo-packages-imgs {
    width: 100%;
    height: 10rem;
    margin: 0 auto;
  }

  .reviews {
    width: 70%;
  }

  .review {
    align-items: center;
    justify-content: center;
    width: 70%;
  }

  .review-4 {
    flex-direction: column;
    align-items: center;
  }

  .name-and-img {
    align-self: center;
  }

  .review-text {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: justify;
    font-weight: 500;
    width: 80%;
  }

  .review-4,
  .reviews-column-container,
  .review-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews-text-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 90%;
  }

  .reviews-column-container {
    flex-direction: column;
    width: 90%;
  }

  .review-column .review-text {
    width: 90%;
  }

  .review-text i {
    font-size: 1.8rem;
    color: var(--icon-color);
    margin-bottom: 1rem;
  }

  .stars {
    justify-content: center;
  }

  #michelli,
  #paula {
    color: rgb(187, 187, 187);
  }
  .address {
    font-size: 1.2rem;
  }
}
@media (max-width: 440px) {
  .description-descont-text {
    width: 60%;
  }

  .descont-link {
    width: 60%;
  }
  .descont-message {
    font-size: 1.6rem;
  }

  .container-brand-logo {
    height: 4rem;
  }

  #menu-burguer {
    margin-left: 2rem;
  }

  .address {
    font-size: 1rem;
  }
  footer {
    width: 35%;
  }
}

@media (max-width: 424px) {
  .description-descont-text {
    width: 60%;
  }
  .descont-link {
    width: 60%;
  }
  .descont-message {
    font-size: 1.6rem;
  }
  .fa-square-whatsapp-services {
    font-size: 3rem;
  }
}

@media (max-width: 390px) {
  .description-descont-text {
    width: 70%;
  }
  .descont-message {
    font-size: 1.4rem;
  }

  .fa-square-whatsapp-services {
    font-size: 2.4rem;
  }
  .combo-item .combo-packages-imgs {
    width: 50%;
  }

  h1 {
    font-size: 1.8rem;
  }

  .article-mobile p {
    font-size: 1.2rem;
    width: 45%;
  }

  #close-btn {
    font-size: 1.4rem;
  }

  .aboutme h2 {
    font-size: 2rem;
  }

  .container-brand-logo {
    height: 3rem;
  }

  #menu-burguer {
    font-size: 2.4rem;
    margin-left: 1.5rem;
  }
  .service {
    width: 50%;
  }
  .service-mobile {
    width: 300px;
  }
}
@media (max-width: 340px) {
  .descont-message {
    font-size: 1.3rem;
  }
}
