/* --- RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* --- VARIAVEIS DE TEMA --- */
:root {
  --bg-primary: #000000;
  --text-primary: #ffffff;
  --header-border: rgba(255, 255, 255, 0.1);
  --gradient-overlay: radial-gradient(
    125% 125% at 50% 10%,
    #000000 40%,
    #010133 100%
  );
}

/* --- RESET PARA LINKS SEM CLASSE E SEM ID --- */

body.light-mode {
  --bg-primary: #f0f2f5;
  --text-primary: #010528;
  --header-border: rgba(0, 0, 0, 0.1);
  --gradient-overlay: none;
}

/* --- LAYOUT PRINCIPAL --- */
.main-wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition:
    background-color 0.3s,
    color 0.3s;
}

.azure-depths-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-overlay);
  transition: opacity 0.5s;
}

.content {
  position: relative;
  z-index: 10;
  padding: 0 20px;
  padding-top: 120px; /* Compensa o header fixo */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  text-align: center;
}

/* --- HEADER FIXO TRANSPARENTE --- */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--header-border);
  transition: border-color 0.3s;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 102; /* Garante que botões fiquem acima do overlay */
}

.glass-header.scrolled {
  background: rgba(0, 0, 0, 0.4); /* Fundo preto transparente */
  backdrop-filter: blur(12px); /* O desfoque (blur) */
  -webkit-backdrop-filter: blur(12px); /* Para Safari */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

body.light-mode .glass-header.scrolled {
  background: rgba(255, 255, 255, 0.8); /* Fundo branco transparente */
}

.glass-header {
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.3s;
}

/* --- LOGO & NAV DESKTOP --- */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Configuração Geral para AMBAS as imagens (Tamanho) */
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* --- LÓGICA DE TROCA (MÁGICA AQUI) --- */

.img-light {
  display: none;
}
.img-dark {
  display: block;
}

/* 2. Quando o body tem a classe 'light-mode': */
body.light-mode .img-light {
  display: block;
}

body.light-mode .img-dark {
  display: none;
}

/* --- HERO SECTION REFORMULADA --- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin-top: 40px; /* Ajuste fino do espaço topo */
  animation: fadeUp 0.8s ease-out;
}

/* 1. Logo Central */
.hero-logo-container {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.hero-main-logo {
  height: 80px; /* Tamanho da logo no centro */
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Efeito de "Glow" azul atrás da logo */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(0, 75, 142, 0.6) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
  border-radius: 50%;
}

/* --- 2. Badges (Prova Social Separados) --- */
.hero-badges {
  display: flex;
  justify-content: center; /* Centraliza os dois */
  align-items: center;
  gap: 15px; /* Espaço entre os dois badges */
  margin-bottom: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap; /* Garante que não quebre em telas muito pequenas */
}

/* Estilo Base para os Itens */
.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

/* === ESTILO 1: AVALIAÇÕES (DOURADO) === */
.badge-gold {
  /* Gradiente Dourado */
  background-color: rgba(253, 185, 49, 0.3);
  color: #fff; /* Texto preto para contraste no dourado */
  border: 1px solid #ffe680;
}

.badge-gold:hover {
  transform: translateY(-3px) scale(1.05); /* Sobe e aumenta um pouco */
  box-shadow: 0 6px 20px rgba(253, 185, 49, 0.5);
  cursor: pointer;
}

.google-icon {
  font-family: "Inter", sans-serif; /* Ou sua fonte padrão */
  font-weight: 900;
}

.stars {
  color: #ffd700;
  letter-spacing: 1px;
}

/* === ESTILO 2: AGÊNCIA (VIDRO + BOLINHA AZUL) === */
.badge-glass {
  background: rgba(255, 255, 255, 0.03); /* Fundo bem transparente */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

/* A Bolinha Azul */
.status-dot {
  width: 8px;
  height: 8px;
  background-color: #0077ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #0077ff;
  animation: pulse-blue 2s infinite;
}

/* Animação suave na bolinha */
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 201, 167, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 201, 167, 0);
  }
}

/* 3. Título Principal */
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Gradiente no texto "Profissionais" */
.highlight-text {
  background: linear-gradient(90deg, #b2fefa 0%, #004b8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 4. Descrição */
.hero-description {
  color: #a1a1aa; /* Cinza claro */
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}

/* 5. Botões */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- ESTILO DOS BOTÕES E ÍCONES --- */
.btn {
  /* Garante que o texto e o ícone fiquem lado a lado centralizados */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: none;
  text-decoration: none; /* Caso use tag <a> */
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 75, 142, 0.3);
}

/* Tamanho e Cor dos SVGs dentro dos botões */
.btn svg {
  width: 20px; /* Tamanho ideal para botões */
  height: 20px;
  fill: currentColor; /* Pega a cor do texto (branco ou preto) automaticamente */
  transition: transform 0.3s ease;
}

/* Efeito extra: Ícone move levemente no hover */
.btn:hover svg {
  transform: scale(1.1);
}

/* Mantendo as cores que já definimos antes */
.btn-primary {
  background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 75, 142, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 6. Estatísticas (Stats) */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* 7. Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #71717a;
  font-size: 0.8rem;
  animation: bounce 2s infinite;
  cursor: pointer;

  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 3rem;
}

.scroll-indicator:hover {
  color: #ffffff;
}

/* --- SEÇÃO SERVIÇOS --- */
.services-section {
  width: 100%;
  padding: 80px 20px;

  background: radial-gradient(125% 125% at 50% 100%, #000000 40%, #010133 100%);

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho da Seção */
.section-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 60px;
}

.section-tag {
  color: #00c9a7; /* Ciano JTP */
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.section-description {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Grid Layout */
.services-grid {
  display: grid;
  /* Cria colunas automáticas (minimo 320px) */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

/* --- ESTILO DO CARD --- */
.service-card {
  /* Fundo cinza bem escuro para destacar do preto total */
  background-color: #0a0a0c;
  border: 1px solid rgba(0, 75, 142, 0.5); /* Borda bem sutil */
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  position: relative; /* Para posicionar o badge */
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 75, 142, 0.5); /* Azul JTP no hover */
}

/* Ícone */
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 75, 142, 0.15); /* Fundo azul transparente */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #00c9a7; /* Ícone Ciano */
}

/* Textos do Card */
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: #a1a1aa; /* Cinza texto */
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1; /* Empurra o preço para o final */
}

.card-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #00c9a7; /* Preço em destaque */
}

/* --- DESTAQUE "POPULAR" --- */
.service-card.popular {
  /* Borda azul brilhante fixa */
  border: 1px solid #004b8e;
  /* Sombra azul suave */
  box-shadow: 0 0 30px rgba(0, 75, 142, 0.15);
  background: linear-gradient(180deg, rgba(0, 75, 142, 0.05) 0%, #0a0a0c 100%);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 20px; /* Ou left: 50% + transform: translateX(-50%) para centralizar */
  background: #004b8e; /* Fundo azul JTP */
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* --- BOTÃO VER TODOS OS SERVIÇOS --- */
.view-all-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;

  /* Estilo "Pílula" com borda sutil */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: transparent;

  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;

  transition: all 0.3s ease;
}

.btn-view-all svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* --- EFEITO HOVER  --- */
.btn-view-all:hover {
  border-color: #00c9a7;
  background: rgba(0, 201, 167, 0.05);
  box-shadow: 0 0 20px rgba(0, 201, 167, 0.2);
  color: #00c9a7;
}

.btn-view-all:hover svg {
  transform: translateX(6px);
  stroke: #00c9a7;
}

/* --- AJUSTE PARA MODO CLARO (Light Mode) --- */
body.light-mode .btn-view-all {
  border-color: rgba(0, 0, 0, 0.2);
  color: #010528;
}

body.light-mode .btn-view-all:hover {
  border-color: #004b8e;
  color: #004b8e;
  background: rgba(0, 75, 142, 0.05);
}

body.light-mode .btn-view-all:hover svg {
  stroke: #004b8e;
}

/* --- AJUSTES PARA MODO CLARO --- */
body.light-mode .services-section {
  background: radial-gradient(
    125% 125% at 50% 100%,
    #f0f2f5 40%,
    transparent 100%
  );
}

body.light-mode .service-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .card-title {
  color: #010528;
}

body.light-mode .card-text,
body.light-mode .section-description {
  color: #555560;
}

body.light-mode .service-card.popular {
  background: linear-gradient(180deg, rgba(0, 75, 142, 0.05) 0%, #ffffff 100%);
  border: 1px solid #004b8e;
}

/* 5. Ajuste dos Ícones (Fundo mais suave) */
body.light-mode .card-icon {
  background: rgba(0, 75, 142, 0.1);
}

/* --- SEÇÃO PROJETOS --- */
.projects-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #000000; /* Fundo Preto Puro */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Container do Carrossel */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Área dos Cards (Track) */
.projects-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Colunas no Desktop */
  gap: 30px;
  width: 100%;
  padding: 10px; /* Espaço para shadow não cortar */
}

/* --- ESTILO DO CARD DE PROJETO --- */
.project-card {
  background-color: #0a0a0c; /* Fundo do card (quase preto) */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden; /* Para a imagem não sair da borda */
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: #004b8e; /* Borda azul no hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Imagem do Projeto */
.card-image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta a imagem sem esticar */
  transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.05); /* Zoom leve na imagem ao passar o mouse */
}

/* Conteúdo do Card */
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

/* Tags com Ponto Azul */
.project-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background-color: #004b8e; /* O Ponto Azul JTP */
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 75, 142, 0.8);
}

.tag-text {
  font-size: 0.85rem;
  color: #a1a1aa; /* Cinza */
  font-weight: 500;
}

.project-desc {
  font-size: 0.95rem;
  color: #71717a;
  line-height: 1.5;
}

/* Botões do Carrossel (Escondidos no Desktop) */
.carousel-btn {
  display: none; /* Padrão desktop: não mostra */
  background: #004b8e;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* --- BOTÃO "VISITAR" NA IMAGEM DO CARD --- */
.visit-btn {
  position: absolute;
  bottom: 15px; /* Distância do fundo */
  right: 15px; /* Distância da direita */

  /* Estilo do Botão */
  background-color: #004b8e; /* Azul JTP */
  color: white;
  padding: 6px 14px;
  border-radius: 50px; /* Redondinho */
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  /* Flex para alinhar texto e ícone */
  display: flex;
  align-items: center;
  gap: 3px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); /* Sombra para destacar da imagem */
  z-index: 5;

  /* --- ESTADO INICIAL (DESKTOP) --- */
  /* Começa invisível e levemente deslocado para baixo */
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Ícone da seta dentro do botão */
.visit-btn svg {
  transition: transform 0.3s ease;
}

/* --- QUANDO PASSA O MOUSE (HOVER NO CARD) --- */
.project-card:hover .visit-btn {
  opacity: 1; /* Aparece */
  transform: translateY(0); /* Sobe para posição original */
}

.project-card:hover .visit-btn svg {
  transform: translate(2px, -2px);
}

/* --- MODO CLARO (LIGHT MODE) --- */
body.light-mode .visit-btn {
  background-color: #004b8e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

body.light-mode .projects-section {
  background-color: #ffffff;
}

body.light-mode .project-card {
  background-color: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .project-title {
  color: #010528;
}

body.light-mode .project-desc,
body.light-mode .tag-text {
  color: #555560;
}

/* --- SEÇÃO DE DEPOIMENTOS --- */
.testimonials-section {
  width: 100%;
  padding: 80px 0; /* Padding em cima e baixo */
  background-color: #000000; /* Fundo Preto Puro como pedido */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; /* Esconde o que sai da tela */
}

/* Container que segura a trilha */
.testimonials-container {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

/* Efeito de degradê nas laterais para suavizar a entrada/saída */
.testimonials-container::before,
.testimonials-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-container::before {
  left: 0;
  background: linear-gradient(to right, #000000, transparent);
}

.testimonials-container::after {
  right: 0;
  background: linear-gradient(to left, #000000, transparent);
}

/* A Trilha que se move */
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content; /* Largura baseada no conteúdo */
  /* Animação definida abaixo */
  animation: scroll-left 40s linear infinite;
}

/* Pausa a animação quando passa o mouse para ler */
.testimonials-track:hover {
  animation-play-state: paused;
}

/* --- ESTILO DO CARD DE DEPOIMENTO --- */
.testimonial-card {
  width: 350px; /* Largura fixa */
  background-color: #0a0a0c; /* Preto um pouco mais claro */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0; /* Impede o card de encolher */
  transition:
    transform 0.3s ease,
    border-color 0.3s;
}

.testimonial-card:hover {
  border-color: #004b8e; /* Borda azul no hover */
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 0.95rem;
  color: #a1a1aa; /* Cinza claro */
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Info do Usuário */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #004b8e;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-info strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.user-info span {
  color: #71717a;
  font-size: 0.8rem;
}
/* Espaçamento entre as duas linhas de carrossel */
.testimonials-container + .testimonials-container {
  margin-top: 24px !important;
}

/* --- ANIMAÇÃO REVERSA (PARA A DIREITA) --- */
.testimonials-track.reverse {
  animation-name: scroll-right;
}

@keyframes scroll-right {
  0% {
    /* Começa deslocado para a esquerda (-50%) */
    transform: translateX(-50%);
  }
  100% {
    /* Termina na posição inicial (0) */
    transform: translateX(0);
  }
}

/* --- ANIMAÇÃO (KEYFRAMES) --- */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      -50%
    ); /* Move metade do tamanho total (graças ao JS duplicador) */
  }
}

/* --- MODO CLARO (LIGHT MODE) --- */
body.light-mode .testimonials-section {
  background-color: #ffffff;
}

/* Ajuste dos degradês laterais para branco */
body.light-mode .testimonials-container::before {
  background: linear-gradient(to right, #ffffff, transparent);
}
body.light-mode .testimonials-container::after {
  background: linear-gradient(to left, #ffffff, transparent);
}

body.light-mode .testimonial-card {
  background-color: #f7f7f7; /* Cinza bem clarinho */
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .testimonial-text {
  color: #555560;
}

body.light-mode .user-info strong {
  color: #010528;
}

/* --- SEÇÃO ORÇAMENTO --- */
.budget-section {
  width: 100%;
  padding: 80px 20px;
  /* Background específico solicitado */
  background: radial-gradient(125% 125% at 50% 10%, #000000 40%, #010133 100%);
  display: flex;
  justify-content: center;
}

.budget-container .section-header {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  margin-bottom: 40px;
}

/* Card Principal da Calculadora */
.budget-calculator {
  background: #0a0a0c; /* Fundo do card principal */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.step-title {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 20px;
  font-weight: 500;
}

.step-group {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 30px;
}

.step-group:last-of-type {
  border-bottom: none;
}

/* --- 1. SELEÇÃO DE PLANOS --- */
.plans-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.plan-option {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Estado Ativo (Selecionado) */
.plan-option.selected {
  background: rgba(0, 75, 142, 0.1); /* Azul JTP bem leve */
  border-color: #004b8e; /* Borda Azul JTP */
  box-shadow: 0 0 20px rgba(0, 75, 142, 0.2);
}

.plan-header-opt {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.plan-icon {
  color: #a1a1aa;
}

.plan-option.selected .plan-icon {
  color: #00c9a7; /* Ícone fica Ciano */
}

.badge-popular {
  background: #004b8e;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  height: fit-content;
}

.plan-option h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.plan-option p {
  color: #71717a;
  font-size: 0.85rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.price-display {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- 2. INPUTS --- */
.inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.input-wrapper input {
  width: 100%;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-wrapper input:focus {
  border-color: #004b8e;
}

/* --- 3. EXTRAS --- */
.extras-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.extra-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Estilo quando checkbox está marcado */
.extra-item:has(input:checked) {
  border-color: #004b8e;
  background: rgba(0, 75, 142, 0.05);
}

.extra-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.extra-text {
  display: flex;
  flex-direction: column;
}

.extra-text strong {
  color: white;
  font-size: 0.95rem;
}

.extra-text span {
  color: #71717a;
  font-size: 0.8rem;
}

.extra-price {
  color: #00c9a7; /* Preço verde/ciano */
  font-weight: 700;
  font-size: 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 10px;
}

/* Checkbox customizado (simples) */
.extra-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #004b8e;
}

/* --- FOOTER DO ORÇAMENTO --- */
.budget-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 75, 142, 0.1) 0%,
    rgba(0, 201, 167, 0.05) 100%
  );
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 75, 142, 0.3);
}

.total-info {
  display: flex;
  flex-direction: column;
}

.total-info span {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.total-info strong {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-budget-cta {
  background: #00c9a7;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

.btn-budget-cta:hover {
  background: #20e3b2;
  transform: translateY(-2px);
}

/* --- MODO CLARO (LIGHT MODE) PARA ORÇAMENTO --- */

/* 1. Fundo da Seção */
body.light-mode .budget-section {
  /* Gradiente Claro (Cinza suave para Branco) */
  background: radial-gradient(125% 125% at 50% 10%, #f0f2f5 40%, #ffffff 100%);
}

/* 2. Card Principal */
body.light-mode .budget-calculator {
  background: #ffffff; /* Fundo Branco */
  border-color: rgba(0, 0, 0, 0.1); /* Borda cinza suave */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); /* Sombra mais leve */
}

/* 3. Títulos e Textos */
body.light-mode .step-title {
  color: #010528; /* Azul Escuro */
}

body.light-mode .step-group {
  border-bottom-color: rgba(0, 0, 0, 0.08); /* Linha divisória sutil */
}

/* 4. Cards de Planos */
body.light-mode .plan-option {
  background: #f9f9f9; /* Cinza bem clarinho */
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .plan-option:hover {
  background: #f0f0f0;
  border-color: rgba(0, 75, 142, 0.3);
}

body.light-mode .plan-option h4,
body.light-mode .price-display {
  color: #010528; /* Títulos Escuros */
}

body.light-mode .plan-option p {
  color: #555560; /* Descrição cinza escuro */
}

/* Ícones dos planos */
body.light-mode .plan-icon {
  color: #a1a1aa;
}

/* Estado Selecionado no Light Mode */
body.light-mode .plan-option.selected {
  background: rgba(0, 75, 142, 0.05); /* Azul bem leve */
  border-color: #004b8e;
  box-shadow: 0 0 20px rgba(0, 75, 142, 0.1);
}

body.light-mode .plan-option.selected .plan-icon {
  color: #004b8e; /* Ícone fica Azul Escuro */
}

/* 5. Inputs */
body.light-mode .input-wrapper input {
  background: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.1);
  color: #010528;
}

body.light-mode .input-wrapper input::placeholder {
  color: #888890;
}

body.light-mode .input-wrapper input:focus {
  background: #ffffff;
  border-color: #004b8e;
}

/* 6. Checkboxes Extras */
body.light-mode .extra-item {
  background: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .extra-item:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .extra-text strong {
  color: #010528;
}

body.light-mode .extra-text span {
  color: #555560;
}

/* Quando o extra está marcado */
body.light-mode .extra-item:has(input:checked) {
  border-color: #004b8e;
  background: rgba(0, 75, 142, 0.05);
}

body.light-mode .extra-price {
  color: #004b8e; /* Preço em Azul Escuro para contraste no branco */
}

/* 7. Barra de Total (Footer) */
body.light-mode .budget-footer {
  background: #f0f2f5;
  border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .total-info span {
  color: #555560;
}

body.light-mode .total-info strong {
  color: #010528;
}

/* Botão CTA do Orçamento */
body.light-mode .btn-budget-cta {
  background: #004b8e; /* Azul Escuro */
  color: #ffffff; /* Texto Branco */
}

body.light-mode .btn-budget-cta:hover {
  background: #003666; /* Azul mais escuro no hover */
}

/* --- SEÇÃO FAQ --- */
.faq-section {
  width: 100%;
  padding: 80px 20px;
  /* Background específico solicitado */
  background: radial-gradient(125% 125% at 50% 100%, #000000 40%, #010133 100%);
  display: flex;
  justify-content: center;
}

.faq-container {
  /* Força todos os itens dentro do container a ficarem no centro */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.faq-container .section-header {
  /* Garante que o bloco do texto fique centralizado */
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center; /* Centraliza o texto dentro do bloco */
}

/* Estilo dos Itens (Cards) */
.faq-item {
  background-color: #0a0a0c; /* Preto mais claro para destacar do fundo */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden; /* Importante para animação */
  transition:
    border-color 0.3s,
    background 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 75, 142, 0.5); /* Borda azul ao passar o mouse */
}

/* Botão da Pergunta */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Ícone da Seta */
.chevron {
  transition: transform 0.3s ease;
  color: #004b8e;
}

/* Resposta (Escondida por padrão) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 25px;
  background: rgba(
    255,
    255,
    255,
    0.02
  ); /* Leve diferença de fundo na resposta */
}

.faq-answer p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px; /* Espaço no final */
  margin-top: 15px;
}

/* --- ESTADO ATIVO (ABERTO) --- */
.faq-item.active {
  border-color: #004b8e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active .chevron {
  transform: rotate(180deg); /* Gira a seta */
  color: #00c9a7;
}

/* Footer do FAQ */
.faq-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  gap: 15px;
}

.faq-footer-text {
  color: #555560; /* Cinza bem fraco solicitado */
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-cta-faq {
  background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 75, 142, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-cta-faq:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 75, 142, 0.6);
}

/* --- MODO CLARO (LIGHT MODE) --- */
body.light-mode .faq-section {
  /* Fundo branco no light mode */
  background: #ffffff;
}

body.light-mode .faq-item {
  background-color: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .faq-question {
  color: #010528;
}

body.light-mode .faq-answer {
  background: rgba(0, 0, 0, 0.02);
}

body.light-mode .faq-answer p {
  color: #555560;
}

/* --- RODAPÉ (FOOTER) --- */
.main-footer {
  width: 100%;
  background-color: #000000; /* Fundo Preto Puro */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha cinza de separação */
  padding: 30px 20px;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Espalha as 3 partes (Left, Center, Right) */
  align-items: center;
}

/* --- LADO ESQUERDO --- */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 24px; /* Imagem pequena igual da referência */
  width: auto;
  opacity: 0.8;
}

.footer-agency-text {
  color: #a1a1aa; /* Cinza claro */
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- CENTRO (INSTAGRAM) --- */
.footer-center {
  display: flex;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Redondo */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Borda transparente sutil */
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
}

/* Hover Azul Escuro solicitado */
.social-btn:hover {
  background-color: #004b8e; /* Azul Escuro */
  border-color: #004b8e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 75, 142, 0.4);
}

/* --- LADO DIREITO --- */
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copyright {
  color: #71717a; /* Cinza mais escuro */
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #a1a1aa;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --- MODO CLARO (LIGHT MODE) --- */
body.light-mode .main-footer {
  background-color: #ffffff; /* Fundo branco */
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* Linha cinza clara */
}

/* Inverte a logo branca para preta usando filtro */
body.light-mode .footer-logo {
  filter: invert(1);
  opacity: 0.7;
}

body.light-mode .footer-agency-text {
  color: #555560;
}

body.light-mode .social-btn {
  color: #010528;
  border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .social-btn:hover {
  color: #ffffff; /* Fica branco no hover */
  background-color: #004b8e; /* Fundo azul mantido */
}

body.light-mode .copyright {
  color: #888890;
}

body.light-mode .footer-links a {
  color: #555560;
}

body.light-mode .footer-links a:hover {
  color: #004b8e;
}



/* --- BANNER DE COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: rgba(10, 10, 12, 0.95); /* Fundo escuro quase sólido */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Fica acima de tudo */
    
    /* Começa escondido para o JS controlar */
    display: none; 
    animation: slideUp 0.5s ease forwards;
}

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

.cookie-content p {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: #00C9A7;
    text-decoration: underline;
}

.btn-cookie-accept {
    background-color: #004B8E;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background-color: #003666;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    
}


/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px; /* Tamanho do botão */
  height: 64px;
  /* Cor Azul Ciano Claro para destacar do fundo escuro */
  background-color: #007eec;
  color: white; /* Cor do ícone */
  border-radius: 50%; /* Redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 201, 167, 0.5); /* Sombra brilhante */
  z-index: 1000; /* Fica acima de tudo */
  transition: all 0.3s ease;
}

/* Tamanho do ícone SVG dentro do botão */
.whatsapp-float svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

/* Efeito ao passar o mouse */
.whatsapp-float:hover {
  transform: scale(1.1); /* Aumenta um pouco */
  background-color: #20e3b2; /* Fica ligeiramente mais claro */
}

/* --- ANIMAÇÃO DE "PULSO" --- */
/* Cria um anel que se expande atrás do botão */
.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #00c9a7; /* Mesma cor do botão */
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

/* Os passos da animação */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Animações */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Responsividade */
@media (max-width: 900px) {
  .projects-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;

    /* Esconde a barra de rolagem */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
  }

  .projects-track::-webkit-scrollbar {
    display: none;
  }

  /* O Card ocupa 100% da largura no mobile */
  .project-card {
    min-width: 100%;
    scroll-snap-align: center;
    margin-right: 20px;
    &:last-child {
      margin-right: 0;
    }
  }

  /* Mostra os botões de seta */
  .carousel-btn {
    display: flex;
    position: absolute;
    top: 40%;
  }
  .prev-btn {
    left: -10px;
  }
  .next-btn {
    right: -10px;
  }

  .visit-btn {
    opacity: 1 !important; /* Força visibilidade */
    transform: translateY(0) !important; /* Posição fixa */
    background-color: rgba(
      0,
      75,
      142,
      0.9
    ); /* Um pouco transparente no mobile fica chique */
  }
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .hero-stats {
    gap: 15px;
  }
  .stat-value {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
  }
  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }

  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr; /* 1 coluna no celular */
  }

  .testimonial-card {
    width: 280px; /* Cards menores no celular */
    padding: 20px;
  }

  .testimonials-container::before,
  .testimonials-container::after {
    width: 50px; /* Degradê menor no celular */
  }

  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-container + .testimonials-container {
    margin-top: 16px !important;
  }

  .testimonials-track {
    animation: scroll-left 80s linear infinite; /* Aumentei para 60s para ficar mais suave */
  }

  .testimonials-track:hover {
    animation-play-state: paused;
  }

  .plans-selection {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
  }
  .inputs-grid {
    grid-template-columns: 1fr;
  }
  .budget-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .btn-budget-cta {
    width: 100%;
    justify-content: center;
  }
  .budget-calculator {
    padding: 20px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 20px;
  }

  .footer-container {
    flex-direction: column; /* Empilha tudo um embaixo do outro */
    gap: 25px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column; /* Logo em cima do texto */
    gap: 8px;
  }

  .footer-right {
    flex-direction: column-reverse; /* Links em cima, Copyright em baixo (padrão UX mobile) */
    gap: 10px;
  }

  
}

.desktop-nav {
  display: none;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-primary);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.desktop-nav a:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

/* --- BOTÕES & CONTROLES --- */
.controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- MENU HAMBURGUER (ANIMAÇÃO) --- */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 103;
}

.bar {
  display: block;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.bar:nth-child(1) {
  width: 100%;
  transform-origin: center;
}
.bar:nth-child(2) {
  width: 100%;
}
.bar:nth-child(3) {
  width: 50%;
  align-self: flex-end;
  transform-origin: center;
}

/* Estado 'Open' (Forma de X) */
.hamburger-btn.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger-btn.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open .bar:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

/* --- MENU MOBILE OVERLAY (TELA CHEIA) --- */
.mobile-menu-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  /* Fundo Dark com Blur */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;

  /* Transições de Entrada */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 101;
}

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

.mobile-menu-content a {
  text-decoration: none;
  color: #ffffff; /* Sempre branco */
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
  transition: color 0.3s;
}

.mobile-menu-content a:hover {
  color: #0a0a6b;
}
