/* ============================================================
   Método Sparta — Landing Page
   Fontes: Archivo (títulos/display) + Inter (corpo)
   Paleta: #0A0A0A base · #1E42D6 / #3D6BFF azul · #F2F2F2 texto · #6B6B6B secundário
   ============================================================ */

:root{
  --bg:#0A0A0A;
  --bg-soft:#0C0C0C;
  --card:#111111;
  --blue:#1E42D6;
  --blue-bright:#3D6BFF;
  --text:#F2F2F2;
  --muted:#808080;
  --border:rgba(255,255,255,0.08);
  --max:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:5.5rem; }
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:'Inter',system-ui,sans-serif; -webkit-font-smoothing:antialiased;
}
a{ color:var(--blue-bright); text-decoration:none; }
a:hover{ color:var(--blue); }
::selection{ background:var(--blue); color:var(--text); }
img{ display:block; }
h1,h2,h3{ font-family:'Archivo',sans-serif; letter-spacing:-0.02em; }

.page{ width:100%; overflow-x:hidden; }

/* ---------- Scroll reveal ---------- */
/* Sem a classe .js (script.js não rodou), .reveal não tem regra alguma:
   o conteúdo nasce visível em vez de depender do JS para aparecer. */
.js .reveal{ opacity:0; transform:translateY(16px); transition:opacity .7s ease, transform .7s ease; }
.js .reveal.is-shown{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .js .reveal{ opacity:1; transform:none; transition:none; }
  .js .about::before{ transition:none; }
}

/* ---------- Buttons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; font-weight:700; border-radius:12px; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.btn--primary{ background:var(--blue-bright); color:var(--bg); font-size:16px; padding:18px 32px; }
.btn--primary:hover{ background:var(--blue); color:var(--text); transform:translateY(-3px); box-shadow:0 20px 48px -8px rgba(61,107,255,0.7); }
.btn--sm{ font-size:14px; padding:12px 24px; border-radius:10px; font-weight:700; }
.btn--ghost{ color:var(--text); font-size:16px; padding:18px 28px; border:2px solid rgba(255,255,255,0.2); font-weight:700; }
.btn--ghost:hover{ border-color:var(--blue-bright); background:rgba(61,107,255,0.1); color:var(--text); }
.btn--glow{ font-size:17px; padding:18px 28px; font-weight:700; animation:spGlow 3.4s ease-in-out infinite; }
@keyframes spGlow{ 0%,100%{ box-shadow:0 0 0 0 rgba(61,107,255,0); } 50%{ box-shadow:0 0 32px 2px rgba(61,107,255,0.28); } }

/* ---------- Header ---------- */
.header{ position:fixed; top:0; left:0; right:0; z-index:50; backdrop-filter:blur(14px); background:rgba(10,10,10,0.72); border-bottom:1px solid rgba(255,255,255,0.07); }
.header-inner{ max-width:var(--max); margin:0 auto; padding:16px 32px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; color:var(--text); }
.brand-name{ font-family:'Archivo',sans-serif; font-weight:700; letter-spacing:0.18em; font-size:18px; }
.nav{ display:flex; align-items:center; gap:34px; font-size:14px; font-weight:500; }
.nav a{ color:var(--text); }
.nav a:hover{ color:var(--blue-bright); }
.header-actions{ display:flex; align-items:center; gap:16px; }

/* Menu sanduíche (troca de páginas + âncoras locais no mobile) */
.nav-toggle{ position:relative; display:flex; flex-direction:column; justify-content:center; gap:5px; width:40px; height:40px; padding:8px; background:none; border:1px solid var(--border); border-radius:10px; cursor:pointer; }
.nav-toggle::after{ content:''; position:absolute; inset:-2px; } /* estende a área de toque para 44x44 sem alterar o botão visível */
.nav-toggle span{ display:block; height:2px; border-radius:2px; background:var(--text); transition:transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.menu-panel{ position:absolute; top:calc(100% + 1px); right:32px; min-width:240px; display:none; flex-direction:column; gap:24px; padding:20px; background:var(--card); border:1px solid var(--border); border-radius:0 0 16px 16px; box-shadow:0 24px 48px -16px rgba(0,0,0,0.7); }
.menu-panel.is-open{ display:flex; }
.menu-group{ display:flex; flex-direction:column; gap:2px; }
.menu-heading{ font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--muted); font-weight:700; margin-bottom:10px; padding:0 12px; }
.menu-group a{ padding:10px 12px; border-radius:8px; color:var(--text); font-size:14px; font-weight:500; }
.menu-group a:hover{ background:rgba(61,107,255,0.12); color:var(--blue-bright); }
.menu-group a[aria-current="page"]{ color:var(--blue-bright); }
.menu-group--local{ display:none; }

/* ---------- Hero (segue o layout do home.html) ---------- */
.hero{
  position:relative; overflow:hidden;
  min-height:100vh; display:flex; align-items:center;
  padding:150px 32px 90px;
  background:linear-gradient(rgba(10,10,12,0.82), rgba(10,10,12,0.88)),
            url('../assets/home-tools.jpg') center/cover;
}
.hero-content{ position:relative; z-index:2; width:100%; max-width:var(--max); margin:0 auto; }

.hero-tag{
  display:inline-flex; align-items:center; gap:9px;
  color:#8FB4E8; margin-bottom:26px;
  font-family:'Inter',sans-serif; font-size:14px; font-weight:500;
  letter-spacing:0; text-transform:none;
}
.hero-tag svg{ width:17px; height:17px; color:var(--blue-bright); }

.hero-headline{
  font-family:'Archivo',sans-serif; font-weight:900; font-stretch:125%;
  font-size:clamp(2.7rem,8.6vw,5.3rem); line-height:0.98; letter-spacing:-0.02em;
  margin:0 0 28px; color:#FFFFFF; text-wrap:balance; text-transform:uppercase;
}
.hero-headline span{ color:inherit; }

.hero-sub{
  font-family:'Inter',sans-serif; font-size:1.15rem; line-height:1.7;
  color:#C7CDD8; max-width:600px; margin:0 0 36px;
}
.hero-buttons{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:44px; }

.rating{ display:flex; align-items:center; gap:16px; }
.rating-mark{ color:#3D8EF0; font-size:16px; }
.rating-text{ font-family:'Inter',sans-serif; font-size:14px; color:#AEB4C0; }
.rating-text strong{ color:var(--text); }

.pill{ display:inline-flex; align-items:center; gap:10px; padding:7px 14px; border:1px solid rgba(61,107,255,0.35); border-radius:999px; font-size:12px; letter-spacing:0.16em; color:var(--blue-bright); font-weight:600; margin-bottom:28px; }
.dot{ width:6px; height:6px; border-radius:50%; background:var(--blue-bright); }

/* ---------- Hero split (barbearia.html) ---------- */
.hero--split{
  background:linear-gradient(180deg, rgba(10,10,12,0.82) 0%, rgba(10,10,12,0.88) 74%, var(--bg) 100%),
            url('../assets/home-luvas.jpg') center/cover;
}
.hero--split .hero-content{ display:grid; grid-template-columns:1fr auto; gap:64px; align-items:center; }
.hero-brand{ display:flex; align-items:center; gap:28px; margin:0 0 28px; }
.hero-brand-logo{ width:clamp(84px,10vw,132px); height:auto; filter:drop-shadow(0 0 22px rgba(61,107,255,0.45)); }
.hero-brand-name{ font-family:'Archivo',sans-serif; font-weight:900; font-stretch:125%; letter-spacing:0.06em; font-size:clamp(2.6rem,7vw,4.8rem); line-height:1.02; text-transform:uppercase; color:#FFFFFF; margin:0; }
.hero-subtitle{ font-family:'Playfair Display',serif; font-weight:600; font-size:clamp(1.4rem,2.6vw,2.1rem); line-height:1.3; color:#C7CDD8; margin:0 0 40px; }
.hero--split .hero-sub{ max-width:520px; }
.hero--split .hero-buttons{ margin-bottom:0; }
.hero-info{ display:flex; flex-direction:column; gap:36px; }
.hero-info-item{ display:flex; align-items:center; justify-content:flex-end; gap:18px; text-align:right; }
.hero-info-icon{ flex:none; display:flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:50%; border:1px solid rgba(61,107,255,0.45); color:var(--blue-bright); background:rgba(10,10,10,0.4); }
.hero-info-icon svg{ width:19px; height:19px; }
.hero-info-label{ font-family:'Archivo',sans-serif; font-weight:700; font-size:16px; color:#FFFFFF; margin-bottom:6px; }
.hero-info-value{ font-size:14px; line-height:1.5; color:#AEB4C0; font-weight:500; }
.hero-info-value a{ color:inherit; text-decoration:none; border-bottom:1px solid rgba(174,180,192,0.28); transition:color .25s ease, border-color .25s ease; }
.hero-info-value a:hover{ color:var(--blue-bright); border-color:var(--blue-bright); }
.ph-tag--inline{ display:inline-block; padding:4px 10px; font-size:11px; }

/* ---------- Placeholders (media) ---------- */
.placeholder{ position:relative; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,0.09); background-color:var(--card); background-image:repeating-linear-gradient(135deg, rgba(61,107,255,0.06) 0 2px, transparent 2px 22px); display:flex; align-items:center; justify-content:center; }
.placeholder--45{ aspect-ratio:4/5; align-items:flex-end; }
.placeholder--43{ aspect-ratio:4/3; }
.placeholder--11{ aspect-ratio:1/1; }
.ph-center{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.ph-tag{ font-family:ui-monospace,monospace; font-size:12px; letter-spacing:0.06em; color:var(--muted); padding:8px 12px; border:1px dashed rgba(255,255,255,0.14); border-radius:8px; text-align:center; }
.placeholder img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------- Hero flow (linha de conexão com os números) ---------- */
.hero-flow{
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  z-index:2; width:50%; height:2px; border-radius:2px;
  background:linear-gradient(90deg, transparent, var(--blue) 22%, var(--blue-bright) 50%, var(--blue) 78%, transparent);
}

/* ---------- Sections base ---------- */
.section{ max-width:var(--max); margin:0 auto; padding:128px 32px; }
.section--modules{ padding:0 32px 40px; }
.section-head{ text-align:center; margin-bottom:72px; }
.eyebrow{ font-size:12px; letter-spacing:0.24em; color:var(--blue-bright); font-weight:700; margin-bottom:20px; text-transform:uppercase; }
.section-title{ font-weight:700; font-size:clamp(32px,4vw,48px); margin:0; max-width:800px; margin-inline:auto; line-height:1.12; letter-spacing:-0.015em; }

/* ---------- Stats ---------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat{ background:transparent; border:none; border-radius:0; padding:32px 28px; text-align:center; }
.stat-num{ font-family:'Archivo',sans-serif; font-weight:700; font-size:clamp(44px,6vw,68px); letter-spacing:-0.04em; color:var(--text); line-height:0.95; }
.stat-num--accent{ color:var(--blue-bright); }
.stat-label{ font-size:15px; color:#A8A8A8; margin-top:16px; font-weight:500; }

/* ---------- Módulos ---------- */
.module{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; margin-bottom:112px; }
.section--modules .section-head{ margin-bottom:80px; }
.module-text{ order:var(--text-order); }
.module-img{ order:var(--img-order); }
.module-photo{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:18px; border:1px solid rgba(255,255,255,0.09); }
.module-num{ font-family:'Archivo',sans-serif; font-size:13px; font-weight:800; letter-spacing:0.2em; color:var(--blue-bright); margin-bottom:16px; text-transform:uppercase; }
.module-title{ font-weight:700; font-size:clamp(28px,3.2vw,38px); margin:0 0 20px; line-height:1.15; letter-spacing:-0.015em; }
.module-desc{ font-size:17px; line-height:1.68; color:#CACACA; margin:0 0 28px; }
.checklist{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
.checklist li{ display:flex; align-items:flex-start; gap:12px; font-size:16px; color:#DEDEDE; font-weight:500; }
.check{ flex:none; width:24px; height:24px; border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:13px; margin-top:2px; background:var(--blue-bright); color:var(--bg); font-weight:700; }
.check--soft{ width:auto; height:auto; border-radius:0; background:transparent; color:var(--blue-bright); font-size:15px; font-weight:800; }

/* ---------- Instrutor ---------- */
.instructor{ background:var(--bg-soft); border-top:1px solid rgba(255,255,255,0.07); border-bottom:1px solid rgba(255,255,255,0.07); padding:112px 32px; }
.instructor-inner{ max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center; }

.instructor-intro .section-title{ margin:0 0 24px; margin-inline:0; }
.instructor-lead{ font-size:18px; line-height:1.7; color:#C5C5C5; max-width:540px; margin:0 0 40px; font-weight:500; }
.instructor-lead strong{ color:var(--text); font-weight:700; }

.instructor-showcase{ display:flex; align-items:flex-end; justify-content:center; gap:20px; padding-bottom:44px; }

.instructor-frame{ position:relative; flex:1; max-width:360px; aspect-ratio:3/5; border-radius:32px; border:1px solid var(--border); background:var(--card); }
.instructor-frame-photo{ position:absolute; inset:0; border:none; border-radius:inherit; overflow:hidden; }
.instructor-frame-photo img{ width:100%; height:100%; object-fit:cover; }

.instructor-info-card{ position:absolute; left:16px; right:16px; bottom:-24px; background:var(--card); border:1px solid var(--border); border-radius:16px; padding:18px 20px; box-shadow:0 20px 44px -18px rgba(0,0,0,0.65); }
.instructor-info-name{ font-family:'Archivo',sans-serif; font-weight:700; font-size:20px; letter-spacing:-0.02em; margin-bottom:6px; }
.instructor-info-role{ font-size:13px; line-height:1.5; color:#8A8A8A; margin-bottom:14px; }
.instructor-frame-nav{ display:flex; gap:10px; }
.frame-arrow{ width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:transparent; border:1px solid rgba(61,107,255,0.4); color:var(--blue-bright); font-size:16px; font-family:inherit; cursor:pointer; transition:background .18s ease, border-color .18s ease, color .18s ease; }
.frame-arrow:hover,
.frame-arrow:focus-visible{ background:rgba(61,107,255,0.12); border-color:var(--blue-bright); color:var(--text); }

.instructor-thumb{ position:relative; flex:none; width:120px; aspect-ratio:3/5; border-radius:20px; overflow:hidden; border:1px solid var(--border); background:var(--card); padding:0; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:border-color .18s ease, transform .18s ease; }
.instructor-thumb img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.instructor-thumb .ph-tag{ font-size:10px; padding:6px 8px; margin:8px; }
.instructor-thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(30,66,214,0.28), rgba(10,10,10,0.42)); transition:opacity .18s ease; }
.instructor-thumb:hover,
.instructor-thumb:focus-visible{ border-color:var(--blue-bright); transform:translateY(-2px); }
.instructor-thumb:hover::after,
.instructor-thumb:focus-visible::after{ opacity:0.4; }

/* ---------- Depoimentos (seção desativada no HTML) ---------- */
.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.card{ background:transparent; border:1px solid rgba(255,255,255,0.12); border-radius:16px; padding:36px; }
.stars{ color:var(--blue-bright); font-size:16px; letter-spacing:2.5px; margin-bottom:20px; }
.quote{ font-size:17px; line-height:1.7; color:#E0E0E0; margin:0 0 28px; font-weight:500; }
.person{ display:flex; align-items:center; gap:16px; }
.avatar{ width:48px; height:48px; border-radius:50%; background:var(--blue-bright); display:flex; align-items:center; justify-content:center; font-family:'Archivo',sans-serif; font-weight:800; font-size:18px; color:var(--bg); }
.person-name{ font-weight:700; font-size:16px; }
.person-role{ font-size:14px; color:#A0A0A0; }

/* ---------- Oferta ---------- */
.offer-section{ max-width:1080px; margin:0 auto; padding:0 32px 128px; }
.offer{ border:1px solid rgba(61,107,255,0.35); border-radius:24px; overflow:hidden; background:linear-gradient(180deg, rgba(30,66,214,0.10), rgba(10,10,10,0) 60%); background-color:#0D0D0F; }
.offer-grid{ display:grid; grid-template-columns:1.15fr 0.85fr; }
.offer-left{ padding:52px 48px; border-right:1px solid rgba(255,255,255,0.07); }
.offer-title{ font-weight:700; font-size:clamp(30px,3.4vw,42px); margin:0 0 26px; line-height:1.15; letter-spacing:-0.015em; }
.includes-lead{ display:flex; align-items:center; gap:18px; padding:4px 0 24px; }
.includes-lead-num{ font-family:'Archivo',sans-serif; font-weight:900; font-stretch:125%; font-size:clamp(56px,6vw,74px); line-height:0.85; letter-spacing:-0.03em; color:var(--blue-bright); }
.includes-lead-text{ font-family:'Archivo',sans-serif; font-weight:800; font-stretch:110%; text-transform:uppercase; font-size:clamp(16px,1.7vw,19px); line-height:1.18; letter-spacing:0.03em; color:var(--text); }
.includes{ list-style:none; margin:0; padding:0; }
.includes li{ display:flex; align-items:baseline; gap:14px; padding:15px 2px; border-top:1px solid rgba(255,255,255,0.09); font-size:16px; line-height:1.55; color:#ADADAD; font-weight:500; }
.inc-plus{ flex:none; font-family:'Archivo',sans-serif; font-weight:800; font-size:17px; color:var(--blue-bright); }
.offer .includes-lead, .offer .includes li{ transition:opacity .55s ease, transform .55s ease; }
.js .reveal:not(.is-shown) .includes-lead, .js .reveal:not(.is-shown) .includes li{ opacity:0; transform:translateY(12px); }
.reveal.is-shown .includes-lead{ transition-delay:.08s; }
.reveal.is-shown .includes li:nth-child(1){ transition-delay:.16s; }
.reveal.is-shown .includes li:nth-child(2){ transition-delay:.24s; }
.reveal.is-shown .includes li:nth-child(3){ transition-delay:.32s; }
.reveal.is-shown .includes li:nth-child(4){ transition-delay:.40s; }
.reveal.is-shown .includes li:nth-child(5){ transition-delay:.48s; }
@media (prefers-reduced-motion: reduce){
  .offer .includes-lead, .offer .includes li{ transition:none; }
  .js .reveal:not(.is-shown) .includes-lead, .js .reveal:not(.is-shown) .includes li{ opacity:1; transform:none; }
}
.offer-right{ padding:52px 44px; display:flex; flex-direction:column; justify-content:center; text-align:center; }
.offer-caption{ font-size:14px; color:#8A8A8A; margin-bottom:8px; }
.offer-price{ display:flex; align-items:baseline; justify-content:center; gap:6px; margin-bottom:6px; white-space:nowrap; }
.offer-x{ font-size:16px; color:#B8B8B8; }
.offer-value{ font-family:'Archivo',sans-serif; font-weight:700; font-size:clamp(40px,4.6vw,56px); letter-spacing:-0.04em; line-height:0.95; }
.offer-cash{ font-size:14px; color:#8A8A8A; margin-bottom:30px; }
.offer-guarantee{ font-size:13px; color:var(--muted); margin-top:18px; }

/* ---------- FAQ ---------- */
.faq-section{ max-width:820px; margin:0 auto; padding:0 32px 128px; }
.faq-section .section-head{ margin-bottom:56px; }
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq{ background:var(--card); border:1px solid var(--border); border-radius:14px; padding:4px 24px; }
.faq summary{ cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 0; font-weight:600; font-size:17px; color:var(--text); }
.faq summary::-webkit-details-marker{ display:none; }
.faq-plus{ flex:none; color:var(--blue-bright); font-size:22px; font-weight:400; transition:transform .2s ease; }
.faq[open] .faq-plus{ transform:rotate(45deg); }
.faq-answer{ margin:0 0 22px; font-size:15px; line-height:1.65; color:#B0B0B0; }

/* ---------- CTA final ---------- */
.final-cta{ position:relative; border-top:1px solid rgba(255,255,255,0.07); background-color:var(--bg-soft); background-image:radial-gradient(circle at 50% 0%, rgba(30,66,214,0.16), transparent 55%); }
.final-cta-inner{ max-width:820px; margin:0 auto; padding:120px 32px; text-align:center; }
.final-title{ font-weight:700; font-size:clamp(34px,4.6vw,54px); margin:0 0 22px; line-height:1.04; }
.final-lead{ font-size:18px; line-height:1.6; color:#B8B8B8; max-width:520px; margin:0 auto 38px; }
.final-cta-logo{ display:block; margin:0 auto 28px; width:64px; height:64px; filter:drop-shadow(0 0 26px rgba(61,107,255,0.55)); }

/* ---------- Footer ---------- */
.footer{ border-top:1px solid rgba(255,255,255,0.07); background:var(--bg); }
.footer-inner{ max-width:var(--max); margin:0 auto; padding:56px 32px 40px; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; }
.footer-brand{ margin-bottom:18px; }
.footer-about{ font-size:14px; line-height:1.6; color:var(--muted); max-width:320px; margin:0; }
.footer-heading{ font-size:13px; letter-spacing:0.12em; color:#8A8A8A; font-weight:600; margin-bottom:16px; }
.footer-links{ display:flex; flex-direction:column; gap:12px; font-size:14px; }
.footer-links a{ color:#C4C4C4; }
.footer-links a:hover{ color:var(--blue-bright); }
.footer-bar{ max-width:var(--max); margin:0 auto; padding:24px 32px; border-top:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; color:var(--muted); }
.footer-legal{ display:flex; gap:20px; }
.footer-legal a{ color:var(--muted); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; z-index:60;
  display:flex; align-items:center; justify-content:center;
  width:60px; height:60px; border-radius:50%;
  background:#25D366; color:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,0.45);
  transition:transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover{ color:#fff; transform:translateY(-3px); box-shadow:0 14px 32px rgba(37,211,102,0.4); }
.whatsapp-float svg{ width:32px; height:32px; }

/* ============================================================
   Página Barbearia (barbearia.html)
   ============================================================ */

/* ---------- Sobre (barbearia) ---------- */
.about{
  position:relative;
  background:linear-gradient(180deg, var(--bg) 0%, rgba(10,10,10,0) 20%, rgba(10,10,10,0) 84%, var(--bg) 100%),
            linear-gradient(90deg, var(--bg) 0%, rgba(10,10,10,0.96) 42%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.2) 100%),
            url('../assets/whiskey2.webp') 78% 32%/cover no-repeat;
}
/* Véu que revela a foto quando a seção entra na viewport (classe .is-shown via JS).
   Sem .js, o véu nunca fica opaco: a foto e o texto já nascem visíveis. */
.about::before{ content:''; position:absolute; inset:0; background:var(--bg); opacity:0; transition:opacity 1.2s cubic-bezier(0.22,1,0.36,1); pointer-events:none; }
.js .about:not(.is-shown)::before{ opacity:1; }
.about-inner{ position:relative; z-index:1; max-width:var(--max); margin:0 auto; padding:128px 32px; }
.about-text{ max-width:540px; }
.about-title{ font-family:'Playfair Display',serif; font-weight:700; font-size:clamp(28px,3.4vw,40px); line-height:1.25; margin:0 0 24px; color:#FFFFFF; }
.about-desc{ font-size:16px; line-height:1.75; color:#C7CDD8; margin:0 0 36px; }
.about-btn{ font-size:14px; padding:14px 28px; }

/* ---------- Galeria da unidade ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* Foto cresce e se destaca ao passar o mouse (desktop) ou tocar (.is-active). */
.gallery-grid .placeholder{ cursor:pointer; transition:transform .5s cubic-bezier(0.22,1,0.36,1), border-color .3s ease, box-shadow .3s ease; }
@media (hover:hover){
  .gallery-grid .placeholder:hover{ transform:scale(1.12); z-index:2; border-color:rgba(61,107,255,0.55); box-shadow:0 18px 40px rgba(0,0,0,0.45); }
}
.gallery-grid .placeholder.is-active{ transform:scale(1.12); z-index:2; border-color:rgba(61,107,255,0.55); box-shadow:0 18px 40px rgba(0,0,0,0.45); }
@media (prefers-reduced-motion: reduce){
  .gallery-grid .placeholder{ transition:border-color .3s ease, box-shadow .3s ease; }
}

/* ---------- Serviços (galeria-acordeão) ---------- */
/* Todos os painéis lado a lado, preenchendo a fileira */
.servicos-gallery{ display:flex; gap:14px; }
.service-panel{ flex:1; min-width:0; display:flex; flex-direction:column; cursor:pointer; transition:flex-grow .5s cubic-bezier(0.22,1,0.36,1); }
.service-media{ position:relative; height:clamp(300px,30vw,420px); border-radius:24px; overflow:hidden; border:1px solid var(--border); background:var(--card); transition:border-color .3s ease; }
.service-media img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%); }
.service-media.placeholder{ display:flex; align-items:center; justify-content:center; }
.service-media.placeholder .ph-tag{ font-size:10px; padding:6px 8px; margin:8px; }

/* Estado aberto: hover (desktop), .is-active (touch/JS) e foco por teclado no botão */
@media (hover:hover){
  .service-panel:hover{ flex-grow:3; }
  .service-panel:hover .service-media{ border-color:rgba(61,107,255,0.55); }
}
.service-panel.is-active,
.service-panel:has(.service-toggle:focus-visible){ flex-grow:3; }
.service-panel.is-active .service-media,
.service-panel:has(.service-toggle:focus-visible) .service-media{ border-color:rgba(61,107,255,0.55); }

/* overflow/hyphens contêm o texto na coluna: ao encolher, o título
   quebra dentro do próprio painel em vez de invadir o vizinho */
.service-caption{ padding:18px 6px 0; overflow:hidden; }
.service-name{ font-family:'Playfair Display',serif; font-weight:600; font-size:19px; letter-spacing:0; line-height:1.3; margin:0; overflow-wrap:break-word; hyphens:auto; }
/* Botão real dentro do <h3>: reseta a aparência de controle nativo para
   herdar a tipografia do título, mantendo foco e leitor de tela corretos */
.service-toggle{ all:unset; display:block; width:100%; cursor:pointer; }
.service-toggle:focus-visible{ outline:2px solid var(--blue-bright); outline-offset:3px; border-radius:4px; }
/* Espaço da descrição fica sempre reservado (só a opacidade muda) para
   que abrir o painel não altere a altura — a barra de scroll fica fixa */
.service-detail{ opacity:0; transition:opacity .35s ease; }
@media (hover:hover){
  .service-panel:hover .service-detail{ opacity:1; }
}
.service-panel.is-active .service-detail,
.service-panel:has(.service-toggle:focus-visible) .service-detail{ opacity:1; }
.service-desc{ font-size:14px; line-height:1.6; color:#B0B0B0; margin:10px 0 0; }
@media (prefers-reduced-motion: reduce){
  .service-panel, .service-detail{ transition:none; }
}

/* ---------- Planos ---------- */
/* 5 planos em flex-wrap centralizado (3 + 2 no desktop); Premium em destaque */
.plans{ display:flex; flex-wrap:wrap; justify-content:center; gap:24px; }
.plan-card{ position:relative; flex:0 1 320px; max-width:340px; display:flex; flex-direction:column; align-items:center; text-align:center; background:var(--card); border:1px solid var(--border); border-radius:20px; padding:36px 28px 40px; }
.plan-pill{ display:inline-flex; align-items:center; background:rgba(61,107,255,0.14); border:1px solid rgba(61,107,255,0.5); color:var(--blue-bright); font-family:'Archivo',sans-serif; font-weight:800; font-size:13px; letter-spacing:0.14em; text-transform:uppercase; padding:9px 18px; border-radius:999px; margin:0 0 20px; }
.plan-billing{ font-family:'Archivo',sans-serif; font-weight:700; font-size:12px; letter-spacing:0.2em; text-transform:uppercase; color:#8A8A8A; margin-bottom:6px; }
.plan-price-big{ font-family:'Archivo',sans-serif; font-weight:900; font-size:clamp(38px,4.2vw,50px); letter-spacing:-0.03em; line-height:1; margin-bottom:20px; }
.plan-price-big sup{ font-size:0.42em; font-weight:800; }
.plan-desc{ font-size:14.5px; line-height:1.6; color:#B8B8B8; margin:0; }
.plan-desc strong{ color:var(--text); font-weight:700; }
.plan-card--featured{ background:linear-gradient(170deg, var(--blue-bright) 0%, var(--blue) 55%, #15309C 100%); border-color:transparent; box-shadow:0 36px 80px -36px rgba(30,66,214,0.8); }
.plan-card--featured .plan-pill{ background:#FFFFFF; border-color:#FFFFFF; color:var(--blue); }
.plan-card--featured .plan-billing{ color:#DCE4FF; }
.plan-card--featured .plan-desc{ color:#F2F5FF; }
.plan-card--featured .plan-desc strong{ color:#FFFFFF; }
.plan-badge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); white-space:nowrap; background:#FFFFFF; color:var(--blue); font-family:'Archivo',sans-serif; font-weight:800; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; padding:6px 14px; border-radius:999px; box-shadow:0 8px 20px -8px rgba(0,0,0,0.6); }
.plans-cta{ display:flex; justify-content:center; margin-top:48px; }

/* ---------- Profissionais (barbearia) ---------- */
.team{ background:var(--bg-soft); border-top:1px solid rgba(255,255,255,0.07); border-bottom:1px solid rgba(255,255,255,0.07); padding:112px 32px; }
.team-inner{ max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center; }
.team-intro .section-title{ margin:0 0 24px; margin-inline:0; }
.team-lead{ font-size:18px; line-height:1.7; color:#C5C5C5; max-width:540px; margin:0 0 40px; font-weight:500; }
.team-showcase{ display:flex; align-items:flex-end; justify-content:center; gap:20px; padding-bottom:44px; }
.team-frame{ position:relative; flex:1; max-width:360px; aspect-ratio:3/5; border-radius:32px; border:1px solid var(--border); background:var(--card); }
.team-frame-photo{ position:absolute; inset:0; border:none; border-radius:inherit; overflow:hidden; }
.team-frame-photo img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%); }
.team-info-card{ position:absolute; left:16px; right:16px; bottom:-24px; background:var(--card); border:1px solid var(--border); border-radius:16px; padding:18px 20px; box-shadow:0 20px 44px -18px rgba(0,0,0,0.65); }
.team-info-name{ font-family:'Archivo',sans-serif; font-weight:700; font-size:20px; letter-spacing:-0.02em; margin-bottom:6px; }
.team-info-role{ font-size:13px; line-height:1.5; color:#8A8A8A; margin-bottom:14px; }
.team-frame-nav{ display:flex; gap:10px; }
.team-thumbs{ display:flex; flex-direction:row; align-items:flex-end; gap:14px; }
.team-thumb{ position:relative; flex:none; width:112px; aspect-ratio:3/5; border-radius:20px; overflow:hidden; border:1px solid var(--border); background:var(--card); padding:0; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:border-color .18s ease, transform .18s ease; }
.team-thumb[hidden]{ display:none; }
.team-thumb img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(100%); }
.team-thumb .ph-tag{ font-size:10px; padding:6px 8px; margin:8px; }
.team-thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(30,66,214,0.28), rgba(10,10,10,0.42)); transition:opacity .18s ease; }
.team-thumb:hover,
.team-thumb:focus-visible{ border-color:var(--blue-bright); transform:translateY(-2px); }
.team-thumb:hover::after,
.team-thumb:focus-visible::after{ opacity:0.4; }

/* ---------- Responsivo ---------- */
@media (max-width:900px){
  /* Header + menu sanduíche */
  .header-inner{ padding:16px 24px; }
  .nav{ display:none; }
  .menu-panel{ left:0; right:0; border-radius:0; border-left:none; border-right:none; max-height:calc(100vh - 80px); max-height:calc(100dvh - 80px); overflow-y:auto; }
  .menu-group--local{ display:flex; }

  /* Grades de duas colunas viram coluna única */
  .module, .instructor-inner, .team-inner, .offer-grid, .hero--split .hero-content{ grid-template-columns:1fr; gap:40px; }
  .module{ gap:28px; margin-bottom:80px; }
  .module-text, .module-img{ order:0 !important; }
  /* Sem gap na oferta empilhada: a borda entre as metades fica encostada */
  .offer-grid{ gap:0; }
  .offer-left{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.07); }

  /* Ritmo vertical mais curto e side-padding de 24px */
  .section{ padding:96px 24px; }
  .section--modules{ padding:0 24px 32px; }
  .section--modules .section-head{ margin-bottom:64px; }
  .section-head{ margin-bottom:56px; }
  .section-title{ text-wrap:balance; }
  .hero{ padding:120px 24px 72px; }
  .instructor, .team{ padding:88px 24px; }
  .offer-section{ padding:0 24px 96px; }
  .faq-section{ padding:0 24px 96px; }
  .final-cta-inner{ padding:88px 24px; }
  .about-inner{ padding:96px 24px; }
  .footer-inner{ grid-template-columns:1fr; padding:48px 24px 32px; }
  .footer-bar{ padding:20px 24px; }

  /* Hero split (barbearia) */
  .hero-info{ gap:24px; }
  .hero-info-item{ flex-direction:row-reverse; justify-content:flex-end; text-align:left; }
  .about{ background:linear-gradient(180deg, var(--bg) 0%, rgba(10,10,12,0.88) 18%, rgba(10,10,12,0.88) 84%, var(--bg) 100%), url('../assets/whiskey2.webp') center/cover no-repeat; }

  .stats{ grid-template-columns:repeat(2,1fr); }
  .cards{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .instructor-showcase, .team-showcase{ justify-content:center; }

  /* Serviços: o acordeão horizontal vira grade de 2 colunas;
     a descrição colapsa (0fr) e expande no toque/foco */
  .servicos-gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
  .service-media{ height:auto; aspect-ratio:4/3; }
  .service-caption{ padding:14px 4px 0; }
  .service-detail{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .4s cubic-bezier(0.22,1,0.36,1), opacity .35s ease; }
  .service-detail-inner{ overflow:hidden; }
  .service-panel.is-active .service-detail,
  .service-panel:has(.service-toggle:focus-visible) .service-detail{ grid-template-rows:1fr; }
}
/* Janela estreita com mouse (desktop redimensionado): hover também expande */
@media (max-width:900px) and (hover:hover){
  .service-panel:hover .service-detail{ grid-template-rows:1fr; opacity:1; }
}
@media (max-width:900px) and (prefers-reduced-motion: reduce){
  .service-detail{ transition:none; }
}
@media (max-width:520px){
  /* Header compacto: cabe logo + CTA + hambúrguer a partir de 360px */
  .header-inner{ padding:14px 16px; gap:12px; }
  .brand{ gap:9px; }
  .brand img{ width:32px; height:32px; }
  .brand-name{ font-size:15px; }
  .header-actions{ gap:10px; }
  .header .btn--sm{ font-size:12.5px; padding:10px 14px; line-height:1.2; }

  /* Ritmo e tipografia */
  .section{ padding:72px 20px; }
  .section--modules{ padding:0 20px 24px; }
  .section-head{ margin-bottom:44px; }
  .section--modules .section-head{ margin-bottom:48px; }
  .section-title{ font-size:clamp(26px,7.5vw,32px); }
  .eyebrow{ margin-bottom:14px; }
  .hero{ padding:110px 20px 64px; }
  .hero-sub{ font-size:1.05rem; margin-bottom:30px; }
  .hero-buttons{ flex-direction:column; align-items:stretch; }
  .hero-buttons .btn{ width:100%; }

  /* Hero split (barbearia): logo + nome escalam junto com a viewport */
  .hero-brand{ gap:16px; margin-bottom:20px; }
  .hero-brand-logo{ width:clamp(48px,15vw,84px); }
  .hero-brand-name{ font-size:clamp(1.4rem,7.4vw,2.6rem); }
  .hero-subtitle{ margin-bottom:30px; }
  .hero-info{ gap:20px; }
  .hero-info-item{ gap:14px; }

  .stats{ grid-template-columns:1fr; gap:8px; }
  .stat{ padding:16px 20px; }
  .stat-label{ margin-top:10px; }

  .module{ margin-bottom:64px; }
  .module-title{ font-size:clamp(24px,6.8vw,28px); }
  .module-desc{ font-size:16px; }

  .instructor, .team{ padding:72px 20px; }
  .instructor-lead, .team-lead{ font-size:16px; margin-bottom:32px; }
  .instructor-showcase{ flex-direction:column; align-items:center; gap:40px; }
  .instructor-frame{ flex:none; width:100%; max-width:320px; }
  .instructor-thumb{ width:104px; }
  .team-showcase{ flex-direction:column; align-items:center; gap:40px; }
  .team-frame{ flex:none; width:100%; max-width:320px; }
  .team-thumbs{ flex-direction:row; justify-content:center; }
  .team-thumb{ width:104px; }
  .frame-arrow{ width:44px; height:44px; }

  .card{ padding:28px 22px; }
  .quote{ font-size:16px; }

  .offer-section{ padding:0 20px 80px; }
  .offer-left{ padding:36px 24px; }
  .offer-right{ padding:36px 24px 44px; }
  .offer-title{ font-size:clamp(26px,7vw,30px); }
  .btn--glow{ font-size:16px; }

  .faq-section{ padding:0 20px 80px; }
  .faq{ padding:2px 18px; }
  .faq summary{ font-size:16px; padding:18px 0; }

  .final-cta-inner{ padding:80px 20px; }
  .final-title{ font-size:clamp(28px,8vw,34px); }

  .about-inner{ padding:72px 20px; }
  .about-title{ font-size:clamp(24px,6.8vw,28px); }

  .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }

  .servicos-gallery{ gap:14px; }
  .service-name{ font-size:16px; }
  .service-desc{ font-size:13px; }

  .plan-card{ padding:30px 22px 34px; }

  .footer-inner{ padding:40px 20px 28px; gap:28px; }
  .footer-bar{ padding:18px 20px; }

  .whatsapp-float{ right:16px; bottom:max(16px, env(safe-area-inset-bottom)); width:52px; height:52px; }
  .whatsapp-float svg{ width:28px; height:28px; }
}