/* ========== Base ==========
   Preto/Azul, limpo e responsivo
================================ */
:root{
  --bg:#0B0E12;
  --panel:#0F1320;
  --text:#EAF2FF;
  --muted:#BFD3EB;
  --accent:#2FA3FF;
  --accent-2:#7CC6FF;
  --ink-12:rgba(255,255,255,.12);
  --ink-08:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height:1.5;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* corpo e textos padrão */
body, p, li, a, button, input, textarea {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #EAF2FF; /* mesma cor de texto do tema */
}

/* títulos principais */
h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: .95;
  color: #fff;
  text-transform: uppercase;
}

/* subtítulos menores */
.kicker, .section h2 + .lead, .breadcrumbs, .badge {
  font-family: "Inter", system-ui, sans-serif;
}

/* ajustes nos títulos */
h1 { font-size: clamp(2.2rem, 7vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }


/* container */
.container{width:min(1200px,92%); margin-inline:auto}

/* topo simples (pode trocar pelo seu header fixo) */
.site-header{position:fixed; top:0; z-index:20;
  background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.2),transparent);
  backdrop-filter:saturate(1.1) blur(6px);
}
.navbar{display:flex;
   align-items:center; 
   justify-content:space-between;
    padding:12px 0px;     
  }
.brand{display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none; font-weight:800}
.brand img{height:30px}
.navbar a{color:rgba(234,242,255,.9); text-decoration:none; font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:.76rem}
.navbar a:hover{opacity:.9}
/* evita o gap ao sair do link "SERVIÇOS" para o dropdown */
.nav-links > li.has-dd { position: relative; }

/* 1) ponte invisível (buffer) logo abaixo do item */
.nav-links > li.has-dd::after{
  content:"";
  position:absolute;
  left:-8px; right:-8px;   /* um pouco mais largo que o texto */
  top:100%;
  height:14px;             /* altura da ponte (ajuste 10–18px) */
}

/* 2) encosta o dropdown no item (nada de buraco) */
.nav-links .dropdown{
  top: 100% !important;        /* encosta no item */
  left: 50%;
  transform: translateX(-50%) translateY(0) !important;
  margin-top: 8px;             /* espacinho visual, mas sem gap (a ponte cobre) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
  z-index: 60;
}

/* aberto por hover ou foco no li inteiro (link + ponte + dropdown) */
.nav-links .has-dd:hover > .dropdown,
.nav-links .has-dd:focus-within > .dropdown,
.nav-links .has-dd.open > .dropdown{        /* suporte ao modo "clique" se usar JS */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* opcional: um micro atraso para fechar, dá sensação de estabilidade */
.nav-links .has-dd:not(:hover):not(:focus-within) > .dropdown{
  transition-delay: .06s;  /* atraso só pra esconder */
}
.nav-links .has-dd li:hover {
   color: #0d47a1;
  font-weight: 500;
  border: 1px solid #5ca7ff;
  background: linear-gradient(180deg, #63cbff 0%, #1f7bfb 100%, transparent);
  box-shadow: 0 0 15px rgba(86, 163, 255, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.hero {
  position: relative;
  min-height: min(78vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #0b0e12;
}

/* nova camada da imagem */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* preenche sem distorcer */
  filter: saturate(1.1) contrast(1.05) brightness(.9);
  transform: scale(1.02);
}

/* degrade escuro por cima da imagem */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(47,163,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88));
  z-index: 1;
}

/* conteúdo sobre a imagem */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(28px, 5vw, 60px) 0;
}

.kicker{color:var(--accent-2); letter-spacing:.18em; text-transform:uppercase; font-weight:800; font-size:.76rem}
.hero h1{
  font-family:"Bebas Neue",system-ui,sans-serif; font-weight:600;
  font-size:clamp(2.2rem, 7vw, 4.8rem); line-height:.9; margin:.25rem 0 .6rem;
  text-shadow:0 10px 28px rgba(0,0,0,.45);
}
.hero p{max-width:68ch; margin:.2rem auto 1.2rem; color:rgba(223,239,255,.92)}
.cta{display:inline-flex; align-items:center; gap:.6rem; padding:12px 16px; border-radius:999px;
  background:var(--accent); color:#001423; font-weight:800; border:1px solid rgba(255,255,255,.16);
  text-decoration:none; letter-spacing:.02em; box-shadow:0 16px 40px rgba(47,163,255,.22)}
.cta:hover{filter:brightness(1.05)}

/* breadcrumbs */
.breadcrumbs{font-size:.82rem; color:var(--muted); margin: 16px 0 0}
.breadcrumbs a{color:#cfe3ff; text-decoration:none}
.breadcrumbs a:hover{color:#fff}

/* sections */
.section{padding: clamp(30px, 5vw, 64px) 0; border-bottom:1px solid var(--ink-08)}
.section h2{
  font-family:"Anton",system-ui; letter-spacing:.02em; margin:0 0 8px;
  font-size:clamp(1.3rem, 3.4vw, 2rem)
}
.lead{color:var(--muted); margin:0 0 18px}

/* cards */
.grid{display:grid; gap: clamp(14px, 2.6vw, 24px)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media (max-width: 980px){ .grid-3,.grid-2{grid-template-columns:1fr} }

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--ink-12); border-radius:16px;
  padding: clamp(14px, 2.6vw, 20px);
}
.card h3{margin:.1rem 0 .4rem; font-size:1.05rem}
.card p{color:rgba(223,239,255,.9)}
.badge{display:inline-block; font:700 .68rem/1 system-ui; letter-spacing:.08em; text-transform:uppercase;
  color:#001423; background:var(--accent); border-radius:6px; padding:.28rem .5rem}

/* split bloco */
.split{display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(16px,3vw,36px); align-items:center}
.split .media{
  aspect-ratio: 16 / 10; border-radius:16px; overflow:hidden; border:1px solid var(--ink-12);
  background:radial-gradient(120% 80% at 20% 0%, rgba(47,163,255,.12), transparent 60%), var(--panel);
}
.split .media img{width:100%; height:100%; object-fit:cover; display:block; opacity:.95}
@media (max-width: 980px){ .split{grid-template-columns:1fr} }

/* listinha */
.bullets{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.bullets li{display:flex; align-items:flex-start; gap:10px}
.bullets svg{flex:0 0 18px}

/* footer/cta final */
.footer-cta{ text-align:center; padding: clamp(32px, 6vw, 72px) 0 }
.footer-cta h2{font-family:"Bebas Neue",system-ui,sans-serif; font-size:clamp(1.8rem,5vw,3rem); margin:0 0 10px}
.footer-cta p{color:var(--muted); margin:0 0 18px}

/* helper de imagem do hero por página */
body{ --hero:url('images/placeholder.jpg'); } /* default se esquecer */


/* ================== Navegação ================== */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.05), transparent);
}

.nav{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .60rem 0;
}

#logo{ display: flex; align-items: center; }
#logo img{ height: 50px; width: auto; display: block; }

.nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--clr-white-80);
  text-transform: uppercase;
  transition: opacity .2s ease;
}
.nav-links a:hover{ opacity: .8; }

.nav-actions{ display:flex; align-items:center; gap:.6rem; }

.btn{
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1;
  transition: filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-ghost{
  background: rgba(255,255,255,.08);
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover{ filter: brightness(1.1); }
.btn-primary{
   color: #0a0000ff;
  border-color: #4ab2ff;
  background: linear-gradient(180deg, #5689f8, #357efb);
  box-shadow:
    0 0 10px rgba(105, 184, 244, 0.797),
    0 0 25px rgba(74, 177, 255, 0.922),
    inset 0 0 15px rgba(74, 177, 255, 0.63);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transform: translateY(-2px);
}
.btn-primary:hover{ filter: brightness(1.05);
color: white; }

/* Burger (se usar) */
.nav-toggle{ display:none; }
.nav-burger{
  display:none; width:36px; height:36px;
  align-items:center; justify-content:center; cursor:pointer;
}
.nav-burger span{
  display:block; width:22px; height:2px; background: var(--clr-white);
  margin:4px 0; transition: transform .2s ease, opacity .2s ease;
}
.nav.container {
  padding: .3rem clamp(1rem, 4vw, 3rem);
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 4px;
}

@media (max-width: 960px){
  .nav{ grid-template-columns: auto auto auto; }
  .nav-actions{ display:none; }
}
/* posição base */
.nav-links > li { position: relative; }

/* seta discreta no "SERVIÇOS" */
.nav-links .has-dd > a::after{
  content:"";
  display:inline-block; margin-left:.45rem;
  width:.42rem; height:.42rem;
  border:2px solid var(--clr-white-80);
  border-top:0; border-left:0;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease, border-color .18s ease, opacity .18s ease;
  opacity:.9;
}
.nav-links .has-dd:hover > a::after,
.nav-links .has-dd:focus-within > a::after{
  transform: rotate(225deg) translateY(2px);
  border-color: var(--clr-white);
  opacity:1;
}

/* painel do dropdown */
.nav-links .dropdown{
  position:absolute; top: calc(100% + 10px); left:50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  background: rgba(15,19,32,.96);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
  z-index: 60; /* acima do header */
}

/* “setinha” do balão */
.nav-links .dropdown::before{
  content:""; position:absolute; top:-6px; left:50%;
  transform: translateX(-50%) rotate(45deg);
  width:12px; height:12px; background:inherit;
  border-left:1px solid rgba(255,255,255,.12);
  border-top:1px solid rgba(255,255,255,.12);
}

/* links internos do dropdown */
.nav-links .dd-list{ list-style:none; margin:0; padding:4px; display:grid; gap:2px; }
.nav-links .dd-list a{
  display:block; padding:10px 12px; border-radius:8px;
  font-size:.86rem; letter-spacing:.02em; text-transform:none;
  color: rgba(234,242,255,.9); font-weight:600;
  text-decoration:none; transition: background .16s ease, color .16s ease;
}
.nav-links .dd-list a:hover{
  background: rgba(255, 255, 255, 0);
  color: #fff;
}

/* mostrar no hover/focus */
.nav-links .has-dd:hover > .dropdown,
.nav-links .has-dd:focus-within > .dropdown{
  opacity:1; visibility:visible; pointer-events:auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* não herdar a regra de “opacidade no hover” dos links de topo */
.nav-links .dropdown a:hover{ opacity:1; }

/* responsivo (opcional): fecha dropdown em telas pequenas se não tiver JS) */
@media (max-width: 960px){
  .nav-links .dropdown{
    left: 0; transform: translateX(0); /* alinha pela esquerda se o menu virar coluna */
  }
}
.btn {
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 999px; /* Formato pílula */
  font-size: .78rem;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1;
  /* Transição suave para efeitos de hover */
  transition: filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-ghost {
  /* Fundo sutilmente branco/transparente */
  background: rgba(255,255,255,.08);
  color: var(--clr-white);
  /* Borda mais visível, branca/transparente */
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  /* Fica 10% mais brilhante no hover */
  filter: brightness(1.1);
}
.btn {
  display: inline-block;
  padding: .8rem .9rem;
  border-radius: 999px; /* Formato pílula */
  font-size: .78rem;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1;
  /* Transição suave para efeitos de hover */
  transition: filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-ghost {
  /* Fundo sutilmente branco/transparente */
  background: rgba(255,255,255,.08);
  color: var(--clr-white);
  /* Borda mais visível, branca/transparente */
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  /* Fica 10% mais brilhante no hover */
  filter: brightness(1.1);
}
.btn-primary {
  /* Fundo com a cor de destaque (azul) */
  background: var(--accent);
  /* Cor do texto escura para contraste */
  color: #001223;
  /* Borda muito sutil (quase invisível) */
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}
.btn-primary:hover {
  /* Fica 5% mais brilhante no hover */
  filter: brightness(1.05);
  color: white;
}
/* Este é o estilo para o botão "Registre-se" (o azul vibrante com glow) */
.btn-primary {
    /* Cor do texto: preto ou um azul bem escuro para contraste no azul claro */
    color: #001223; /* Quase preto, para se destacar no azul vibrante */
    
    /* Borda: uma linha fina azul clara */
    border-color: #4ab2ff;
    
    /* Fundo: O gradiente azul vibrante que você quer! */
    background: linear-gradient(180deg, #5689f8, #357efb); 
    
    /* Sombra/Glow: O efeito de brilho azul neon */
    box-shadow:
      0 0 10px rgba(105, 184, 244, 0.797), /* Brilho suave */
      0 0 25px rgba(74, 177, 255, 0.922),  /* Brilho mais forte */
      inset 0 0 15px rgba(74, 177, 255, 0.63); /* Brilho interno */
    
    /* Efeito de elevação sutil */
    transform: translateY(-2px);
    
    /* Mantém as propriedades base do botão */
    display: inline-block;
    padding: .8rem .9rem;
    border-radius: 999px; /* Formato pílula */
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    letter-spacing: .02em;
    transition: all .2s ease; /* Transição para efeitos de hover */
    
    /* Filtros para o visual (mantido do seu código original) */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

.btn-primary:hover { 
    /* No hover, o brilho pode aumentar e o texto pode clarear */
    filter: brightness(1.05); /* Um pouco mais claro */
    color: white; /* Texto branco no hover */
    
    /* Opcional: Aumentar o brilho no hover para um efeito mais dinâmico */
    box-shadow:
      0 0 15px rgba(74, 177, 255, 1),
      0 0 30px rgba(74, 177, 255, 1),
      inset 0 0 20px rgba(74, 177, 255, 0.8);
}

/* Botão "Entrar" (Estilo Contorno/Ghost) */
.btn-outline-subtle {
    /* Fundo semi-transparente para dar profundidade */
    background: rgba(15, 19, 32, 0); 
    color: var(--text);
    /* Borda: Contorno leve, semi-transparente */
    border: 1px solid rgba(255, 255, 255, 0.4); 
    font-weight: 500;
    
    /* Brilho: Este é o GLOW que cria o círculo ao redor */
    box-shadow: 
        /* Brilho externo sutil azulado */
        0 0 10px rgba(47, 163, 255, 0.25), 
        /* Brilho interno muito sutil */
        inset 0 0 4px rgba(47, 163, 255, 0.08); 
    
    /* Transição suave */
    transition: all .2s ease;
}

.btn-outline-subtle:hover {
    /* Brilho maior no hover */
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 15px rgba(47, 163, 255, 0.5), /* Aumenta o glow */
        inset 0 0 8px rgba(47, 163, 255, 0.15); 
}
/* base */
.nav-links > li { position: relative; }

/* DROPDOWN — versão única */
.nav-links .dropdown{
  position: absolute;
  top: 100%;                /* encosta no item */
  left: 50%;
  transform: translateX(-50%); /* nada de translateY aqui */
  margin-top: 8px;          /* espacinho visual */
  min-width: 240px;

  background: rgba(15,19,32,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);

  /* importante p/ setinha não ser cortada */
  overflow: visible;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
  z-index: 60;
}

/* abrir */
.nav-links .has-dd:hover > .dropdown,
.nav-links .has-dd:focus-within > .dropdown,
.nav-links .has-dd.open > .dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
  transition-delay: 0s;
}
/* “setinha” do balão */
.nav-links .dropdown::before{
  content:"";
  position:absolute;
  top:-6px;
  left:50%;
  transform: translateX(-50%) rotate(45deg);
  width:12px; height:12px;

  /* use o MESMO fundo do dropdown */
  background: rgba(15,19,32,.96);
  border-left:1px solid rgba(255,255,255,.12);
  border-top:1px solid rgba(255,255,255,.12);

  z-index: 1;           /* garante sobreposição */
  pointer-events: none;
}
.nav-links > li.has-dd { position: relative; } /* já estava ok */

.nav-links > li.has-dd::after{
  content:"";
  position:absolute;
  left:-8px; right:-8px;
  top:100%;
  height:14px; /* cobre o espacinho do margin-top do dropdown */
}
/* ==== BANDEIRAS DE IDIOMA ==== */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.8rem;
}

.nav-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-lang a.active,
.nav-lang a:hover {
  opacity: 1;
  transform: scale(1.05);
}

.nav-lang img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:root{
  /* ...suas variáveis atuais... */
  --clr-white: #ffffff;
  --clr-white-80: rgba(255,255,255,.8);
}
/* Base do botão */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid transparent;
}

/* Ghost (botão “Entrar”) */
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px) saturate(180%);
}
.btn-ghost:hover {
  filter: brightness(1.1);
}

/* ✅ Botão “Registre-se” liso com gradiente e glow */
.btn.btn-primary {
  color: #000000ff;
  font-weight: 500;
  border: 1px solid #5ca7ff;
  background: linear-gradient(180deg, #63cbff 0%, #1f7bfb 100%, transparent);
  box-shadow: 0 0 15px rgba(86, 163, 255, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow:
    0 0 15px rgba(74,177,255,1),
    0 0 35px rgba(74,177,255,0.9),
    inset 0 0 15px rgba(74,177,255,0.6);
}

/* Foco/acessibilidade */
.btn:focus-visible {
  outline: 2px solid #7CC6FF;
  outline-offset: 2px;
}
.Btn{
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 9999;

  /* seu estilo original */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px; height: 45px;
  border: none; border-radius: 50%;
  cursor: pointer; overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0,0,0,.199);
  background-color: #00d757;

  /* resets necessários para <a> */
  text-decoration: none;    /* tira sublinhado */
  color: inherit;           /* herda cor do texto */
  -webkit-appearance: none; appearance: none;
}

.Btn:link, .Btn:visited{ color: inherit; text-decoration: none; }

.sign{ width: 100%; display:flex; align-items:center; justify-content:center; transition:.3s; }
.sign svg{ width:25px; }
.sign svg path{ fill:#fff; }

.text{
  position:absolute; right:0; width:0; opacity:0;
  color:#fff; font-size:1.2em; font-weight:600; transition:.3s;
}

/* efeitos (mantidos) */
.Btn:hover{ width:150px; border-radius:40px; }
.Btn:hover .sign{ width:30%; padding-left:10px; }
.Btn:hover .text{ opacity:1; width:70%; padding-right:10px; }
.Btn:active{ transform: translate(2px,2px); }

/* hover só em devices com mouse (opcional) */
@media (hover:hover) and (pointer:fine){
  .Btn:hover{ width:150px; border-radius:40px; }
  .Btn:hover .sign{ width:30%; padding-left:10px; }
  .Btn:hover .text{ opacity:1; width:70%; padding-right:10px; }
}
.hero {
  position: relative;
  display: flex;
  align-items: flex-end; /* conteúdo mais para baixo */
  justify-content: center;
  min-height: 65vh; /* reduz altura */
  padding: 100px 0 40px; /* controla espaço interno */
  overflow: hidden;
  border: none; /* tira aquela linha branca entre hero e seção */
  background: #0b0e12;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(47,163,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88) 90%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 40px; /* leve respiro do fundo */
}
.section {
  margin-top: -40px; /* puxa para cima */
  padding-top: 80px; /* mantém o respiro */
 
  position: relative;
  z-index: 3;
  color: #0b0e12;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: linear-gradient(180deg, #0F1320 0%, #0B0E12 100%);
  border: 1px solid rgba(47,163,255,0.25);
  box-shadow: 0 0 25px rgba(47,163,255,0.3);
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 480px;
  width: 100%;
  color: #EAF2FF;
  position: relative;
  animation: fadeIn .3s ease;
}

.modal-content h2 { color: #2FA3FF; text-align:center; margin:0 0 10px; }
.modal-content p { color: #BFD3EB; text-align:center; margin-bottom:20px; }

.form-contato input,
.form-contato textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px;
  color: #EAF2FF;
  margin-bottom: 12px;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #2FA3FF;
  box-shadow: 0 0 6px rgba(47,163,255,0.5);
  outline: none;
}

.btn-enviar {
  width: 100%;
  background: linear-gradient(90deg, #2FA3FF, #56c2ff);
  color: #001133;
  border: 1px solid #59bfff;
  border-radius: 999px;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-enviar:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(86,194,255,0.5);
}

.fechar {
  position: absolute;
  top: 10px; right: 18px;
  font-size: 1.8rem;
  color: #59bfff;
  cursor: pointer;
}
footer {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #757474;
}
.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
}
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
   gap: 14px; 
}
.example-2 .icon-content {
  margin: 0;
  position: relative;
  padding: 0;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: 100%;
  right: 110%;
  transform: translateY(200%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}

.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="linkedin"] .filled,
.example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}

.example-2 .icon-content a[data-social="github"] .filled,
.example-2 .icon-content a[data-social="github"] ~ .tooltip {
  background-color: #24262a;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.language-selector-footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.language-selector-footer a.active, .language-selector-footer a:hover {
    color: var(--primary-color);
}

/* Botão de Retorno ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3;
    color: var(--white);
}
/* Reduz o tamanho dos ícones para caberem em telas pequenas */
.footer .example-2 .icon-content a {
    width: 40px; /* Reduz de 50px para 40px */
    height: 40px; /* Reduz de 50px para 40px */
}

.footer .example-2 .icon-content a svg {
    width: 20px; /* Reduz de 30px para 20px */
    height:
}

/* ======= FOOTER EM LINHA ======= */
footer .container .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; /* mantém tudo na horizontal */
}

/* garante largura proporcional das colunas */
footer .col-sm-4,
footer .col-md-4,
footer .col-lg-4 {
  flex: 1;
  min-width: 0;
}

/* Evita quebra em telas grandes */
@media (min-width: 992px) {
  footer .container .row {
    flex-wrap: nowrap;
  }
}

/* Empilha apenas no mobile */
@media (max-width: 768px) {
  footer .container .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .col-sm-4,
  footer .col-md-4,
  footer .col-lg-4 {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 960px) {

  /* 🔹 Garante que o nav seja referência */
  .nav {
    position: relative !important;
    overflow: visible !important;
  }

  /* 🔹 Coloca o botão “Contato” fora do fluxo */
  .nav-actions {
    position: absolute;
    bottom: -1.8rem; /* 👈 posiciona logo abaixo do menu */
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    z-index: 1000;
  }

  .nav-actions .btn {
    font-size: 0.55rem !important;
    padding: 0.18rem 0.4rem !important;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    color: #fff;
    background: rgba(0,0,0,0.25);
  }

  /* 🔹 Dropdown centralizado e sem interferência do botão */
  .nav .dropdown {
    position: absolute !important;
    top: 100%; /* logo abaixo do item “Serviços” */
    left: 50%;
    transform: translateX(-50%);
    width: 80vw !important;
    max-width: 280px;
    background: rgba(0, 0, 0, 0.93);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
    padding: 0.5rem 0.7rem;
    margin-top: 0.3rem;
    z-index: 2000;
  }

  /* 🔹 Triângulo */
  .nav .dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.93);
  }
}
 @media (max-width: 960px) {
  .ti-sub {
    display: block;
    text-align: center;         /* 🔹 centraliza o texto */
    margin: 0.8rem auto 0;      /* 🔹 espaçamento superior e central horizontal */
    padding: 0 1rem;            /* 🔹 dá respiro lateral pra não encostar nas bordas */
    font-size: 0.95rem;         /* 🔹 tamanho confortável no mobile */
    line-height: 1.4;
    color: rgba(255,255,255,0.92);  /* mantém contraste */
    max-width: 90%;             /* 🔹 evita que o texto vá até a borda da tela */
    word-break: break-word;
  }
}


@media (max-width: 960px) {

  /* Esconde menu antigo */
  .nav-links, .nav-actions, .nav-lang {
    display: none !important;
  }

  /* Botão hambúrguer */
  /* 🔹 Botão SVG do menu hambúrguer */
.hamburger {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger svg {
  width: 100%;
  height: 100%;
}

/* 🔹 Efeito hover opcional */
.hamburger:hover svg {
  color: #00aaff;
  transition: color 0.3s ease;
}

/* 🔹 Some no desktop */
@media (min-width: 961px) {
  #menu-toggle,
  #mobile-menu {
    display: none !important;
  }
}


  /* Menu lateral */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -75%;
    width: 70%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 1.5rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    transition: left 0.35s ease;
    z-index: 2000;
  }

  .mobile-menu.open {
    left: 0;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
  }

  .mobile-menu li {
    margin-bottom: 1.2rem;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  /* Botão fechar */
  .close-menu {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }
}
/* 🔹 Esconde o menu lateral e o botão no desktop */
@media (min-width: 961px) {
  #menu-toggle,
  #mobile-menu {
    display: none !important;
  }
}
/* ===== BANDEIRAS AO LADO DA LOGO (somente mobile) ===== */
@media (max-width: 960px) {
  .mobile-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
  }

  .mobile-lang img {
    width: 14px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
  }

  .mobile-lang img:hover {
    opacity: 1;
  }

  /* Oculta as bandeiras originais do canto direito */
  .nav-lang {
    display: none !important;
  }
}

/* ===== DESKTOP (mantém tudo normal) ===== */
@media (min-width: 961px) {
  .mobile-lang {
    display: none !important;
  }
}

@media (max-width: 960px) {

  /* HEADER */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    padding: 0.35rem 0;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
  }

  #logo img {
    height: 34px;
    width: auto;
  }

  /* menu + botão cabendo */
  .nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .nav-links a {
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .nav-actions {
    display: flex;
    flex-shrink: 0;
  }

  .nav-actions .btn {
    font-size: 0.62rem;
    padding: 0.35rem 0.55rem;
    line-height: 1;
    white-space: nowrap;
  }
  /* Permite que o dropdown seja visível mesmo com o menu pequeno */
  .nav-links {
    overflow: visible !important;
  }

  /* Ajusta o comportamento do dropdown */
  .has-dd {
    position: relative;
  }

  .has-dd .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.9);
    padding: 0.5rem 0;
    z-index: 9999; /* garante que fica acima do botão Contato */
    width: max-content;
    min-width: 220px;
  }

  .has-dd.open .dropdown {
    display: block;
  }

  /* Garante que o botão "Contato" não sobreponha o menu */
  .nav-actions {
    position: relative;
    z-index: 1;
  }

    .has-dd {
    position: relative;
  }

  .has-dd .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px); /* um pequeno espaçamento abaixo do texto */
    left: 0; /* alinha com o início do item SERVIÇOS */
    transform: translateX(-10%); /* 🔧 ajuste fino para centralizar visualmente */
    background: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    z-index: 9999;
    width: max-content;
    min-width: 240px;
  }

  .has-dd.open .dropdown {
    display: block;
  }

  .has-dd .dropdown a {
    display: block;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
  }

  .has-dd .dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }


@media (max-width: 960px) {

  /* 🔹 Corrige dropdown no mobile */
  .nav .dropdown {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    width: 85vw !important; /* limita a largura */
    margin: 0.5rem auto !important;
    transform: none !important;
  }

  .nav .dropdown .dd-list {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav .dropdown .dd-list a {
    display: block;
    font-size: 0.78rem;
    padding: 0.3rem 0.1rem;
    color: #fff;
    text-decoration: none;
  }

  /* 🔹 Centraliza visualmente o menu abaixo do item */
  .has-dd > .dropdown {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {

  /* 🔹 HEADER fino e preciso */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
    padding: 0.25rem 0 !important; /* 👈 levemente mais alto pra cobrir o "Contato" */
    height: auto !important;
  }

  /* 🔹 NAV bem compacta */
  .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.2rem 0.3rem !important;
    padding: 0.2rem 0.4rem !important;
  }

  /* 🔹 Logo */
  #logo img {
    height: 40px !important;
    width: auto !important;
    margin-right: 0.3rem;
  }


  /* 🔹 HERO ajustado */
  .hero {
    margin-top: -42px !important; /* 👈 cola o vídeo sob o header */
  }

  .hero-inner {
    padding-top: 48px !important;
  }
}
@media (max-width: 960px) {

  /* 🔹 Garante que o nav seja referência */
  .nav {
    position: relative !important;
    overflow: visible !important;
  }

  /* 🔹 Coloca o botão “Contato” fora do fluxo */
  .nav-actions {
    position: absolute;
    bottom: -1.8rem; /* 👈 posiciona logo abaixo do menu */
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    z-index: 1000;
  }

  .nav-actions .btn {
    font-size: 0.55rem !important;
    padding: 0.18rem 0.4rem !important;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    color: #fff;
    background: rgba(0,0,0,0.25);
  }

  /* 🔹 Dropdown centralizado e sem interferência do botão */
  .nav .dropdown {
    position: absolute !important;
    top: 100%; /* logo abaixo do item “Serviços” */
    left: 50%;
    transform: translateX(-50%);
    width: 80vw !important;
    max-width: 280px;
    background: rgba(0, 0, 0, 0.93);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
    padding: 0.5rem 0.7rem;
    margin-top: 0.3rem;
    z-index: 2000;
  }

  /* 🔹 Triângulo */
  .nav .dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.93);
  }
}


@media (max-width: 960px) {

  /* Esconde menu antigo */
  .nav-links, .nav-actions, .nav-lang {
    display: none !important;
  }

  /* Botão hambúrguer */
  /* 🔹 Botão SVG do menu hambúrguer */
.hamburger {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger svg {
  width: 100%;
  height: 100%;
}

/* 🔹 Efeito hover opcional */
.hamburger:hover svg {
  color: #00aaff;
  transition: color 0.3s ease;
}

/* 🔹 Some no desktop */
@media (min-width: 961px) {
  #menu-toggle,
  #mobile-menu {
    display: none !important;
  }
}


  /* Menu lateral */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -75%;
    width: 70%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 1.5rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    transition: left 0.35s ease;
    z-index: 2000;
  }

  .mobile-menu.open {
    left: 0;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
  }

  .mobile-menu li {
    margin-bottom: 1.2rem;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  /* Botão fechar */
  .close-menu {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }
}
/* 🔹 Esconde o menu lateral e o botão no desktop */
@media (min-width: 961px) {
  #menu-toggle,
  #mobile-menu {
    display: none !important;
  }
}
/* ===== BANDEIRAS AO LADO DA LOGO (somente mobile) ===== */
@media (max-width: 960px) {
  .mobile-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
  }

  .mobile-lang img {
    width: 14px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
  }

  .mobile-lang img:hover {
    opacity: 1;
  }

  /* Oculta as bandeiras originais do canto direito */
  .nav-lang {
    display: none !important;
  }
}

/* ===== DESKTOP (mantém tudo normal) ===== */
@media (min-width: 961px) {
  .mobile-lang {
    display: none !important;
  }
}

/* ================================
   🔹 MENU LATERAL (MOBILE)
=================================== */

/* 🔸 Menu começa fechado fora da tela */
#mobile-menu {
  position: fixed;
  top: 0;
  left: -100%; /* começa escondido */
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  transition: left 0.3s ease;
  overflow-y: auto; /* permite rolagem */
  overflow-x: hidden;
  z-index: 9999;
  padding-bottom: 80px; /* espaço pro botão contato */
  scrollbar-width: thin;
}

/* 🔸 Quando o menu está aberto */
#mobile-menu.open {
  left: 0; /* entra suave da esquerda */
}

/* 🔸 Botão de fechar (X) */
#mobile-menu .close-menu {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 10px;
  transition: all 0.2s ease;
}
#mobile-menu .close-menu:hover {
  background: rgba(255,255,255,0.1);
}

/* 🔸 Lista principal */
#mobile-menu ul {
  margin: 0;
  padding: 60px 0 80px;
  list-style: none;
}

/* 🔸 Itens principais */
#mobile-menu ul li a {
  display: block;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: background 0.2s ease;
}

#mobile-menu ul li a:hover {
  background: rgba(255,255,255,0.08);
}

/* 🔸 "Serviços" com submenu */
#mobile-menu .has-dd > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

/* 🔸 Dropdown de serviços */
#mobile-menu .has-dd .dropdown {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px 25px 8px 35px;
  margin: 0;
  border-left: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  max-height: 65vh; /* 🔥 limita a altura */
  overflow-y: auto; /* 🔥 scroll interno */
  width: calc(100% - 20px);
  box-sizing: border-box;
}

/* 🔸 Dropdown ativo (aberto) */
#mobile-menu .has-dd.active .dropdown {
  display: block;
}

/* 🔸 Links dentro do dropdown */
#mobile-menu .dropdown a {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  display: block;
  padding: 6px 0;
}
#mobile-menu .dropdown a:hover {
  color: #00aaff;
}

/* 🔸 Bandeiras dentro do menu lateral */
#mobile-menu .nav-lang {
  display: flex;
  gap: 10px;
  padding: 15px 25px;
  justify-content: flex-start;
}
#mobile-menu .nav-lang img {
  width: 22px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
#mobile-menu .nav-lang img:hover {
  opacity: 1;
}

/* 🔸 Botão de contato */
#mobile-menu .nav-actions {
  padding: 20px 25px;
  text-align: left;
}
#mobile-menu .btn.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.2s ease;
}
#mobile-menu .btn.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #00aaff;
  color: #00aaff;
}

/* ================================
   🔹 BOTÃO HAMBÚRGUER (MOBILE)
=================================== */
#menu-toggle.hamburger {
  display: none;
  background: none;
  border: none;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 10000;
  cursor: pointer;
  color: #fff;
}

/* Ícone SVG */
#menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

/* Mostrar só no mobile */
@media (max-width: 991px) {
  #menu-toggle.hamburger {
    display: block;
  }
}

/* ================================
   🔹 AJUSTES GERAIS
=================================== */
body.menu-open {
  overflow: hidden; /* impede rolagem do fundo */
}
.mobile-menu .mobile-contact {
  display: block;
  text-align: center;
  margin-top: 2rem;
}

/* 🔹 Versão reduzida só no mobile */
@media (max-width: 768px) {
  .orbit-copy h2 {
    font-size: 1.9em; /* 👈 diminui no celular */
    line-height: 1.3;
  }
}
.only-mobile { display: none; }
.only-desktop { display: list-item; }

@media (max-width: 768px) {
  .only-mobile { display: list-item; }
  .only-desktop { display: none; }
}
