html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #232323;
  color: #f0f0ed;
}

.header {
  background: #232323d9;
  width: 100vw;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 50;
}

.logo {
  width: 70px;
}

/* Container principal */
.header-container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: center;
}

/* Navegação Desktop */
.nav-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.links {
  font-weight: 400;
  transition: 0.5s;
  font-size: 1.1em;
}

.links:hover {
  color: #e9cfa3;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.whatsapp-link-button {
  text-decoration: none;
}

/* Botão do WhatsApp */
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  width: 172px;
  height: 38px;
  background: #38ce58;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.whatsapp-button:hover {
  background: #43f569;
}

.whatsapp-button:active {
  background: #464444;
}

.whatsapp-button img {
  width: 20px;
}

/* Navegação Mobile */
.nav-mobile {
  display: none;
  flex-direction: row;
  width: 100%;
  padding: 2% 10%;
  background: #232323d9;
}

.nav-mobile a {
  margin-top: 10px;
}

/* Ícones do menu */
.menu-icons {
  display: flex;
  align-items: center;
}

.menu-icon {
  width: 24px;
  cursor: pointer;
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: black;
  z-index: 49;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Responsividade */
.nav-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.logo-mobile {
  padding-top: 15px;
  width: 100%;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #f5f5f5;
  margin-top: 20px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(260.56deg, #393939 12.41%, #1f1f1f 67.32%);
  position: absolute;
  top: 49px;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-links {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-links li {
  list-style: none;
  padding: 10px 0;
}

.mobile-links li a {
  text-decoration: none;
  color: #f5f5f5;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .header {
    height: 46px;
  }
  .main {
    margin: 46px 0 0;
  }

  .nav-desktop {
    display: none;
  }

  .no-scroll {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
  }

  .nav-mobile {
    display: flex;
  }
}

.banner {
  width: 100%;
  height: 80vh;
  padding-top: 96px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, #3a3939 6%, rgba(115, 115, 115, 0) 100%);
  position: relative;
}

.left_banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-left: 17%;
  gap: 20px;
}

.verify {
  color: #e9cfa3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  font-weight: 400;
}

.title_banner {
  color: #f0f0ed;
  font-weight: 700;
  font-size: 5em;
}

.button_text_banner {
  display: flex;
  gap: 10px;
  align-self: start;
  justify-content: center;
}

.banner_btn {
  width: 250px;
  font-size: 0.9em;
}

.info_text_banner {
  font-size: 0.8em;
  margin-top: 4px;
}

.text_span {
  color: #e9cfa3;
}

.right_banner {
  padding-right: 17%;
  overflow: hidden;
  background-image: url("/assets/imgs/man.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 50%;
  height: 100%;
  bottom: 0;
  position: absolute;
  right: 140px;
  filter: brightness(0.5); /* quanto menor, mais escuro */
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel {
  overflow: hidden;
  padding: 12px 0;
  background-color: #f0d6a3;
}

.carousel_track {
  display: flex;
  width: max-content;
  animation: scrollLoop 50s linear infinite;
}

.carousel_group {
  display: flex;
  gap: 20px;
  padding-right: 10px;
}

.carousel_item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.carousel_item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.carousel_item img {
  height: 20px;
}

.mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .banner {
    margin-top: 65px;
    padding-top: 0;
    height: auto;
    background-image: url("/assets/imgs/man.svg");
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .left_banner {
    padding-left: 0;
    width: 100%;
    justify-content: start;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    gap: 10px;
    z-index: 11;
  }

  .verify {
    font-size: 1em;
  }

  .title_banner {
    font-size: 3.5em;
  }

  .text_banner {
    font-size: 1.1em;
  }

  .button_text_banner {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-self: auto;
    align-items: center;
    padding-bottom: 40px;
  }

  .banner_btn {
    font-size: 1em;
    width: 100%;
    padding: 20px;
  }

  .right_banner_mobile {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(115, 115, 115, 0) 6%,
      #3f3d3d 100%
    );

    filter: brightness(0.5);
    z-index: 10; /* valor alto pra garantir que fique por cima */
  }
}

.person {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  padding: 0 17%;
}

.person_left {
  position: relative;
  width: 50%;
  height: 100%;
}

.person_bg_1 {
  position: absolute;
  bottom: 57px;
  width: 66%;
}

.person_bg_2 {
  position: absolute;
  bottom: 0;
  left: 35px;
  width: 78%;
}

.person_right {
  text-align: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.person_right h2 {
  font-size: 3em;
  color: #f0f0ed;
}

.person_text {
  font-size: 1.3em;
  color: #f0f0ed;
  position: relative;
  font-weight: 400;
  padding-bottom: 20px;
}

.l_aspas {
  position: absolute;
  z-index: -1;
  top: -30px;
}

.r_aspas {
  position: absolute;
  z-index: -1;
  bottom: -10px;
  right: 0;
}

.person_btn {
  width: 320px;
  font-size: 1em;
}

.mobile_person {
  display: none;
}

@media (max-width: 768px) {
  .person {
    flex-direction: column-reverse;
    padding: 10% 10%;
    justify-content: space-between;
    gap: 80px;
    height: 96vh;
  }

  .person_left {
    width: 100%;
    height: 50vh;
  }

  .person_btn_mobile {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .person_btn_mobile button {
    width: 100%;
  }

  .person_bg_1 {
    position: absolute;
    bottom: 88px;
    left: 15%;
    width: 62%;
    height: 36vh;
  }

  .person_bg_2 {
    position: absolute;
    bottom: 38px;
    left: 20%;
    width: 80%;
    height: 40vh;
  }

  .person_right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .person_right h2 {
    font-size: 2.7em;
  }
  .person_text {
    display: block;
    font-size: 1.1em;
  }
}

.how_to {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5% 17%;
  height: auto;
  gap: 20px;
  background-color: #3d3c3c;
}

.containers_how_to {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.how_to_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 50%;
  gap: 30px;
}

.how_to_left h1 {
  font-size: 2.5em;
}

.how_to_left h4 {
  font-size: 1.1em;
  color: #f0f0ed;
  font-weight: 400;
}

.how_to_btn {
  width: 240px;
  font-size: 0.8em;
  padding: 10px;
}

.how_to_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 50%;
  gap: 30px;
  text-align: start;
}

.container_how_to {
  display: flex;
  align-items: start;
  justify-content: left;
  padding-bottom: 20px;
  border-bottom: 1px solid #5d5c5c;
  width: 70%;
  gap: 20px;
}

.content_how_to {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.container_how_to h1 {
  font-size: 1.5em;
  color: #f0f0ed;
}

.container_how_to p {
  font-size: 1em;
  color: #f0f0ed;
  font-weight: 400;
}

.how_to_footer {
  margin-top: 20px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2% 0%;
  border-radius: 4px;
  background-color: #373636;
}

.how_to_footer p {
  font-size: 1.6em;
  color: #f0f0ed;
  font-weight: 400;
}

@media (max-width: 768px) {
  .how_to {
    padding: 5% 0;
  }

  .containers_how_to {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }

  .how_to_left {
    width: 100%;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
  }

  .how_to_left h4 {
    font-size: 1em;
  }

  .how_to_right {
    width: 90%;
  }

  .container_how_to {
    width: 100%;
  }

  .content_how_to p {
    font-size: 0.89em;
  }

  .how_to_footer {
    padding: 8% 5%;
    gap: 10px;
  }

  .how_to_footer img {
    width: 20%;
  }

  .how_to_footer p {
    font-size: 0.95em;
    text-align: justify;
  }

  .how_to_btn {
    width: 330px;
    font-size: 1em;
  }
}

.local {
  color: #ffffff;
  padding: 5% 17%;
  font-family: sans-serif;
}

.local_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.local_header_container_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.local_header_container_1 h1 {
  margin: 0;
  font-size: 2em;
}

.local_header_container_1 p {
  margin: 4px 0 0;
  color: #707070;
}

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

.local_header_container_2 a {
  color: #ddd;
  text-decoration: underline;
  font-size: 14px;
}

.carousel_local {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory; /* opcional para snapping suave */
  cursor: grab;
}

.carousel_local.active {
  cursor: grabbing;
}

.carousel_local::-webkit-scrollbar {
  display: none;
}

.carousel_local img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  scroll-snap-align: start;
  user-select: none;
  cursor: grab;
  pointer-events: auto;
}

.carousel_local img:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .local {
    padding: 5% 10%;
    width: 100%;
  }

  .local_header {
    flex-direction: column;
    gap: 25px;
  }

  .local_header_container_1 {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .local_header_container_1 h1 {
    font-size: 2.5em;
  }
}

.knowledge {
  padding: 5% 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.knowledge_container_1 h1 {
  display: flex;
  gap: 10px;
  font-size: 3em;
}

.knowledge_container_1 h1 img {
  width: 40px;
}

.knowledge_container_1 p {
  font-size: 1.15em;
}

.knowledge_container_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #e9cfa3;
  width: 100%;
  position: relative;
  height: 65vh;
}

.knowledge_container_2 img {
  position: absolute;
  height: 65vh;
  bottom: 0;
  left: 25%;
  z-index: 0;
}

.knowledge_content {
  display: flex;
  flex-direction: column;
  height: 60vh;
  justify-content: center;
  gap: 15px;
  width: 28%;
  position: absolute;
  top: 4%;
  left: 42%;
}

.knowledge_content h2 {
  font-size: 1.6em;
  font-weight: 400;
}

.knowledge_text {
  z-index: 1;
  min-height: 95px;
  text-align: center;
  border-radius: 5px;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .knowledge_container_1 h1 {
    font-size: 2.8em;
    justify-content: center;
  }

  .knowledge_container_1 h1 img {
    width: 35px;
  }

  .knowledge_container_1 p {
    font-size: 0.8em;
  }

  .knowledge_content {
    width: 85%;
    position: static;
  }

  .knowledge_content h2 {
    font-size: 1em;
    margin: 0 5%;
  }
}

.results {
  padding: 0 17%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.left_results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 18px;
  width: 50%;
}

.left_results h1 {
  font-size: 2.5em;
}

.left_results p {
  font-size: 1.2em;
  color: #f0f0ed;
  font-weight: 400;
}

.btn_results {
  width: 250px;
  font-size: 0.8em;
  padding: 10px;
}

.right_results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 15px;
  background-repeat: no-repeat;
  background-size: 800px;
  background-position: center;
  min-height: 700px;
}

.container_results {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #3a3a3a2c;
  min-width: 520px;
  border-radius: 6px;
  padding: 20px 30px;
}

.container_results img {
  border-right: 1px solid #5a5a5a;
  padding-right: 20px;
  width: 34%;
}

.container_text_results {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}

.container_text_results h2 {
  font-size: 1.2em;
  color: #f0f0ed;
}

.container_text_results p {
  font-size: 1.1em;
  font-weight: 400;
}

@media (max-width: 768px) {
  .results {
    padding: 2% 0;
    flex-direction: column;
    align-items: center;
  }

  .left_results {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  .left_results p {
    font-size: 0.75em;
  }

  .right_results {
    width: 100%;
    min-height: 500px;
    background-size: cover;
  }

  .container_results {
    max-width: 90%;
    min-width: 0;
    height: auto;
    padding: 20px 10px;
  }

  .container_text_results h2 {
    font-size: 1.2em;
  }

  .container_text_results p {
    font-size: 0.85em;
  }

  .btn_results {
    width: 370px;
    font-size: 1em;
  }
}

.rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 2%;
}

.rating h1 {
  text-align: center;
  font-size: 2.8em;
  line-height: 1;
}

.rating_carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  overflow: hidden;
}

.rating_arrow {
  cursor: pointer;
  height: auto;
  user-select: none;
  z-index: 2;
}

.rating_slide {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #3a3a3a2c;
  border-radius: 5px;
  gap: 10px;
  padding: 50px 42px;
  position: relative;
  min-width: 300px;
  max-width: 600px;
  transition: all 0.3s ease-in-out;
}

.rating_slide.active_rating {
  display: flex;
}

.rating_aspas {
  position: absolute;
  top: 10%;
  left: 9%;
  opacity: 0.4;
}

.rating_slide h1 {
  z-index: 1;
  font-size: 1.5em;
  text-transform: uppercase;
  color: #fff;
}

.rating_slide p {
  z-index: 1;
  font-size: 1em;
  font-weight: 400;
  color: #f0f0f0;
  line-height: 1.4;
}

.rating_selector {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.rating_circle {
  width: 5px;
  height: 5px;
  border: 1px solid #f0f0ed;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
}

.rating_circle.active_rating {
  background-color: #f0f0ed;
}

@media (max-width: 768px) {
  .rating {
    padding: 15% 0;
  }
  .rating_aspas {
    top: 6%;
    left: 11%;
  }
}

.before_after {
  padding: 10% 0 10% 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.text_ba {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.text_ba h1 {
  font-size: 2.5em;
}

.text_ba p {
  font-size: 1.05em;
  font-weight: 400;
}

.container_ba {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.imagem_ba {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 334px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 9px;
  border: 1px solid #f0f0ed;
}

.imagem_ba h2 {
  color: #f0f0ed;
}

@media (max-width: 768px) {
  .before_after {
    padding: 0 0 10% 0;
    flex-direction: column;
    gap: 20px;
  }

  .text_ba {
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 0 7%;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-bottom: 2%;
}

.faq h1 {
  font-size: 2.8em;
}

.faq_content {
  width: 38%;
}

.faq_item {
  border-bottom: 1px solid #5d5c5c;
  padding: 20px 0;
}

.faq_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq_container h2 {
  font-size: 1.4em;
}

.faq_container img {
  width: 25px;
}

.faq_item p {
  font-size: 1em;
  color: #f0f0ed;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq_item.open p {
  max-height: 500px; /* valor alto o suficiente pro conteúdo caber */
  padding-top: 15px;
}

.faq_plus {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn_faq {
  width: 270px;
  font-size: 0.9em;
  padding: 10px;
}

@media (max-width: 768px) {
  .faq {
    padding-bottom: 10%;
  }
  .faq h1 {
    font-size: 2.4em;
    text-align: center;
  }

  .faq_content {
    width: 80%;
  }

  .faq_container h2 {
    font-size: 1.1em;
  }

  .btn_faq {
    width: 335px;
    font-size: 1.1em;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 17%;
  background-color: #2e2d2d;
}

.logo_footer {
  width: 7%;
}

.container_footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 40px;
}

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

.footer_links a {
  color: #f0f0ed;
  text-decoration: none;
  font-size: 1em;
  font-weight: 400;
  transition: 0.2s ease;
}

.footer_links a:hover {
  color: #e9cfa3;
}

.social {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 5px;
}

.social a img {
  width: 25px;
}

@media (max-width: 768px) {
  .footer {
    padding: 4% 10%;
    gap: 20px;
  }

  .logo_footer {
    width: 15%;
  }

  .container_footer {
    gap: 20px;
  }

  .social {
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup_box {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1 / 1; /* proporção quadrada */

  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.popup_close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 2;
}

.popup_content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 20px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* camada escura para contraste */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  gap: 12px;
}

.popup_content h1 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.popup_content p {
  font-size: 2em;
  font-weight: 400;
  margin: 0;
}

.whatsapp-highlight {
  color: #25d366;
  font-weight: bold;
}

.popup_button {
  margin-top: 15px;
  background: #00e676;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.popup_button:hover {
  background: #00c853;
}

@media (max-width: 678px) {
  .popup_box {
    width: 90%;
    aspect-ratio: unset; /* remove proporção fixa */
    height: auto;
    min-height: 400px;
    border-radius: 8px;
  }

  .popup_content {
    padding: 20px 15px;
    gap: 10px;
  }

  .popup_content h1 {
    font-size: 1.8em;
  }

  .popup_content p {
    font-size: 1.1em;
  }

  .popup_button {
    font-size: 0.95em;
    padding: 10px 16px;
    width: 100%;
  }

  .popup_close {
    font-size: 22px;
    top: 8px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex !important;
  }
}



@media (max-width: 390px) {
  .person_bg_1 {
        position: absolute;
        bottom: 88px;
        left: 15%;
        width: 62%;
        height: 26vh;
    }
  .person_bg_2 {
    position: absolute;
    bottom: 38px;
    left: 20%;
    width: 80%;
    height: 32vh;
  }
}
