/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Playfair Display SC', 'Playfair Display', serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
  font-size: 1.6rem;
  overflow-x: hidden;
}

section {
  padding: 10rem 2rem;
}

@media (min-width: 1024px) {
  section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Container centralizado */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Utilitários */
.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.6rem;
  transition: all 0.3s ease-in-out, transform 0.3s ease-in-out;
  animation: fadeIn 0.6s ease-in both;
  will-change: transform;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo base */
@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  .container {
    width: 95%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }
  .btn {
    padding: 1rem 1.5rem;
  }
}

/* Header fixo no topo */
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 1rem 0;
}

.header.scrolled .logo img {
  max-height: 50px;
}

/* Container do header */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

/* Logo */
.header .logo img {
  max-height: 60px;
  transition: all 0.3s ease;
  width: auto;
}


.logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

/* Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #222;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-menu ul li a:hover {
  color: #cc9a6c;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    display: none; /* vamos ativar depois via JS */
  }

  .nav-menu ul.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: #222;
  }
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100vh;
  background-image: url("/static/landing_mauricio/images/hero-fundo.png");
  background-size: cover;
  background-position: center;
  padding: 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.3), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6vw;
  height: 100%;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Centraliza verticalmente */
  align-items: center;      /* Centraliza horizontalmente */
  text-align: center;
  animation: fadeInUp 1.2s ease-out forwards;
}


.hero-content .subtitulo {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #555;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 6rem;
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 3rem;
}


.btn-cta {
  font-family: 'Poppins';
  background-color: #2e2e2e;
  padding: 1.2rem 3rem;
  color: #e5e2dc;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.btn-cta:hover {
  background-color: #686868;
  color: #e5e2dc;
  box-shadow: 0 4px 20px rgba(204, 154, 108, 0.3);
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.hero-image img {
  height: auto;
  max-height: 90vh;
  max-width: 100%;
  object-fit: contain;
}

/* Animação */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sobre-mim {
  padding: 6rem 0;
  background-color: #fff;
}

.sobre-mim-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}

.sobre-mim-foto {
  background: transparent;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInScale 1.2s ease-out both;
}

.sobre-mim-foto:hover {
  transform: scale(1.02);
}

.sobre-mim-foto img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.sobre-mim-foto img:hover {
  filter: brightness(1.08);
}

/* Responsividade refinada */
@media (max-width: 1024px) {
  .sobre-mim-foto {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .sobre-mim-foto {
    width: 240px;
    height: 240px;
  }
}

/* Animação de entrada suave */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide.ativo {
  opacity: 1;
  animation: fadeInSlide 0.7s ease-in-out forwards;
}


.sobre-mim-texto {
  flex: 1;
  min-width: 300px;
}

.sobre-mim-texto h2 {
  font-family: 'Libre Baskerville';
  font-size: 5.2rem;
  margin-bottom: 2rem;
  color: #111;
}

.sobre-mim-texto p {
  font-size: 2.6rem;
  line-height: 1.7;
  color: #504444;
  margin-bottom: 1.8rem;
}

.assinatura {
  margin-top: 2rem;
  font-style: italic;
  border-left: 3px solid #ccc;
  padding-left: 1rem;
  font-family: 'Parisienne';
  font-size: 2.4rem;
  color: #888;
}

@media (max-width: 768px) {
  .sobre-mim-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-mim-texto h2 {
    font-size: 2.6rem;
  }

  .sobre-mim-foto img {
    max-width: 280px;
  }

  .assinatura {
    border-left: none;
    padding-left: 0;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
  }
}

/* SECTION CONSULTORIA */
.consultoria {
  background-color: #fdfaf6;
  padding: 10rem 0 12rem;
}

.consultoria-intro {
  max-width: 1000px;
  margin: 0 auto 6rem;
  text-align: center;
}

.consultoria-intro h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 5.2rem;
  color: #1f1f1f;
  font-weight: 700;
  margin-bottom: 2rem;
}

.consultoria-intro p {
  max-width: 1100px; /* era 880px */
  font-family: 'Libre Baskerville', serif;
  margin: 0 auto;
  font-size: 2.6rem;
  line-height: 1.9;
  color: #3e2d22;
  padding: 0 2rem; /* garante margem lateral em telas menores */
}

.visagismo-itens {
  text-align: center;
  margin-top: 8rem;
  font-family: 'Libre Baskerville', serif;
}

.visagismo-itens h3 {
  font-size: 3.6rem;
  margin-bottom: 4rem;
  color: #1f1f1f;
  font-weight: 700;
  border-bottom: 2px solid #ccb090;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.itens-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.item {
  flex: 1 1 260px;
  max-width: 280px;
  transition: transform 0.3s ease;
  text-align: center;
}

.item:hover {
  transform: translateY(-6px);
}

.item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  opacity: 0.9;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 1px 1px rgba(204, 176, 144, 0.3));
}

.item img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(204, 176, 144, 0.5));
}

.item h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.item p {
  font-size: 1.8rem;
  color: #504444;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .consultoria-intro h2 {
    font-size: 3.2rem;
  }

  .consultoria-intro p {
    font-size: 1.8rem;
  }

  .visagismo-itens h3 {
    font-size: 2.8rem;
  }

  .itens-grid {
    flex-direction: column;
    align-items: center;
  }

  .item {
    max-width: 90%;
  }

  .item img {
    width: 60px;
    height: 60px;
  }

  .item h4 {
    font-size: 1.8rem;
  }

  .item p {
    font-size: 1.6rem;
  }
}

/* SECTION CABELO — Resultados Reais */

.resultados {
  padding: 6rem 2rem 8rem;
  margin: 0;
  background-image: url("/static/landing_mauricio/images/hero-fundo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.resultados .container {
  text-align: center;
  max-width: 1440px;
  padding: 0;
  margin: 0 auto;
}

/* Título e Legenda */

.titulo-resultados {
  text-align: center;
  font-family: 'Playfair Display SC', serif;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #5a4b40; /* Marrom Café Luxo */
  margin-bottom: 1rem;
  border-bottom: 1px solid #d8c6b6;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.legenda-cabelos {
  text-align: center;
  font-size: 2.4rem;
  color: #666;
  margin-bottom: 4rem;
  font-family: 'Libre Baskerville', serif;
}

/* Galeria de Resultados */

.grid-resultados {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.resultado-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: none;
}

.resultado-img img:hover {
  transform: scale(1.015);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .resultado-img img {
    aspect-ratio: 3/3.8;
  }
}

/* SECTION MAQUIAGEM */

.maquiagem {
  background-color: #fff8f3;
  background-size: cover;
  background-position: center;
  padding: 10rem 2rem;
}

.maquiagem-intro {
  max-width: 1000px;
  margin: 0 auto 5rem;
  text-align: center;
}

.maquiagem-intro h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: 4.4rem;
  color: #3c2f2f;
  font-weight: 700;
  margin-bottom: 2rem;
}

.maquiagem-intro p {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.1rem;
  color: #5c4b3c;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
}

.maquiagem-intro p::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #d8c6b6;
  margin: 2rem auto 0;
  border-radius: 2px;
}

.galeria-maquiagem {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.maquiagem-img {
  width: 300px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.maquiagem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.maquiagem-img img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .maquiagem-img img {
    aspect-ratio: 3/3.8;
  }
}

/*SECTION LOCALIZAÇÃO*/

.localizacao {
  background-color: #fff;
  padding: 8rem 2rem;
}

.titulo-localizacao {
  text-align: center;
  font-family: 'Playfair Display SC', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 6rem;
}

.localizacao-container {
  max-width: 1400px;
  margin: 0 auto;
}

.localizacao-conteudo {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.mapa-local {
  flex: 1;
  min-width: 340px;
  background-color: #f6e6d8;
  padding: 3rem;
  text-align: center;
  border-radius: 12px;
}

.placeholder-mapa img {
  width: 40px;
  margin-bottom: 1rem;
}

.placeholder-mapa p {
  font-size: 1.6rem;
  color: #7a6b5a;
}

.info-local {
  flex: 1;
  min-width: 340px;
}

.info-local h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #3e2d22;
}

.info-local p {
  font-family: "Libre Baskerville";
  font-size: 1.9rem;
  color: #444;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.info-local ul {
  font-family: "Libre Baskerville";
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.info-local ul li {
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.info-local ul li img {
  width: 20px;
  margin-right: 1rem;
}

.btn-agendar {
  font-family: "Poppins";
  display: inline-block;
  background-color: #757575;
  color: #fff;
  padding: 1.2rem 2.6rem;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-agendar:hover {
  background-color: #3E2D22;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Responsivo Localização*/
@media (max-width: 768px) {
  .localizacao-conteudo {
    flex-direction: column;
  }

  .mapa-local,
  .info-local {
    width: 100%;
  }

  .titulo-localizacao {
    font-size: 3.2rem;
  }
}

/* SECTION AGENDAR */
.contato {
  background-color: #fff8f3;
  color: #3c2f2f;
  padding: 10rem 2rem;
  font-family: 'Libre Baskerville';
}

.contato-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
}

/* COLUNA DE TEXTO */
.contato-info {
  flex: 1 1 40%;
}

.contato-info h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: 3.4rem;
  color: #5a4b40;
  margin-bottom: 2rem;
}

.contato-info p {
  font-size: 1.9rem;
  color: #5a4b40;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contato-meios {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contato-meios li {
  margin-bottom: 1.8rem;
  font-size: 1.9rem;
  color: #5a4b40;
}

.contato-meios li a {
  color: #cc9a6c;
  text-decoration: none;
  font-weight: 500;
}

.contato-meios li a:hover {
  text-decoration: underline;
}

/* COLUNA DE FORMULÁRIO */
.contato-formulario {
  flex: 1 1 50%;
  background-color: #fdf7f2;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(90, 75, 64, 0.08);
}

.contato-formulario form {
  display: flex;
  flex-direction: column;
}

.contato-formulario label {
  font-size: 1.9rem;
  color: #5a4b40;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.contato-formulario input,
.contato-formulario select,
.contato-formulario textarea {
  background-color: #fff;
  color: #3c2f2f;
  border: 1px solid #d8c6b6;
  padding: 1.2rem;
  margin-bottom: 1.6rem;
  border-radius: 6px;
  font-size: 1.5rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contato-formulario input:focus,
.contato-formulario select:focus,
.contato-formulario textarea:focus {
  border-color: #cc9a6c;
  outline: none;
}

.btn-agendar {
  background-color: #cc9a6c;
  color: #fff;
  border: none;
  padding: 1.4rem;
  border-radius: 6px;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-agendar:hover {
  background-color: #b48259;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .contato-container {
    flex-direction: column;
  }

  .contato-info,
  .contato-formulario {
    flex: 1 1 100%;
  }
}

/*feedbacks*/
/*feedbacks*/

.carrossel-feedback {
  background-color: #fdfaf6;
  padding: 41rem 2rem;
  position: relative;
  min-height: auto !important;
  padding: 5rem 2rem !important;
  display: block !important;
}

.titulo-feedback {
  text-align: center;
  font-size: 5.2rem;
  font-family: 'Playfair Display SC', serif;
  margin-bottom: 2rem;
  color: #2e1d12;
}

.slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 400px; 
}

.slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  opacity: 0;
  position: absolute;
  width: 100%;
  padding: 2rem 3rem;
  background: #fff;
  border: 1px solid #e6d3c1;
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: opacity 0.7s ease;
}

.slide.ativo {
  opacity: 1;
  position: absolute;
}

.slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dcbfa7;
}

.texto {
  max-width: 800px;
}

.texto h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #5a4b40;
}

.texto p {
  font-family: 'Libre Baskerville';
  font-size: 1.9rem;
  line-height: 1.6;
  font-style: italic;
  color: #444;
}

.estrelas {
  color: #d89c58;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  display: inline-block;
}

/*rodape*/

.footer {
  background-color: white;
  font-family: 'Libre Baskerville';
  color: #5a4b40; /* marrom café elegante */
  padding: 5rem 2rem 3rem;
  font-size: 1.8rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: #b4834a; /* dourado mais suave */
  margin-bottom: 1rem;
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #5a4b40; /* café para títulos */
}

.footer p {
  font-size: 1.9rem;
  line-height: 1.6;
  color: #6f5b4a; /* marrom claro para corpo de texto */
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  text-decoration: none;
  color: #6f5b4a; /* marrom claro */
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #d2a569; /* destaque dourado */
}

.footer-divisor {
  border: 0;
  border-top: 1px solid #e1d3c2;
  margin: 3rem auto 2rem;
  max-width: 70%;
}

.footer-bottom {
  text-align: center;
  font-size: 1.3rem;
  color: #6b5548;
}

.footer-bottom .credito {
  margin-top: 0.5rem;
}

.footer-bottom .credito a {
  color: #c58f5d;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom .credito a:hover {
  text-decoration: underline;
}

.footer-links-contato {
  display: flex;
  flex-direction: row;
  gap: 3rem; /* menor que o atual grid-gap */
  flex-wrap: wrap;
}

.footer-links-contato .footer-col {
  flex: 1 1 200px;
}


/* MENU MOBILE MODERNO */
/* Menu Mobile Vertical */
.mobile-menu-wrapper {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 1001;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #5a4b40;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.3s ease-out;
  padding-top: 70px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  padding: 15px 25px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li a {
  color: #5a4b40;
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  transition: color 0.3s;
}

.mobile-nav ul li a:hover {
  color: #cc9a6c;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsivo */
@media (max-width: 768px) {
  .mobile-menu-wrapper {
    display: block;
  }
  
  /* Transformar hambúrguer em X quando ativo */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}