/* ══════════════════════════════════════════════════════════════
   HERO — Layout centralizado
══════════════════════════════════════════════════════════════ */
body { margin:0; padding:0; overflow-x: hidden; }

.hero {
  min-height: 100vh;
  width: 100%;
  background-color: var(--nude);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.hero-bg-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background-image: url('../assets/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  will-change: transform;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 4.5rem 2rem 2rem;
  width: 100%; max-width: 860px;
  margin: 0 auto; box-sizing: border-box;
}
.hero-top-tag {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; position: relative; z-index: 2;
}
.hero-icon-wrap { position: relative; z-index: 2; margin-bottom: 0; }
.hero-icon-img {
  width: clamp(140px, 18vw, 220px); height: clamp(140px, 18vw, 220px); display: block; border-radius: 50%;
  filter: drop-shadow(0 6px 30px rgba(184,145,58,0.2));
  animation: iconFloat 5s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-logo-block {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2; margin-bottom: 0.25rem;
}
.hero-studio-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 0.3rem;
}
.hero-studio-line {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  flex-shrink: 0;
}
.hero-studio-tag {
  font-size: 12px; letter-spacing: 8px; text-transform: uppercase;
  color: var(--brown); font-weight: 500; margin: 0;
}
.hero-nome {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 400; letter-spacing: 5px; text-transform: uppercase;
  color: var(--text); margin: 0; line-height: 1; position: relative; z-index: 2;
}
.hero-divider {
  position: relative; overflow: visible;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent) !important;
  height: 1px !important; width: 100px !important;
  z-index: 2; margin: 0.75rem 0;
  animation: dividerExpand 1.2s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}
@keyframes dividerExpand {
  from { width: 0; opacity: 0; }
  to   { width: 100px; opacity: 1; }
}
.hero-divider::before {
  content: '✦'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px; color: var(--gold); line-height: 1;
}
.hero-divider::after { display: none; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2.2vw, 20px); font-weight: 400; font-style: italic;
  color: var(--text-2); text-align: center; letter-spacing: 0.5px;
  position: relative; z-index: 2; margin: 0 0 1.25rem;
}
.hero-ctas {
  display: flex; align-items: center; gap: 1.25rem;
  position: relative; z-index: 2; margin-bottom: 0;
  flex-wrap: wrap; justify-content: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brown); color: var(--white);
  padding: 14px 28px; font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background 0.25s;
}
.btn-primary:hover { background: var(--brown-2); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--brown);
  color: var(--brown); padding: 13px 28px;
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.25s;
}
.btn-ghost:hover { background: var(--brown); color: var(--white); }

/* Badges strip (fora do hero) */
.hero-badges-strip {
  background: var(--white);
  border-top: 1px solid var(--nude-3); border-bottom: 1px solid var(--nude-3);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-badges { display: flex; align-items: center; gap: 3rem; justify-content: center; }
.hero-badge  { text-align: center; }
.badge-icon  { font-size: 22px; margin-bottom: 6px; }
.hero-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  color: var(--text); line-height: 1;
}
.hero-badge .lbl {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-3); margin-top: 4px;
}
.hero-badge-sep {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--nude-3), transparent);
  flex-shrink: 0;
}

/* Fade-up */
.fade-up {
  opacity: 0; transform: translateY(24px);
  animation: fadeUpIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUpIn { to { opacity: 1; transform: translateY(0); } }
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1);    opacity: 0.5; }
  50%  { transform: translateY(-20px) scale(1.2); opacity: 0.8; }
  100% { transform: translateY(-40px) scale(0.8); opacity: 0.2; }
}









/* Tag topo */


/* Ícone KL */


@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Studio row */






/* Divider */
.hero-divider {
  position: relative;
  overflow: visible;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent) !important;
  height: 1px !important;
  width: 100px !important;
  z-index: 2;
  margin: 0.75rem 0;
  animation: dividerExpand 1.2s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}
@keyframes dividerExpand {
  from { width: 0; opacity: 0; }
  to   { width: 100px; opacity: 1; }
}
.hero-divider::before {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: var(--gold);
  background: transparent;
  line-height: 1;
}
.hero-divider::after { display: none; }

/* Tagline */


/* CTAs */


.btn-primary:hover { background: var(--brown-2); }

.btn-ghost:hover { background: var(--brown); color: var(--white); }

/* Badges */



.hero-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}


/* Partículas */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

/* Fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUpIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  
  
  
  .btn-primary, 
  
  
}

/* site/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --nude:       #F0E6DC;
  --nude-2:     #E8D8CC;
  --nude-3:     #D4C0B0;
  --nude-4:     #BEA494;
  --brown:      #5C3D2E;
  --brown-2:    #7A5544;
  --gold:       #B8913A;
  --gold-2:     #D4AA55;
  --gold-light: #F0D898;
  --white:      #FDF9F6;
  --text:       #3A2318;
  --text-2:     #6B5040;
  --text-3:     #9A7A68;
  --black:      #1A0F0A;
  --green:      #2E7D32;
  --red:        #C62828;
}


/* ── Skip link (acessibilidade) ──────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--brown); color: var(--white);
  padding: 10px 18px; font-size: 13px; letter-spacing: 1px;
  z-index: 9999; border-radius: 0 0 4px 4px;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); }

html { scroll-behavior: smooth; }
body {
  overflow-x: hidden; font-family: 'Jost', sans-serif; background: var(--nude); color: var(--text); overflow-x: hidden; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
.gold-line { display: block; width: 48px; height: 2px; background: var(--gold); margin: 1rem 0; }
.eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s; }
nav.scrolled { background: rgba(240,230,220,0.96); backdrop-filter: blur(10px); padding: 0.875rem 2rem; box-shadow: 0 1px 20px rgba(92,61,46,0.08); }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-wa { background: var(--brown); color: var(--white) !important; padding: 10px 22px; border-radius: 2px; font-size: 11px !important; letter-spacing: 1.5px !important; font-weight: 500 !important; text-decoration: none; transition: background 0.2s; }
.nav-wa:hover { background: var(--brown-2) !important; }
.nav-curso {
  color: var(--gold) !important; font-weight: 500 !important;
  position: relative;
}
.nav-curso::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.nav-curso:hover { color: var(--gold-2) !important; }

/* Botão hambúrguer — escondido em desktop */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; flex-shrink: 0; background: none; border: none; cursor: pointer; padding: 0; z-index: 102; }
.nav-burger span { display: block; width: 100%; height: 2px; background: var(--brown); transition: transform 0.25s, opacity 0.25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links-mobile-only { display: none; }
.nav-wa-mobile { display: none; }

/* Overlay escuro atrás do menu mobile aberto */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(26,15,10,0.45); z-index: 99; opacity: 0; transition: opacity 0.25s; }
.nav-overlay.open { display: block; opacity: 1; }

/* HERO */

/* Camada de fundo separada do conteúdo — permite mover só a imagem
   (parallax) sem afetar o texto, que continua fixo e legível. A escala
   de 112% garante que não apareça borda vazia quando a camada se desloca. */

/* Overlay sutil para garantir legibilidade do texto sobre a imagem,
   sem esconder o visual de fundo */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,247,245,0.15) 0%, rgba(250,247,245,0.55) 75%, rgba(250,247,245,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero > *:not(.hero-img-bg):not(.hero-bg-photo):not(.hero-particles) { position: relative; z-index: 2; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,145,58,0.07) 79px, rgba(184,145,58,0.07) 80px); pointer-events: none; }

/* ── Hero: imagem de fundo (estrutura atual do hero, ver index.html) ──
   .hero-img-bg é a foto de fundo real, esticada pra cobrir o hero
   inteiro; sem isso, o <img> renderiza no tamanho natural do arquivo,
   estourando o layout (bug real encontrado em produção: no mobile a
   imagem aparecia gigante e cortada, sem responsividade nenhuma). */
.hero-img-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
/* .hero-bg-photo é uma segunda tag <img> duplicada no HTML, sem uso de
   JS (não é parallax) — escondida pra não empilhar a mesma foto por
   cima, sem estilo, repetindo o mesmo bug. */
.hero-bg-photo { display: none; }
.hero-split { width: 100%; height: 100%; display: flex; align-items: center; }
.hero-left { width: 100%; }

.hero-logo-img { width: min(340px, 72vw); height: auto; display: block; filter: drop-shadow(0 4px 24px rgba(184,145,58,0.15)); }
/* Espaço reservado para a área da logo já presente na imagem de fundo do hero */



/* Shine — uma faixa de luz passa diagonalmente sobre a área do símbolo K
   dourado, como um brilho de joia, em loop bem espaçado pra não cansar.
   Usa opacidade direta (não mix-blend-mode) para garantir visibilidade
   consistente independente do que estiver atrás. */
.hero-shine {
  position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,250,230,0.85) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: heroShineSweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes heroShineSweep {
  0%, 88%, 100% { left: -60%; }
  44% { left: 130%; }
}

/* Partículas douradas flutuantes — geradas dinamicamente via JS,
   cada uma é um ponto pequeno que sobe lentamente e desaparece.
   Duração, atraso, opacidade e deslocamento horizontal são definidos
   diretamente no style inline de cada partícula (via JS), não dentro do
   keyframe — var() referenciando opacity dentro de @keyframes tem
   suporte inconsistente entre navegadores, então a opacidade máxima
   também é fixa no keyframe (0.55), e cada partícula só varia tamanho/
   duração/atraso, que são propriedades de transform e timing — essas
   sim têm suporte sólido via var() em qualquer navegador moderno. */
.hero-particles { position: absolute !important; inset: 0; pointer-events: none; overflow: hidden; z-index: 1 !important; }
.hero-particle {
  position: absolute; bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,74,0.9) 0%, rgba(212,169,74,0) 70%);
  animation-name: heroParticleFloat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes heroParticleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: 0.6; }
  88%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--drift, 0px)); opacity: 0; }
}

/* Respeitar quem prefere menos movimento na tela (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  .hero-shine, .hero-particle { animation: none !important; display: none; }
  .fade-up { animation: fadeUpReduced 0.4s ease forwards; }
}
@keyframes fadeUpReduced { from { opacity: 0; } to { opacity: 1; } }


.hero-divider { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.75rem 0; position: relative; z-index: 2; }




.btn-primary:hover { background: var(--gold); }

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); gap: 12px; }



.hero-badge .num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--brown); line-height: 1; }
.hero-badge .lbl { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-top: 4px; }

.scroll-down { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); z-index: 2; text-decoration: none; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }
.scroll-down .arrow { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* SOBRE */
.sobre { padding: 7rem 0; background: var(--nude); position: relative; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-visual { position: relative; }
.sobre-moldura { position: relative; background: var(--nude-2); padding: 28px; border-radius: 18px; }
.sobre-img-frame { position: relative; display: block; width: 100%; overflow: hidden; line-height: 0; border-radius: 12px; }
.sobre-img { width: 100%; height: auto; display: block; max-height: 580px; object-fit: cover; object-position: center top; border-radius: 12px; }
.sobre-simbolo-area { position: absolute; top: 44px; left: 44px; z-index: 2; display: flex; align-items: flex-start; gap: 6px; }
.sobre-simbolo-img { width: 64px; height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
.sobre-tag-fina { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-size: 7px; line-height: 1.5; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; padding-top: 4px; opacity: 0.9; }
.sobre-text h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 400; color: var(--text); margin-bottom: 1.5rem; }
.sobre-text h2 em { font-style: italic; color: var(--gold); }
.sobre-text .eyebrow { color: var(--gold); }
.sobre-text .gold-line { background: var(--gold); }
.sobre-text p { font-size: 15px; line-height: 1.9; color: var(--text-2); font-weight: 300; margin-bottom: 1.25rem; }
.sobre-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 2rem 0; }
.pill { background: var(--white); color: var(--text-2); border: 1px solid var(--nude-3); padding: 6px 16px; font-size: 11px; letter-spacing: 1px; font-weight: 400; border-radius: 20px; cursor: default; user-select: none; transition: border-color .2s, color .2s; }
.pill:hover { border-color: var(--gold); color: var(--brown); }

/* SERVIÇOS */
.servicos { padding: 7rem 0; background: var(--nude); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .gold-line { margin: 1rem auto; }
.section-header h2 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 400; color: var(--brown); }
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p { font-size: 15px; color: var(--text-2); max-width: 480px; margin: 1rem auto 0; font-weight: 300; line-height: 1.8; }

.servicos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.servico-grupo { background: var(--white); padding: 2.5rem; }
.servico-grupo-title { font-family: 'Playfair Display', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--nude-2); }
.servico-linha { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--nude); gap: 1rem; }
.servico-linha:last-child { border-bottom: none; }
.servico-nome { font-size: 14px; color: var(--text); font-weight: 300; flex: 1; }
.servico-dots { flex: 1; border-bottom: 1px dotted var(--nude-3); margin: 0 12px; margin-bottom: 4px; }
.servico-preco { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; color: var(--brown); white-space: nowrap; }
.servico-nota { font-size: 11px; color: var(--text-3); margin-top: 3px; }
.loading-msg { text-align: center; padding: 2rem; color: var(--text-3); font-size: 13px; grid-column: 1/-1; }

.pagamento-wrap { background: var(--nude-2); padding: 2rem 2.5rem; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.pagamento-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; white-space: nowrap; }
.pagamento-metodos { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.pagamento-item { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 6px; font-weight: 300; cursor: default; user-select: none; }
.pagamento-item::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.pagamento-nota { font-size: 11px; color: var(--text-3); margin-left: auto; }

/* AGENDAMENTO ONLINE */
.agendar { padding: 7rem 0; background: var(--white); }
.agendar-card { max-width: 560px; margin: 0 auto; background: var(--nude); padding: 2.5rem; position: relative; min-height: 360px; }
.ag-step { display: none; }
.ag-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.ag-step-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 500; }

.ag-servicos-list { display: flex; flex-direction: column; gap: 10px; max-height: 380px; overflow-y: auto; }
.ag-servico-item { background: var(--white); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.ag-servico-item:hover, .ag-servico-item.selected { border-color: var(--gold); }
.ag-servico-nome { font-size: 14px; color: var(--text); }
.ag-servico-meta { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.ag-servico-preco { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--brown); }

.ag-date-input { width: 100%; padding: 14px 16px; border: 1px solid var(--nude-3); font-family: 'Jost', sans-serif; font-size: 15px; color: var(--text); background: var(--white); outline: none; margin-bottom: 1.5rem; }
.ag-date-input:focus { border-color: var(--gold); }

.ag-slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-height: 320px; overflow-y: auto; margin-bottom: 1rem; }
.ag-slot-btn { background: var(--white); border: 1px solid var(--nude-3); padding: 12px 8px; font-family: 'Jost', sans-serif; font-size: 13px; color: var(--text); cursor: pointer; transition: all 0.2s; text-align: center; }
.ag-slot-btn:hover { border-color: var(--gold); }
.ag-slot-btn.selected { background: var(--brown); color: var(--white); border-color: var(--brown); }
.ag-slot-empty { grid-column: 1/-1; text-align: center; padding: 2rem 1rem; color: var(--text-3); font-size: 13px; }

.ag-resumo { background: var(--white); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; font-size: 13px; color: var(--text-2); line-height: 1.7; }
.ag-resumo strong { color: var(--brown); }

.ag-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.ag-field label { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; font-weight: 500; }
.ag-field input, .ag-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--nude-3); font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.ag-field input:focus, .ag-field textarea:focus { border-color: var(--gold); }
.ag-field textarea { resize: vertical; min-height: 70px; }

.ag-erro { display: none; background: #fdecea; color: var(--red); padding: 10px 14px; font-size: 12px; border-left: 3px solid var(--red); margin-bottom: 1rem; }

.ag-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.btn-primary-sm { background: var(--brown); color: var(--white); padding: 12px 28px; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: background 0.2s; }
.btn-primary-sm:hover { background: var(--gold); }
.btn-primary-sm:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ghost-sm { background: none; border: none; color: var(--text-2); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.btn-ghost-sm:hover { color: var(--brown); }

.ag-sucesso-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 1.5rem; }
#ag-step-sucesso { text-align: center; }
#ag-step-sucesso h3 { font-size: 24px; color: var(--brown); margin-bottom: 0.75rem; }
#ag-step-sucesso p { font-size: 14px; color: var(--text-2); margin-bottom: 1.5rem; line-height: 1.7; }

/* INSTAGRAM/PORTFOLIO */
.instagram { padding: 7rem 0; background: var(--nude); overflow: hidden; }

/* PORTFOLIO — CARROSSEL (transform-based, GPU-accelerated) */
.instagram .sec-header { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.instagram.in-view .sec-header { opacity: 1; transform: translateY(0); }

.carousel-wrap {
  position: relative; margin-top: 3rem;
  display: flex; align-items: center;
}

/* Fade nos cantos para efeito de profundidade */
.carousel-wrap::before,
.carousel-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 10; pointer-events: none;
}
.carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--nude) 0%, transparent 100%);
}
.carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--nude) 0%, transparent 100%);
}

/* Viewport: janela que recorta o track sem scroll nativo */
.carousel-viewport {
  flex: 1; overflow: hidden;
  border-radius: 2px;
}

.carousel-track {
  display: flex; gap: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-item {
  position: relative; flex: 0 0 auto;
  width: clamp(240px, 30vw, 340px); aspect-ratio: 4/5;
  overflow: hidden; display: block; background: var(--nude-2);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease, opacity 0.5s ease;
  border-radius: 3px;
  opacity: 0.55;
  transform: scale(0.93);
  /* Borda dourada elegante */
  border: 2px solid rgba(184,145,58,0.25);
  outline: 6px solid transparent;
  outline-offset: -8px;
}
.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 60px rgba(92,61,46,0.2), 0 4px 20px rgba(184,145,58,0.2);
  border: 2px solid rgba(184,145,58,0.7);
  outline: 6px solid rgba(184,145,58,0.08);
}
.carousel-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.carousel-item.active:hover img { transform: scale(1.05); }
.carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(92,61,46,0.75) 0%, rgba(92,61,46,0.2) 60%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0; transition: opacity 0.35s;
}
.carousel-item.active:hover .carousel-overlay { opacity: 1; }
.carousel-overlay span {
  color: var(--white); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; border-bottom: 1px solid var(--gold-light);
  padding-bottom: 4px;
}

/* Botões de navegação */
.carousel-btn { display: none !important; } .carousel-btn-hidden {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--nude-3);
  color: var(--brown); font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; z-index: 2;
  box-shadow: 0 4px 16px rgba(92,61,46,0.12);
}
.carousel-btn:hover {
  background: var(--brown); color: var(--white);
  border-color: var(--brown);
  box-shadow: 0 8px 24px rgba(92,61,46,0.25);
  transform: scale(1.08);
}
.carousel-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; transform: none; }

/* Dots com barra de progresso */
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--nude-3); border: none; padding: 0;
  cursor: pointer; transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.carousel-dot.active {
  background: var(--nude-3);
  width: 36px; border-radius: 4px;
}
.carousel-dot.active::after {
  content: '';
  position: absolute; inset: 0; left: 0;
  background: var(--gold);
  border-radius: 4px;
  animation: dotProgress var(--dot-duration, 4s) linear forwards;
}
@keyframes dotProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Entrada dos itens ao entrar na viewport */
.carousel-item {
  opacity: 0; transform: scale(0.9) translateY(20px);
}
.instagram.in-view .carousel-item {
  opacity: 0.6; transform: scale(0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease, opacity 0.8s ease;
}
.instagram.in-view .carousel-item.active {
  opacity: 1; transform: scale(1);
}

.instagram-cta { text-align: center; margin-top: 2.5rem; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: 1px solid var(--brown); color: var(--brown);
  padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-instagram::before {
  content: ''; position: absolute; inset: 0;
  background: var(--brown);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn-instagram:hover::before { transform: scaleX(1); }
.btn-instagram:hover { color: var(--white); }
.btn-instagram > * { position: relative; z-index: 1; }

/* MANUTENÇÃO */
.manutencao { padding: 7rem 0; background: var(--white); }
.manutencao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.manutencao-text h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 400; color: var(--brown); margin-bottom: 1rem; }
.manutencao-text h2 em { font-style: italic; color: var(--gold); }
.manutencao-text p { font-size: 14px; line-height: 1.9; color: var(--text-2); font-weight: 300; margin-bottom: 1.5rem; }
.prazo-cards { display: flex; flex-direction: column; gap: 12px; }
.prazo-card { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; background: var(--nude); border-left: 3px solid var(--gold); }
.prazo-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; white-space: nowrap; }
.prazo-info { flex: 1; }
.prazo-title { font-size: 14px; font-weight: 500; color: var(--brown); margin-bottom: 3px; }
.prazo-desc { font-size: 12px; color: var(--text-3); font-weight: 300; }
.manutencao-aviso { margin-top: 2rem; padding: 1.5rem; background: var(--brown); color: var(--white); font-size: 13px; line-height: 1.7; font-weight: 300; }
.manutencao-aviso strong { color: var(--gold-light); }
.reposicao-box { margin-top: 1rem; background: var(--nude); padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.reposicao-box .label { font-size: 13px; color: var(--text-2); }
.reposicao-box .val { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 500; color: var(--brown); }

/* CTA FINAL */
.cta-final { background: var(--brown); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 620px; height: 620px;
  transform: translate(-50%, -50%);
  background-image: url('assets/logo-simbolo.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.07; pointer-events: none;
}
.cta-final-logo { max-width: 130px; width: 100%; height: auto; margin-bottom: 1.75rem; position: relative; z-index: 1; opacity: 0.95; }
.cta-final .eyebrow { color: var(--gold-light); margin-bottom: 1.5rem; }
.cta-final h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.cta-final h2 em { font-style: italic; color: var(--gold-2); }
.cta-final p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 3rem; font-weight: 300; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-tel { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold-light); margin-top: 2.5rem; letter-spacing: 1px; }
.cta-tel a { color: inherit; text-decoration: none; }
.cta-instagram-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-size: 12px; letter-spacing: 1.5px;
  text-decoration: none; border: 1px solid rgba(240,216,152,0.35);
  border-radius: 20px; padding: 9px 20px;
  transition: background .2s, border-color .2s, color .2s;
}
.cta-instagram-btn:hover { background: rgba(240,216,152,0.1); border-color: var(--gold-light); color: var(--white); }

/* FOOTER */
footer { background: var(--black); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo-img { height: 34px; width: auto; display: block; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.35); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px; }
.footer-dev { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px; }

/* WA FLUTUANTE */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 99; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* RESPONSIVE */

/* Tablets e celulares grandes (≤ 900px) */



/* Aurora: manchas douradas/rosadas pulsantes no fundo */
/* (efeito removido — trecho antigo deixava chaves órfãs no CSS) */

/* Linhas douradas diagonais — grossas e bem visíveis */


@keyframes lineSweep {
  0%   { transform: translateX(-130%) rotate(-38deg); opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translateX(230vw) rotate(-38deg); opacity: 0; }
}

/* Orbes de brilho pulsantes — contidos dentro do hero */
/* (efeito removido — trecho antigo deixava chaves órfãs no CSS) */

/* Anel giratório — contido e centrado */

.hero-ring::before {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px 5px rgba(184,145,58,0.8);
}

.hero-ring-2::before {
  background: var(--gold-2);
  box-shadow: 0 0 10px 4px rgba(212,170,85,0.7);
}

/* Fade-up com stagger para elementos do hero */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUpIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.75s; }
.delay-4 { animation-delay: 1s; }
@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Brilho do hero-divider */
.hero-divider {
  position: relative; overflow: visible;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent) !important;
  height: 1px !important;
  width: 100px !important;
  animation: dividerExpand 1.2s cubic-bezier(0.22,1,0.36,1) 0.6s both;
  z-index: 2; margin: 0;
}
@keyframes dividerExpand {
  from { width: 0; opacity: 0; }
  to   { width: 120px; opacity: 1; }
}
.hero-divider::before {
  content: '✦';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px; color: var(--gold);
  line-height: 1;
  animation: starSpin 8s linear infinite;
}
@keyframes starSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-divider::after {
  content: '';
  position: absolute; top: -3px; left: 0;
  width: 16px; height: 9px;
  background: var(--gold-2);
  border-radius: 50%;
  filter: blur(4px);
  animation: dividerPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px 4px rgba(212,170,85,0.6);
}
@keyframes dividerPulse {
  0%, 100% { left: 0%; opacity: 1; transform: scaleX(1); }
  50%       { left: calc(100% - 16px); opacity: 0.8; transform: scaleX(1.5); }
}

/* Mouse parallax no watermark do hero */


/* Glow suave pulsante nos badges */
.hero-badges .hero-badge .num {
  position: relative;
}
.hero-badges .hero-badge .num::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: badgeLineGlow 2.5s ease-in-out infinite;
}
@keyframes badgeLineGlow {
  0%, 100% { opacity: 0.4; width: 30%; }
  50%       { opacity: 1;   width: 100%; box-shadow: 0 0 8px rgba(184,145,58,0.8); }
}
/* Glow nos números dos badges */
.hero-badges .hero-badge .num {
  text-shadow: 0 0 20px rgba(184,145,58,0.15);
  transition: text-shadow 0.3s;
}
.hero-badges .hero-badge:hover .num {
  text-shadow: 0 0 30px rgba(184,145,58,0.5);
  color: var(--gold);
}

/* Seções: reveal ao entrar na viewport */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ── Hero: ícone central ─────────────────────────────────────── */


@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Hero: studio com linhas laterais ───────────────────────── */



/* ── Badge separador vertical ──────────────────────────────── */


/* ── Badge ícone ───────────────────────────────────────────── */


/* ── btn-primary com ícone ─────────────────────────────────── */



@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }

  /* Menu vira drawer lateral acionado pelo hambúrguer */
  nav .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: -300px; width: min(80vw, 300px); height: 100vh;
    background: var(--white); padding: 6rem 2rem 2rem;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    transition: right 0.3s ease; z-index: 101;
  }
  nav .nav-links.open { right: 0; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--nude-2); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 13px; }
  .nav-links-mobile-only { border-bottom: none; margin-top: 1rem; }
  .nav-wa-mobile {
    display: inline-flex; width: 100%; justify-content: center;
    background: var(--brown); color: var(--white); padding: 12px 0;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
  }

  .nav-burger { display: flex; }
  .nav-wa { display: none; } /* botão "Agendar" do topo vira item dentro do drawer no mobile */

  .sobre-grid, .manutencao-grid { grid-template-columns: 1fr; }
  .sobre-simbolo-area { display: none; }
  .servicos-grid { grid-template-columns: 1fr; }
  .pagamento-nota { display: none; }
  
  .agendar-card { padding: 1.5rem; }
  .ag-slots-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Celulares (≤ 600px) */
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }

  nav { padding: 1rem 1.25rem; }
  nav.scrolled { padding: 0.75rem 1.25rem; }
  .nav-logo-img { height: 32px; }

  /* kamylle-foto-4.png é um banner bem largo (logo à esquerda, foto da
     Kamylle à direita) pensado pra desktop. Com object-fit:cover num
     hero de tela cheia num celular (muito mais alto que largo), o corte
     padrão (centro) cai bem no meio dos dois elementos, sem mostrar
     nenhum por completo. Desloca o ponto de corte pra a área da
     logo/texto, que é o que importa mostrar primeiro no mobile. */
  .hero-img-bg { object-position: 30% center; }

  
  
  
  
  
  .sobre, .servicos, .agendar, .instagram, .manutencao { padding: 4rem 0; }
  .sobre-moldura { padding: 14px; }

  .section-header { margin-bottom: 2.5rem; }
  .servico-grupo { padding: 1.75rem 1.25rem; }

  .agendar-card { padding: 1.25rem; }
  .ag-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .ag-nav { flex-direction: column-reverse; gap: 0.75rem; align-items: stretch; }
  .ag-nav .btn-primary-sm, .ag-nav .btn-ghost-sm { width: 100%; text-align: center; }

  .carousel-item { width: 72vw; }
  .carousel-btn { display: none !important; } .carousel-btn-hidden { width: 38px; height: 38px; font-size: 18px; }

  .manutencao-aviso { padding: 1.25rem; }
  .reposicao-box { flex-direction: column; align-items: flex-start; gap: 6px; }

  .cta-final { padding: 4rem 0; }
  .cta-final::before { width: 340px; height: 340px; }
  .cta-tel { font-size: 24px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .footer-links { justify-content: center; gap: 1.25rem 1.5rem; }

  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* Celulares pequenos (≤ 380px) */
@media (max-width: 380px) {
  
  .ag-slots-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .carousel-item { width: min(78vw, 260px); }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px) scale(0.985); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.75s; }

/* ── Focus visível para navegação por teclado ─────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Shimmer no nome hero ──────────────────────────────────── */
@keyframes shimmerText {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1);    opacity: 0.5; }
  50%  { transform: translateY(-30px) scale(1.3); opacity: 1; }
  100% { transform: translateY(-60px) scale(0.8); opacity: 0.3; }
}

/* ── Faixa de badges (abaixo do hero) ─────────────────────────── */




.hero-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

@media (max-width: 600px) {
  /* Bug real: gap fixo de 3rem (definido lá em cima, .hero-badges) entre
     os 3 badges nunca foi ajustado pro mobile — em telas estreitas isso
     sozinho consome quase toda a largura disponível, empurrando o
     primeiro badge pra fora da tela (cortado à esquerda, invisível). */
  .hero-badges-strip { padding: 1.25rem 1rem; }
  .hero-badges { gap: 0.5rem; }
  .hero-badge { flex: 1; min-width: 0; }
  .hero-badge-sep { height: 34px; }
  .hero-badge .num { font-size: clamp(17px, 5vw, 22px); }
  .hero-badge .lbl { font-size: 8.5px; letter-spacing: 1px; }
}

.nav-logo-img {
  height: 48px !important;
  width: 48px !important;
  object-fit: contain;
  border-radius: 50%;
}
