/* ================= RESET ================= */
/* Remove margens, padding e define box-sizing para todos os elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif; /* Fonte padrão */
}

/* ================= CORES BASE ================= */
body {
  /* Gradiente de fundo */
  background: linear-gradient(135deg, #5a1a2a 0%, #7d2e40 25%, #9d5a6a 50%, #c9a68a 75%, #f3e9dc 100%);
  background-attachment: fixed; /* Mantém o fundo fixo ao rolar */
  color: #1c1c1c; /* Cor do texto */
  line-height: 1.6; /* Altura de linha */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ocupa toda a altura da tela */
  position: relative;
}

/* Efeitos visuais adicionais no fundo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(125, 46, 64, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(157, 90, 106, 0.2) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none; /* Não interfere em cliques */
}

/* ================= HEADER ================= */
header {
  /* Gradiente do cabeçalho */
  background: linear-gradient(135deg, #3e121c 0%, #591f2a 50%, #7d2e40 100%);
  color: #fff;
  width: 100%;
  position: sticky; /* Fixa no topo ao rolar */
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); /* Sombra */
  border-bottom: 1px solid rgba(243, 233, 220, 0.15); /* Linha inferior */
}

/* Barra de navegação */
.navbar {
  display: flex;
  justify-content: space-between; /* Espaço entre logo e menu */
  align-items: center;
  padding: 15px 40px;
  position: relative;
  z-index: 10;
}

/* Container do logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Imagem do logo */
.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); /* Sombra */
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05); /* Leve zoom ao passar o mouse */
}

/* Texto do logo */
header .logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #f3e9dc;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ================= MENU ================= */
/* Lista do menu */
.menu {
  list-style: none; /* Remove marcadores */
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 10;
}

/* Links do menu */
.menu li a {
  color: #f3e9dc;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

/* Linha animada ao passar mouse */
.menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e2cdb0, #f3e9dc);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu li a:hover::before {
  width: 80%; /* Expande a linha */
}

.menu li a:hover {
  color: #e2cdb0;
  background: rgba(255, 255, 255, 0.05); /* Fundo leve ao passar mouse */
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative; /* Necessário para posicionar submenu */
}

/* Submenu */
.child {
  display: none; /* Escondido por padrão */
  position: absolute;
  background: linear-gradient(135deg, rgba(89, 31, 42, 0.98) 0%, rgba(125, 46, 64, 0.98) 100%);
  backdrop-filter: blur(10px); /* Fundo borrado */
  -webkit-backdrop-filter: blur(10px);
  list-style: none;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(243, 233, 220, 0.1);
  min-width: 180px;
}

/* Exibe submenu ao passar o mouse */
.dropdown:hover .child {
  display: block;
  animation: fadeIn 0.3s ease; /* Animação de aparecimento */
}

/* Animação fadeIn */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Links do submenu */
.child li a {
  display: block;
  padding: 10px 16px;
  color: #f3e9dc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.child li a:hover {
  background: rgba(243, 233, 220, 0.15);
  transform: translateX(5px); /* Leve deslocamento ao passar mouse */
}

/* ================= SEÇÃO SOBRE ================= */
.sobre {
  flex: 1;
  max-width: 1100px;
  margin: 100px auto 60px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 233, 220, 0.95) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(243, 233, 220, 0.3);
  position: relative;
  z-index: 1;
}

/* ================= TÍTULOS ================= */
.titulo-principal {
  text-align: center;
  margin: 40px auto 70px auto;
  color: #591f2a;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitulo {
  text-align: center;
  margin: 60px auto 40px auto;
  color: #3e121c;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* ================= CARDS DE BENEFÍCIOS ================= */
.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.beneficio-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefaf5 100%);
  border: 2px solid rgba(243, 233, 220, 0.5);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: #e2cdb0;
  background: linear-gradient(135deg, #ffffff 0%, #f3e9dc 100%);
}

.beneficio-card i {
  font-size: 2.2rem;
  color: #b46c77;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.beneficio-card h4 {
  color: #591f2a;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.beneficio-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* ================= ETAPAS ================= */
.etapas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
  margin: 40px 0 70px 0;
  text-align: center;
}

.etapa {
  background: linear-gradient(135deg, #f3e9dc 0%, #e8dcc8 100%);
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 205, 176, 0.5);
}

.etapa:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.etapa span {
  display: inline-flex;
  background: linear-gradient(135deg, #591f2a 0%, #7d2e40 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.etapa h4 {
  color: #3e121c;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.etapa p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* ================= TÉCNICAS ================= */
.tecnicas {
  margin-top: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Cards de técnicas */
.tecnica-card {
  display: inline-block; 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 233, 220, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(243, 233, 220, 0.5);
  border-radius: 15px;
  padding: 10px; /* padding zero, a imagem define o tamanho */
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  overflow: hidden; /* garante que a imagem não vaze do card */
}

.tecnica-card img {
  display: block;
  width: 100%;      /* reduz a escala da imagem para 80% do card */
  max-width: 300px; /* define tamanho máximo se quiser limitar */
  height: auto;     /* mantém proporção */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  border: 3px solid rgba(243, 233, 220, 0.4);
  margin: 0 auto;  /* centraliza a imagem dentro do card */
}

.tecnica-card:hover {
  transform: translateY(-8px); /* Levanta o card */
  border-color: #e2cdb0;
  box-shadow: 0 8px 35px rgba(0,0,0,0.25);
}

.tecnica-card h3 {
  color: #591f2a;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

.tecnica-card p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* Lista dentro do card */
.tecnica-card ul {
  list-style: none; /* Remove marcadores padrões */
  padding-left: 0;
  margin-top: 10px;
}

.tecnica-card li {
  margin-bottom: 10px;
  position: relative;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.tecnica-card li::before {
  content: "✔"; /* Marca de checklist */
  color: #b46c77;
  font-weight: bold;
  margin-right: 8px;
}

/* ================= CTA FINAL ================= */
.cta {
  background: linear-gradient(135deg, #591f2a 0%, #7d2e40 100%);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(243, 233, 220, 0.2);
}

.cta h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.cta .icones {
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Botão CTA */
.cta .btn {
  background: linear-gradient(135deg, #e2cdb0 0%, #f3e9dc 100%);
  color: #3e121c;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta .btn:hover {
  background: linear-gradient(135deg, #fff 0%, #f3e9dc 100%);
  color: #591f2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, #3e121c 0%, #591f2a 50%, #7d2e40 100%);
  color: #f3e9dc;
  padding: 50px 20px 20px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  margin-top: auto;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(243, 233, 220, 0.15);
}

/* Links do footer */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column {
  text-align: left;
  min-width: 200px;
}

.footer-column h6 {
  font-size: 1.1em;
  font-weight: bold;
  color: #e2cdb0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  color: #f3e9dc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 0.95em;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #e2cdb0;
  padding-left: 8px;
}

/* Linha separadora do footer */
.footer-separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 233, 220, 0.3), transparent);
  margin: 25px auto;
  width: 80%;
}

.footer-text {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(243, 233, 220, 0.9);
}

/* Redes sociais */
.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  color: #f3e9dc;
  margin: 0 10px;
  font-size: 1.5em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  transform: scale(1.2) rotate(5deg);
  color: #e2cdb0;
}

/* Copyright */
.footer-copyright {
  background: rgba(0,0,0,0.3);
  padding: 12px 0;
  font-size: 0.9em;
  color: rgba(243, 233, 220, 0.85);
  letter-spacing: 0.5px;
}

/* ================= BOTÕES FLUTUANTES ================= */
/* Botão WhatsApp e Instagram */
.float-whatsapp,
.float-instagram {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Posição específica de cada botão */
.float-whatsapp {
  right: 90px;
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-instagram {
  right: 20px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Imagem dentro dos botões */
.float-whatsapp img,
.float-instagram img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.float-whatsapp:hover,
.float-instagram:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
}

/* ================= SEÇÃO DE EXAMES ================= */
/* Texto introdutório na seção sobre */
.sobre .intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #1c1c1c;
}

/* Citação destacada */
.sobre .quote {
  background: linear-gradient(135deg, #f3e9dc 0%, #e8dcc8 100%);
  border-left: 5px solid #b46c77;
  padding: 20px 25px;
  margin: 30px auto;
  max-width: 850px;
  font-style: italic;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sobre .quote span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  text-align: right;
  font-style: normal;
  color: #591f2a;
}

/* Grid de exames */
.exames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
  text-align: center;
}

/* Card de exame */
.exame-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefaf5 100%);
  border: 2px solid rgba(243, 233, 220, 0.5);
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.exame-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border-color: #e2cdb0;
}

.exame-card h4 {
  margin-top: 15px;
  color: #591f2a;
  font-size: 1.1rem;
  font-weight: 600;
}

.exame-card p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 5px;
  line-height: 1.5;
}

/* ===== Checklist ===== */
.checklist {
  display: flex;
  flex-wrap: wrap; /* Permite quebrar para múltiplas linhas */
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
}

.check-card {
  background: linear-gradient(135deg, #fdf5ec 0%, #f9ede0 100%);
  border: 2px solid rgba(243, 233, 220, 0.5);
  border-radius: 15px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.check-card:hover {
  transform: translateY(-8px); /* Eleva o card */
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.check-card h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #591f2a;
  margin-bottom: 15px;
}

.check-card ul {
  list-style: none; /* Remove marcadores */
  padding-left: 0;
  text-align: left;
}

.check-card li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}

.check-card li::before {
  content: "•"; /* Marcador customizado */
  color: #b46c77;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.check-card .icon {
  font-size: 1.3rem;
}

/* ===== Alerta ===== */
.alerta {
  background: linear-gradient(135deg, #fff8e6 0%, #fff4d6 100%);
  border-left: 5px solid #f7b500; /* Barra lateral colorida */
  padding: 15px 20px;
  border-radius: 12px;
  margin: 40px auto;
  font-size: 1rem;
  color: #3e121c;
  max-width: 850px;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(247, 181, 0, 0.2);
}

/* ===== Cronograma ===== */
.cronograma-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
}

.cronograma-card {
  background: linear-gradient(135deg, #fff7f0 0%, #f9ebe0 100%);
  border: 2px solid rgba(243, 233, 220, 0.5);
  border-radius: 15px;
  padding: 25px 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.cronograma-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cronograma-card h4 {
  color: #591f2a;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.cronograma-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ===== TRANSPLANTE CAPILAR ===== */
#transplante {
  max-width: 1100px;
  margin: 80px auto 60px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(255,247,240,0.95) 0%, rgba(249,235,224,0.95) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid rgba(243,233,220,0.3);
  position: relative;
  z-index: 1;
}

#transplante h2 {
  color: #591f2a;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

#transplante p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1c1c1c;
  margin-bottom: 30px;
  text-align: center;
}

/* Galeria de imagens */
#transplante .galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#transplante .galeria img {
  width: 300px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(243,233,220,0.5);
}

#transplante .galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

/* ===== EMAGRECIMENTO ===== */
#emagrecimento {
  max-width: 1100px;
  margin: 80px auto 60px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(234,246,240,0.95) 0%, rgba(224,241,235,0.95) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid rgba(201,230,220,0.5);
  position: relative;
  z-index: 1;
}

#emagrecimento h2 {
  color: #3e121c;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

#emagrecimento p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1c1c1c;
  margin-bottom: 30px;
}

#emagrecimento .galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#emagrecimento .galeria img {
  width: 300px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(201,230,220,0.5);
}

#emagrecimento .galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

/* ===== BARBA E SOBRANCELHA ===== */
#barba {
  max-width: 1100px;
  margin: 80px auto 60px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(240,244,250,0.95) 0%, rgba(230,238,248,0.95) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid rgba(220,230,245,0.5);
  position: relative;
  z-index: 1;
}

#barba h2 {
  color: #591f2a;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

#barba p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1c1c1c;
  margin-bottom: 30px;
}

#barba .galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#barba .galeria img {
  width: 300px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(220,230,245,0.5);
}

#barba .galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

/* ================= MENU MOBILE ================= */
.menu-toggle {
  display: none; /* Esconde por padrão */
  cursor: pointer;
  font-size: 24px;
  color: #f3e9dc;
  right: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(89,31,42,0.98) 0%, rgba(125,46,64,0.98) 100%);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 70px;
    right: -250px; /* Inicialmente escondido à direita */
    width: 250px;
    height: 30vh;
    transition: right 0.3s ease;
    border-radius: 0 0 0 20px;
    text-align: center;
    padding-top: 50px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(243,233,220,0.1);
  }

  .menu.show {
    display: flex;
    right: 0; /* Mostra o menu */
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= RESPONSIVIDADE ================= */
@media screen and (max-width: 768px) {
  .sobre {
    margin: 60px 15px;
    padding: 30px 20px;
  }

  .titulo-principal {
    font-size: 1.8rem;
    margin: 30px auto 50px auto;
  }

  .subtitulo {
    font-size: 1.5rem;
    margin: 40px auto 30px auto;
  }

  .beneficios {
    gap: 25px;
  }

  .etapas {
    gap: 25px;
    margin: 30px 0 50px 0;
  }

  .check-card,
  .cronograma-card {
    width: 100%;
  }

  .exames-grid {
    grid-template-columns: 1fr;
  }

  .tecnica-card {
    width: 100%;
  }
}
