/* ============================================================
   Studio Área VIP — Barbearia & Salão
   Tema "Ele"  : preto profundo + dourado   (padrão)
   Tema "Ela"  : off-white + rosé/rose gold ([data-theme="ela"])
   Tipografia  : Cinzel + Inter
   ------------------------------------------------------------
   Toda cor do site vem de um token abaixo. Para criar um novo
   tema basta redeclarar os tokens — nenhuma regra é duplicada.
   ============================================================ */

:root {
  /* superfícies */
  --bg: #0f0e0c;
  --bg-2: #161411;
  --bg-3: #1e1b17;
  --surface-tint: rgba(255, 255, 255, 0.02);

  /* acento */
  --accent: #c9a24b;
  --accent-2: #e3c47c;
  --accent-deep: #a37f2e;
  --accent-rgb: 201 162 75;
  --on-accent: #171204;

  /* texto */
  --heading: #f3ead8;
  --text: #d9d2c4;
  --text-dim: #9a9284;
  --accent-text: #c9a24b;   /* acento em textos pequenos */
  --caption-text: #f3ead8;  /* legenda sobre foto */

  /* traços */
  --line: rgb(var(--accent-rgb) / 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* composições */
  --header-bg: rgba(15, 14, 12, 0.92);
  --hero-img: url("../img/ambiente-hero.jpg");
  --hero-pos: center 40%;
  --hero-scrim: linear-gradient(180deg, rgba(15, 14, 12, 0.86) 0%, rgba(15, 14, 12, 0.78) 55%, var(--bg) 100%);
  --caption-scrim: linear-gradient(180deg, transparent, rgba(10, 9, 8, 0.88));
  --shadow-strong: rgba(0, 0, 0, 0.55);
  --footer-bg: #0a0908;
  --footer-note: #5d564a;

  --radius: 16px;
  --font-display: "Cinzel", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ============================================================
   TEMA "ELA" — off-white + rosé
   Sofisticado: rosa dessaturado (não pink), plum profundo no
   texto e rose gold nos acentos.
   ============================================================ */
[data-theme="ela"] {
  --bg: #fdf9f9;
  --bg-2: #f8eeee;
  --bg-3: #ffffff;
  --surface-tint: rgba(158, 84, 112, 0.03);

  --accent: #a85c7a;
  --accent-2: #8d4463;
  --accent-deep: #6f3450;
  --accent-rgb: 168 92 122;
  --on-accent: #fffafb;

  --heading: #3b2530;
  --text: #5b4550;
  --text-dim: #806a75;
  --accent-text: #9c5473;
  --caption-text: #fdf3f5;

  --line: rgb(var(--accent-rgb) / 0.26);
  --line-soft: rgba(59, 37, 48, 0.1);

  --header-bg: rgba(253, 249, 249, 0.92);
  --hero-img: url("../img/foto-ambiente-ela.jpeg");
  --hero-pos: center 42%;
  /* scrim mais leve que o do tema Ele: a foto é clara e o texto é escuro,
     então dá pra deixar o ambiente aparecer sem perder legibilidade. */
  --hero-scrim: linear-gradient(180deg, rgba(253, 249, 249, 0.84) 0%, rgba(253, 249, 249, 0.8) 45%, rgba(253, 249, 249, 0.93) 82%, var(--bg) 100%);
  --caption-scrim: linear-gradient(180deg, transparent, rgba(48, 28, 38, 0.82));
  --shadow-strong: rgba(123, 62, 90, 0.18);
  --footer-bg: #f4e7e8;
  --footer-note: #7a6872;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.wrap { width: min(1140px, 92%); margin-inline: auto; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--bg);
  padding: 10px 18px; z-index: 200; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

h1, h2, h3 { font-family: var(--font-display); color: var(--heading); line-height: 1.18; font-weight: 600; }

h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.section { padding: clamp(70px, 9vw, 116px) 0; }
.section-soft { background: var(--bg-2); }

.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 20px 60px; align-items: end;
  margin-bottom: clamp(36px, 5vw, 54px);
}
.section-lead { color: var(--text-dim); }

.section-cta { text-align: center; margin-top: 46px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 4px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 18px; height: 18px; }

.btn-gold {
  background: linear-gradient(160deg, var(--accent-2), var(--accent) 50%, var(--accent-deep));
  color: var(--on-accent);
  box-shadow: 0 10px 30px rgb(var(--accent-rgb) / 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgb(var(--accent-rgb) / 0.42); }

.btn-line {
  border: 1px solid var(--line);
  color: var(--heading);
  background: var(--surface-tint);
}
.btn-line:hover { border-color: var(--accent); color: var(--accent-2); }

.btn-lg { padding: 16px 32px; font-size: 0.98rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 15px 0; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.brand-mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  overflow: hidden;
  color: var(--accent);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); color: var(--heading); font-size: 1rem; letter-spacing: 0.05em; }
.brand-text small { color: var(--accent-text); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.3em; }

.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--accent-2); }

.btn-header { padding: 11px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--heading); border-radius: 2px; transition: 0.2s; }
.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); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(88px, 12vw, 150px) 0 clamp(70px, 9vw, 110px);
  text-align: center;
  background:
    var(--hero-scrim),
    var(--hero-img) var(--hero-pos) / cover no-repeat,
    var(--bg);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 420px at 50% -10%, rgb(var(--accent-rgb) / 0.18), transparent 65%),
    radial-gradient(500px 400px at 100% 110%, rgb(var(--accent-rgb) / 0.07), transparent 60%);
}
.hero-inner { position: relative; max-width: 780px; margin-inline: auto; }

.hero-logo {
  width: clamp(150px, 20vw, 210px);
  margin: 0 auto 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px var(--shadow-strong);
}

.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
  background: rgb(var(--accent-rgb) / 0.06);
}
.rating-badge strong { color: var(--heading); }
.stars { color: var(--accent-text); letter-spacing: 2px; }

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero .lead {
  color: var(--text-dim);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  max-width: 58ch; margin: 0 auto 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 36px; }

.hero-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 14px;
  font-size: 0.84rem; color: var(--text-dim);
}
.hero-chips li {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 7px 15px;
  background: var(--surface-tint);
}
.hero-chips svg { width: 15px; height: 15px; flex: none; color: var(--accent); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 28px; width: max-content;
  animation: slide 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-text);
  white-space: nowrap;
}
.marquee-track i {
  width: 6px; height: 6px; align-self: center;
  background: var(--accent); transform: rotate(45deg);
  opacity: 0.7;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sobre ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 72px); align-items: start;
}
.about-grid > div > p { color: var(--text-dim); margin-top: 16px; max-width: 58ch; }

.about-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.ab {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: grid; gap: 2px;
  background: rgb(var(--accent-rgb) / 0.04);
}
.ab strong { font-family: var(--font-display); color: var(--accent-2); font-size: 0.98rem; }
.ab span { font-size: 0.78rem; color: var(--text-dim); }

.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 30px 30px 26px;
}
.about-panel h3 { font-size: 1.1rem; margin-bottom: 18px; }

.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.92rem; color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-soft);
}
.feature-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.feature-list svg { width: 19px; height: 19px; flex: none; color: var(--accent); margin-top: 3px; }

/* ---------- Galeria (o espaço) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.ph {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-3);
}
.ph-featured { grid-column: span 2; grid-row: span 2; }

.ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ph:hover img { transform: scale(1.04); }

.ph figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: var(--caption-scrim);
  color: var(--caption-text);
  font-family: var(--font-display);
  font-size: 0.85rem;
}

/* ---------- Serviços ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-3);
  padding: 30px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); }

.card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgb(var(--accent-rgb) / 0.1), var(--bg-3) 55%); }

.flag {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent); color: var(--on-accent);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; padding: 4px 10px;
}

.card-ico {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 20px;
}
.card-ico svg { width: 23px; height: 23px; }

.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 0.92rem; flex: 1; }

.price {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--accent-2);
}

/* ---------- VIP ---------- */
.vip { background: var(--bg); }
.vip-box {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
  border: 1px solid var(--accent);
  border-radius: 22px;
  padding: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(500px 280px at 0% 0%, rgb(var(--accent-rgb) / 0.14), transparent 60%),
    var(--bg-2);
}
.vip-copy p { color: var(--text-dim); margin: 14px 0 28px; max-width: 50ch; }

.vip-prices { list-style: none; display: grid; gap: 16px; }
.vip-prices li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.98rem; color: var(--text);
}
.vip-prices i { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.vip-prices strong { font-family: var(--font-display); color: var(--accent-2); font-size: 1.15rem; }

/* ---------- Preços ---------- */
.price-cols { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: 22px; }

.price-col {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-3);
  padding: 30px 28px;
}
.price-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; margin-bottom: 20px; color: var(--accent-2);
}
.price-col h3 svg { width: 19px; height: 19px; flex: none; color: var(--accent); }

.price-col ul { list-style: none; display: grid; gap: 13px; }
.price-col ul li {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 0.9rem; color: var(--text);
}
.price-col ul li span { max-width: 65%; }
.price-col ul li i { flex: 1; border-bottom: 1px dotted var(--line-soft); transform: translateY(-3px); }
.price-col ul li strong { color: var(--heading); font-weight: 600; white-space: nowrap; }

.plans { display: grid; gap: 14px; align-content: start; }
.plan {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 18px 20px;
  background: var(--bg-2);
}
.plan-featured { border-color: var(--accent); background: rgb(var(--accent-rgb) / 0.07); }
.plan strong { font-family: var(--font-display); color: var(--heading); font-size: 0.98rem; }
.plan p { color: var(--text-dim); font-size: 0.82rem; margin: 3px 0 8px; }
.plan-price { font-family: var(--font-display); color: var(--accent-2); font-size: 1.3rem; font-weight: 700; }
.plan-price small { font-size: 0.75rem; color: var(--text-dim); font-family: var(--font-body); }

/* ---------- Equipe ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.member {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 34px 30px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.member:hover { border-color: var(--accent); transform: translateY(-4px); }

.avatar {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: radial-gradient(circle at 30% 25%, rgb(var(--accent-rgb) / 0.18), transparent 70%);
}

.member h3 { font-size: 1.15rem; }
.member .role {
  color: var(--accent-text); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin: 6px 0 14px;
}
.member p:not(.role) { color: var(--text-dim); font-size: 0.92rem; max-width: 44ch; margin-inline: auto; }

/* ---------- Depoimentos ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-3);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.review .stars { font-size: 0.9rem; }
.review p:not(.stars) { color: var(--text); font-size: 0.95rem; font-style: italic; flex: 1; }
.review footer { color: var(--text-dim); font-size: 0.82rem; }

/* ---------- Local ---------- */
.local-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 72px); align-items: start;
}

.local-list { list-style: none; display: grid; gap: 22px; margin-top: 26px; }
.local-list strong {
  display: block;
  font-family: var(--font-display); color: var(--accent-2);
  font-size: 0.95rem; margin-bottom: 4px;
}
.local-list span { color: var(--text-dim); font-size: 0.95rem; }
.local-list a { color: var(--accent-2); }

.local-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.local-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 30px;
}
.local-panel h3 { font-size: 1.05rem; margin-bottom: 18px; }

.amenities { list-style: none; display: grid; gap: 12px; }
.amenities li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.92rem; color: var(--text);
  border-bottom: 1px dashed var(--line-soft);
  padding-bottom: 12px;
}
.amenities svg { width: 18px; height: 18px; flex: none; color: var(--accent); margin-top: 3px; }
.amenities li:last-child { border-bottom: 0; padding-bottom: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  padding: clamp(70px, 9vw, 110px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(600px 320px at 50% 0%, rgb(var(--accent-rgb) / 0.14), transparent 65%),
    var(--bg-2);
}
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner p { color: var(--text-dim); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--line-soft); padding-top: clamp(48px, 6vw, 70px); }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-desc { color: var(--text-dim); font-size: 0.9rem; margin-top: 16px; max-width: 34ch; }

.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h3 {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: 6px;
}
.footer-col a, .footer-col span {
  color: var(--text-dim); text-decoration: none; font-size: 0.9rem;
}
.footer-col a:hover { color: var(--accent-2); }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px 24px;
  padding: 18px 0 24px;
  font-size: 0.78rem; color: var(--footer-note);
}

/* Selo "Desenvolvido por Kennedev" */
.footer-credit {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; text-decoration: none;
  color: var(--text-dim);
  transition: color 0.16s ease;
}
.footer-credit img { width: 26px; height: 26px; border-radius: 7px; display: block; }
.footer-credit strong { color: var(--heading); font-weight: 700; }
.footer-credit:hover strong { color: var(--accent-2); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .price-cols { grid-template-columns: 1fr 1fr; }
  .plans { grid-column: span 2; grid-template-columns: repeat(3, 1fr); }
  .about-grid, .local-grid, .vip-box { grid-template-columns: 1fr; }

  /* menu vira hambúrguer já no tablet — evita nav espremida */
  .site-nav {
    position: fixed; left: 0; right: 0;
    top: var(--nav-offset, 74px);
    flex-direction: column; gap: 0; margin-left: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    display: none; z-index: 99;
    box-shadow: 0 24px 40px var(--shadow-strong);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 6%; }
  .nav-toggle { display: flex; margin-left: auto; }
  .btn-header { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
}

@media (max-width: 760px) {
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .team { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; grid-column: span 2; }
  .hero { text-align: left; }
  .hero-inner { max-width: none; }
  .hero-logo { margin-left: 0; }
  .hero .lead { margin-inline: 0; }
  .hero-cta, .hero-chips { justify-content: flex-start; }
  .vip-box { padding: 28px 22px; }
}

@media (max-width: 620px) {
  .reviews, .price-cols { grid-template-columns: 1fr; }
  .plans { grid-column: auto; grid-template-columns: 1fr; }
  .price-col, .card { padding: 24px 20px; }

  /* serviços e galeria viram carrossel (swipe) */
  .cards, .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin-inline: -4vw;
    padding: 4px 4vw 8px;
  }
  .cards::-webkit-scrollbar, .gallery::-webkit-scrollbar { display: none; }

  .card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .ph, .ph-featured {
    flex: 0 0 84%;
    height: 260px;
    grid-column: auto; grid-row: auto;
    scroll-snap-align: center;
  }

  .btn-header { display: none; }
  .brand-text small { letter-spacing: 0.18em; }

  .hero-cta .btn, .local-cta .btn { width: 100%; }
  .section-cta .btn { width: 100%; }
  .about-badges { display: grid; grid-template-columns: 1fr 1fr; }
  .ab:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   SWITCH ELE / ELA
   Pill segmentado com indicador deslizante. O estado vem do
   atributo data-active no container (ele | ela) e o link ativo
   é marcado com aria-current="page".
   ============================================================ */
.gx-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-tint);
  box-shadow: inset 0 1px 0 rgb(var(--accent-rgb) / 0.08);
}

.gx-switch::before {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: linear-gradient(160deg, var(--accent-2), var(--accent) 55%, var(--accent-deep));
  box-shadow: 0 6px 18px rgb(var(--accent-rgb) / 0.32);
  transition: transform 0.34s cubic-bezier(0.4, 0.9, 0.2, 1);
}
.gx-switch[data-active="ela"]::before { transform: translateX(100%); }

.gx-switch a {
  position: relative; z-index: 1;
  min-width: 56px;
  text-align: center;
  padding: 7px 16px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.25s ease;
}
.gx-switch a[aria-current="page"] { color: var(--on-accent); }
.gx-switch a:not([aria-current="page"]):hover { color: var(--accent-2); }
.gx-switch a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .gx-switch::before { transition: none; }
}

@media (max-width: 1020px) {
  .header-inner { gap: 14px; }
  .gx-switch { margin-left: auto; }
  .btn-header { margin-left: 0; }
}

@media (max-width: 480px) {
  .brand-text small { display: none; }
  .gx-switch a { min-width: 44px; padding: 6px 10px; font-size: 0.7rem; letter-spacing: 0.08em; }
}

/* ============================================================
   PORTA DE ENTRADA (index.html) — escolha Ele / Ela
   Duas portas em tela cheia separadas por um corte diagonal.
   A porta da direita carrega data-theme="ela", então herda toda
   a paleta rosé pelos mesmos tokens — sem CSS duplicado.
   ============================================================ */
.gate-page { background: var(--bg); }

.gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
}

/* conteúdo só para leitores de tela / buscadores */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; white-space: nowrap;
  clip: rect(0 0 0 0); clip-path: inset(50%);
}

/* ---------- as duas portas ---------- */
.gate-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 52vh, 620px);
  transition: grid-template-columns 0.45s cubic-bezier(0.4, 0.9, 0.2, 1);
}

/* corte diagonal: as portas se sobrepõem 4vw e cada clip remove
   exatamente o complemento da outra — as bordas coincidem. */
.gate-door--ele {
  margin-right: -2vw;
  clip-path: polygon(0 0, 100% 0, calc(100% - 4vw) 100%, 0 100%);
  padding-right: 5vw;
}
.gate-door--ela {
  margin-left: -2vw;
  clip-path: polygon(4vw 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 5vw;
  background: var(--bg);
}

.gate-door {
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  text-align: center; text-decoration: none;
  padding-block: clamp(30px, 5vw, 56px);
  background: var(--bg);
  isolation: isolate;
}

.gate-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.7;
  background:
    radial-gradient(620px 420px at 50% 8%, rgb(var(--accent-rgb) / 0.2), transparent 68%),
    radial-gradient(420px 340px at 50% 112%, rgb(var(--accent-rgb) / 0.1), transparent 65%);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.gate-door:hover .gate-glow { opacity: 1; transform: scale(1.12); }

.gate-inner {
  display: grid; justify-items: center; gap: 14px;
  max-width: 30rem;
  transition: transform 0.45s cubic-bezier(0.4, 0.9, 0.2, 1);
}
.gate-door:hover .gate-inner { transform: translateY(-6px); }

/* logo em PNG transparente: nada de moldura, raio ou sombra de caixa —
   a arte flutua direto sobre o fundo da porta. */
.gate-logo {
  width: clamp(190px, 25vw, 360px);
  height: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0.9, 0.2, 1);
}
.gate-door:hover .gate-logo { transform: scale(1.045); }

.gate-word {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding-bottom: 12px;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gate-word::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 34px; height: 1px; transform: translateX(-50%);
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0.9, 0.2, 1);
}
.gate-door:hover .gate-word::after { width: 78px; }

.gate-desc {
  font-size: clamp(0.76rem, 1.3vw, 0.87rem);
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.gate-btn {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 8px;
  padding: 12px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--heading);
  background: var(--surface-tint);
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.gate-btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.gate-door:hover .gate-btn {
  background: linear-gradient(160deg, var(--accent-2), var(--accent) 55%, var(--accent-deep));
  border-color: transparent;
  color: var(--on-accent);
  box-shadow: 0 12px 30px rgb(var(--accent-rgb) / 0.35);
}
.gate-door:hover .gate-btn svg { transform: translateX(4px); }

.gate-door:focus-visible { outline: 2px solid var(--accent); outline-offset: -6px; }

/* a porta em foco ganha espaço */
@supports selector(:has(*)) {
  .gate-doors:has(.gate-door--ele:hover) { grid-template-columns: 1.14fr 0.86fr; }
  .gate-doors:has(.gate-door--ela:hover) { grid-template-columns: 0.86fr 1.14fr; }
}

/* ---------- rodapé ---------- */
.gate-foot {
  padding: clamp(20px, 3vw, 30px) 5% clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-size: 0.8rem;
}
.gate-info {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 14px;
  color: var(--text-dim);
}
.gate-info i { width: 4px; height: 4px; background: var(--accent); transform: rotate(45deg); opacity: 0.7; }

.gate-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
  margin-top: 12px;
}
.gate-links a {
  color: var(--accent-text); text-decoration: none;
  font-weight: 600; letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.16s ease;
}
.gate-links a:hover { border-bottom-color: currentColor; }

.gate-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 20px;
  margin-top: 22px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.75rem; color: var(--footer-note);
}

/* ---------- entrada ---------- */
@keyframes gate-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.gate-door--ele .gate-inner, .gate-door--ela .gate-inner, .gate-foot {
  animation: gate-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.gate-door--ela .gate-inner { animation-delay: 0.09s; }
.gate-foot { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .gate-door .gate-inner, .gate-foot { animation: none; }
  .gate-doors, .gate-inner, .gate-logo, .gate-glow, .gate-word::after { transition: none; }
}

/* ---------- responsivo ----------
   As duas portas continuam LADO A LADO em qualquer largura — é o que
   faz a leitura "Ele | Ela" funcionar de imediato. O que muda é a
   escala do conteúdo e o quanto o diagonal avança. */
@media (max-width: 860px) {
  .gate-doors { min-height: clamp(340px, 58vh, 620px); }

  /* diagonal mais acentuado: em tela estreita 4vw era quase invisível */
  .gate-door--ele {
    margin-right: -3vw;
    clip-path: polygon(0 0, 100% 0, calc(100% - 6vw) 100%, 0 100%);
    padding-right: 7vw; padding-left: 3vw;
  }
  .gate-door--ela {
    margin-left: -3vw;
    clip-path: polygon(6vw 0, 100% 0, 100% 100%, 0 100%);
    padding-left: 7vw; padding-right: 3vw;
  }

  .gate-door { padding-block: clamp(24px, 5vw, 42px); }
  .gate-inner { gap: 10px; }
  .gate-logo { width: 100%; max-width: 220px; }
  .gate-word { font-size: clamp(1.15rem, 5.2vw, 1.7rem); letter-spacing: 0.14em; padding-bottom: 9px; }
  .gate-word::after { width: 26px; }
  .gate-desc { font-size: 0.68rem; letter-spacing: 0.01em; line-height: 1.45; }
  .gate-btn { padding: 10px 16px; font-size: 0.7rem; letter-spacing: 0.08em; gap: 6px; }
  .gate-btn svg { width: 14px; height: 14px; }

  .gate-foot { font-size: 0.72rem; }
  .gate-info { gap: 6px 10px; }
  .gate-links { gap: 6px 16px; }
}

@media (max-width: 560px) {
  /* a lista de serviços não cabe em ~160px sem virar um bloco de texto;
     o aria-label de cada porta já descreve o atendimento. */
  .gate-desc { display: none; }
  .gate-word { font-size: clamp(1rem, 5.8vw, 1.4rem); letter-spacing: 0.1em; }
  .gate-logo { max-width: 152px; }
  .gate-btn { padding: 9px 13px; font-size: 0.66rem; letter-spacing: 0.06em; }
  .gate-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 380px) {
  .gate-logo { max-width: 118px; }
  .gate-word { letter-spacing: 0.06em; }
  .gate-btn { padding: 8px 11px; font-size: 0.62rem; letter-spacing: 0.04em; }
}
