/* ===================================================
   BarberBook – landing.css
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dim:    rgba(201,168,76,.15);
  --dark:        #080808;
  --dark2:       #0f0f0f;
  --dark3:       #161616;
  --dark4:       #1e1e1e;
  --card-bg:     #141414;
  --border:      #242424;
  --text:        #f0ede6;
  --text-muted:  #7a7570;
  --green:       #22c55e;
  --red:         #ef4444;
  --blue:        #3b82f6;
  --purple:      #a855f7;
  --teal:        #14b8a6;
  --orange:      #f97316;
  --pink:        #ec4899;
  --radius:      16px;
  --shadow:      0 12px 40px rgba(0,0,0,.5);
  --transition:  .25s ease;
  --max-w:       1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { text-decoration: none; }

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right { transform: translateX(60px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===================================================
   NAVBAR
   =================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-logo i { font-size: 1.2rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: .3rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  padding: .4rem .8rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav-ctas {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

.btn-nav-outline {
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: .45rem 1.1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-nav-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-nav-solid {
  background: var(--gold);
  color: var(--dark);
  padding: .45rem 1.2rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-nav-solid:hover { background: var(--gold-light); }

.btn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.btn-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(8,8,8,.98);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform .35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mm-link {
  color: var(--text-muted);
  font-size: .95rem;
  padding: .6rem .5rem;
  border-radius: 8px;
  transition: var(--transition);
}
.mm-link:hover { color: var(--gold); background: var(--gold-dim); }
.mm-cta {
  margin-top: .5rem;
  text-align: center;
  padding: .75rem;
  font-weight: 700;
}

/* ===================================================
   HERO
   =================================================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(201,168,76,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(201,168,76,.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: .6; }
  80%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-120vh) scale(.5); }
}

.hero-inner {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  color: #22c55e;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #fff5cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: .85rem 1.8rem;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.5); }
.btn-primary.large { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: .85rem 1.8rem;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost.large { padding: 1rem 2.2rem; font-size: 1.05rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hs-suf { font-size: 1.5rem; color: var(--gold); line-height: 1; margin-left: -.1rem; }
.hs-label { font-size: .72rem; color: var(--text-muted); margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }

.hs-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-phone {
  width: 280px;
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.1);
  position: relative;
  z-index: 2;
}

.mockup-screen { padding: 1.2rem; }

.mockup-header {
  margin-bottom: 1rem;
}
.m-logo {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--gold);
  font-weight: 700;
}

.mockup-steps {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}
.m-step {
  background: var(--dark4);
  border-radius: 8px;
  padding: .5rem .7rem;
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.m-step.done { color: var(--green); }
.m-step.done i { color: var(--green); }
.m-step.active { color: var(--gold); border: 1px solid rgba(201,168,76,.2); }
.m-step.active i { color: var(--gold); }

.mockup-wa {
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 10px;
  padding: .7rem;
}
.wa-bubble {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.wa-bubble > i {
  color: #25d366;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.wa-title { font-weight: 700; font-size: .8rem; color: #25d366; }
.wa-sub   { font-size: .73rem; color: var(--text-muted); margin-top: .15rem; line-height: 1.4; }

.phone-chin {
  height: 20px;
  background: var(--dark4);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-chin::after {
  content: '';
  width: 50px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
}

.mockup-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .75rem;
  z-index: 1;
}

.bounce {
  animation: bounceDown .9s infinite alternate ease-in-out;
}
@keyframes bounceDown {
  from { transform: translateY(0); }
  to   { transform: translateY(6px); }
}

/* ===================================================
   SOCIAL PROOF
   =================================================== */
#social-proof {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 1.5rem;
  overflow: hidden;
}

.sp-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.sp-label {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
}

.sp-logos {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-logo {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: .5rem 1.2rem;
  border-radius: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.sp-logo:hover { border-color: var(--gold); color: var(--text); }

/* ===================================================
   SECTION BASE
   =================================================== */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .8rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ===================================================
   PROBLEMA / SOLUÇÃO
   =================================================== */
#problema {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.col-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.col-tag.red   { background: rgba(239,68,68,.12); color: var(--red); border: 1px solid rgba(239,68,68,.25); }
.col-tag.green { background: rgba(34,197,94,.12); color: var(--green); border: 1px solid rgba(34,197,94,.25); }

.problema-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.problema-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.problema-list li i { width: 16px; text-align: center; color: var(--red); }
.problema-list.green li i { color: var(--green); }
.problema-list.green li { color: var(--text); }

.vs-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===================================================
   FUNCIONALIDADES
   =================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.fc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.fc-icon.gold   { background: rgba(201,168,76,.12); color: var(--gold); }
.fc-icon.green  { background: rgba(34,197,94,.12);  color: var(--green); }
.fc-icon.blue   { background: rgba(59,130,246,.12); color: var(--blue); }
.fc-icon.purple { background: rgba(168,85,247,.12); color: var(--purple); }
.fc-icon.red    { background: rgba(239,68,68,.12);  color: var(--red); }
.fc-icon.teal   { background: rgba(20,184,166,.12); color: var(--teal); }
.fc-icon.orange { background: rgba(249,115,22,.12); color: var(--orange); }
.fc-icon.pink   { background: rgba(236,72,153,.12); color: var(--pink); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.feature-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ===================================================
   COMO FUNCIONA
   =================================================== */
#como-funciona { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 3rem;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ts-num {
  font-family: 'Playfair Display', serif;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

.ts-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(201,168,76,.2);
}

.timeline-step h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.timeline-step p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

.cf-cta { text-align: center; }

/* ===================================================
   DEMO
   =================================================== */
.demo-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.demo-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
}

.demo-tab {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.demo-tab:hover { color: var(--text); }
.demo-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.demo-content { padding: 2rem; }

.demo-screen {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}

.ds-header {
  background: var(--dark4);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ds-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.ds-dot.red    { background: #ff5f56; }
.ds-dot.yellow { background: #ffbd2e; }
.ds-dot.green  { background: #27c93f; }
.ds-url {
  flex: 1;
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  background: var(--dark3);
  padding: .2rem .8rem;
  border-radius: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-body { padding: 1.2rem; }
.ds-hero { text-align: center; margin-bottom: 1rem; }
.ds-sub  { color: var(--gold); font-size: .8rem; font-weight: 600; margin-bottom: .2rem; }
.ds-hero h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.ds-desc { font-size: .75rem; color: var(--text-muted); }

.ds-steps-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1rem;
  font-size: .68rem;
}
.dsm {
  color: var(--text-muted);
  white-space: nowrap;
  padding: .25rem .5rem;
  border-radius: 6px;
}
.dsm.active { background: var(--gold-dim); color: var(--gold); font-weight: 700; }
.dsm-line { width: 16px; height: 1px; background: var(--border); }

.ds-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1rem;
}
.dss {
  background: var(--dark4);
  border: 1.5px solid var(--border);
  padding: .6rem .8rem;
  border-radius: 8px;
  font-size: .75rem;
  cursor: pointer;
  transition: var(--transition);
}
.dss.selected { border-color: var(--gold); background: var(--gold-dim); }
.dss small { color: var(--text-muted); font-size: .68rem; }

.ds-btn-row { text-align: right; }
.ds-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}

/* Painel Preview */
.painel-preview {
  display: flex;
  gap: 0;
  padding: 0 !important;
  min-height: 260px;
}
.pp-sidebar {
  background: var(--dark4);
  border-right: 1px solid var(--border);
  padding: 1rem .8rem;
  min-width: 130px;
}
.pp-logo { font-family: 'Playfair Display', serif; font-size: .8rem; color: var(--gold); margin-bottom: .8rem; line-height: 1.3; }
.pp-logo small { color: var(--text-muted); font-size: .68rem; }
.pp-nav { display: flex; flex-direction: column; gap: .3rem; }
.pp-item {
  font-size: .72rem;
  padding: .4rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.pp-item.active { background: var(--gold-dim); color: var(--gold); font-weight: 600; }

.pp-main { flex: 1; padding: 1rem; }
.pp-stats {
  display: flex;
  gap: .8rem;
  margin-bottom: 1rem;
}
.pp-stat {
  background: var(--dark4);
  border: 1px solid var(--border);
  padding: .5rem .8rem;
  border-radius: 8px;
  text-align: center;
  flex: 1;
}
.pp-stat span { display: block; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.pp-stat small { font-size: .65rem; color: var(--text-muted); }
.pp-list { display: flex; flex-direction: column; gap: .4rem; }
.pp-agend {
  background: var(--dark4);
  border-radius: 8px;
  padding: .4rem .7rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
}
.pp-hora { background: var(--gold-dim); color: var(--gold); padding: .15rem .4rem; border-radius: 4px; font-weight: 700; white-space: nowrap; }
.pp-agend p { font-weight: 600; }
.pp-agend small { color: var(--text-muted); }
.pp-badge { margin-left: auto; color: var(--green); font-size: .75rem; }

/* ===================================================
   PLANOS
   =================================================== */
.toggle-billing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.tb-label { font-size: .9rem; color: var(--text-muted); }
.tb-badge {
  background: rgba(34,197,94,.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,.25);
  padding: .1rem .5rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  margin-left: .3rem;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold-dim); border-color: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); background: var(--gold); }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plano-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
}
.plano-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plano-card.destaque {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201,168,76,.06) 0%, var(--card-bg) 100%);
  transform: scale(1.03);
}
.plano-card.destaque:hover { transform: scale(1.03) translateY(-4px); }

.plano-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: .2rem .9rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}

.plano-icon { font-size: 2rem; margin-bottom: .5rem; }
.plano-header { margin-bottom: 1.2rem; }
.plano-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: .2rem; }
.plano-desc { font-size: .82rem; color: var(--text-muted); }

.plano-preco {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: 1.5rem;
}
.pp-valor {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}
.pp-per { font-size: .82rem; color: var(--text-muted); }

.plano-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.8rem;
}
.plano-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .86rem;
  color: var(--text);
}
.plano-features li i.fa-check { color: var(--green); }
.plano-features li i.fa-times { color: var(--text-muted); }
.plano-features li i.muted + * { color: var(--text-muted); }

.btn-plano {
  display: block;
  text-align: center;
  padding: .8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
}
.btn-plano.solid { background: var(--gold); color: var(--dark); }
.btn-plano.solid:hover { background: var(--gold-light); }
.btn-plano.outline { border: 1.5px solid var(--border); color: var(--text-muted); }
.btn-plano.outline:hover { border-color: var(--gold); color: var(--gold); }

.planos-nota {
  text-align: center;
  margin-top: 2rem;
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.planos-nota i { color: var(--gold); }

/* ===================================================
   DEPOIMENTOS
   =================================================== */
#depoimentos { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.depo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.depo-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-3px); }

.depo-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; letter-spacing: .1em; }
.depo-card > p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem; font-style: italic; }

.depo-author { display: flex; align-items: center; gap: .7rem; }
.depo-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.da-nome { font-size: .88rem; font-weight: 700; }
.da-barbearia { font-size: .75rem; color: var(--text-muted); }

/* ===================================================
   FAQ
   =================================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,.3); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { flex-shrink: 0; font-size: .8rem; color: var(--text-muted); transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.1rem; }
.faq-a p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }

/* ===================================================
   CTA FINAL
   =================================================== */
#cta-final {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
    var(--dark2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 6rem 1.5rem;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
#cta-final h2 span { color: var(--gold); }
#cta-final > .cta-inner > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-garantia {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem;
}
.cta-garantia i { color: var(--gold); }

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .8rem;
}
.footer-brand > p { font-size: .85rem; color: var(--text-muted); max-width: 280px; margin-bottom: 1.2rem; line-height: 1.6; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fl-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .8rem;
}
.fl-col a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  padding: .2rem 0;
  transition: var(--transition);
}
.fl-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ===================================================
   WHATSAPP FLOAT
   =================================================== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 98;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .planos-grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plano-card.destaque { transform: none; }
  .depo-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline::before { display: none; }
  .problema-grid { grid-template-columns: 1fr; }
  .vs-circle { display: none; }
}

@media (max-width: 768px) {
  #hero { flex-direction: column; padding-top: 6rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-p { margin: 0 auto 2rem; }
  .hero-mockup { display: none; }
  .hero-scroll-hint { display: none; }
  .nav-links, .nav-ctas { display: none; }
  .btn-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .painel-preview { flex-direction: column; }
  .pp-sidebar { min-width: unset; }
}

@media (max-width: 480px) {
  .steps-timeline { grid-template-columns: 1fr; }
  .ds-services { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
