
/* ============================================================
   VARIÁVEIS — Infinit Barber
   East Bay  #424977  →  acento principal
   Hot Ebony #26231E  →  preto base
   ============================================================ */

:root {
  --gold: #424977;
  --gold-light: #6B72A8;
  --gold-dark: #2E3357;
  --accent: #424977;
  --accent-light: #5B62A0;
  --black: #26231E;
  --black2: #26231E;
  --black3: #26231E;
  --off-white: #F8F5F0;
  --cream: #F2EDE5;
  --muted: #9A968E;
  --white: #FFFFFF;
  --surface: #2E2A25;
  --cream: #1E1B17;
  --border: rgba(66,73,119,0.35);
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: var(--black);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}

.header-left { display: flex; align-items: center; gap: 16px; }

.back-link {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }
.back-link::before { content: '←'; }

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

.logo {
  width: 168.2px;
  height: 31px;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.btn-outline {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid rgba(248,245,240,0.25);
  background: transparent;
  padding: 9px 20px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline:focus, .btn-outline:focus-visible { outline: none; }

.btn-gold {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--gold);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  outline: none;
  transition: background 0.25s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-gold:focus, .btn-gold:focus-visible { outline: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 72px 80px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--cream);
  background-image: url('../img/bg.jpg.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.65;
  transform: scale(1.04);
  animation: heroZoom 10s ease forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); opacity: 0.78; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,23,21,0.97) 0%,
    rgba(38,35,30,0.80) 48%,
    rgba(66,73,119,0.20) 100%
  );
}

@keyframes lineGrow {
  to { height: 55%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero-title {
  font-family: 'ivymode', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--off-white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}
.hero-title em { font-style: normal; color: var(--gold-light); }

.hero-title strong {
  font-weight: 300;
  color: var(--gold-light);
  font-style: normal;
}

.hero-sub {
  font-size: 0.9rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s ease forwards;
}

/* "Ver Portfólio" no hero: outline claro sobre fundo escuro */
.hero-actions .btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(248,245,240,0.55);
  outline: none;
}
.hero-actions .btn-outline:hover {
  background: rgba(248,245,240,0.08);
  border-color: var(--off-white);
  color: var(--off-white);
}
.hero-actions .btn-outline:focus,
.hero-actions .btn-outline:focus-visible { outline: none; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp 1s 1.5s ease forwards;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}

/* ══════════════════════════════════════
   SEÇÃO GENÉRICA
══════════════════════════════════════ */
section { position: relative; }

.section-label {
  font-size: 0.58rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title {
  font-family: 'ivymode', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--off-white);
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--gold-light); font-weight: 300; }

.section-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
  max-width: 500px;
}

/* ornamento */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
  justify-content: center;
  padding: 52px 0;
  background: var(--black);
}
.orn-line { width: 60px; height: 1px; background: var(--border); }
.orn-dot { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }

/* ══════════════════════════════════════
   SOBRE
══════════════════════════════════════ */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--black);
}

.sobre-media {
  position: relative;
  overflow: hidden;
}

.sobre-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s ease;
}
.sobre-media:hover img { transform: scale(1.04); }

.sobre-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black));
}

.sobre-accent {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(66,73,119,0.5);
}

.sobre-text {
  background: linear-gradient(105deg, #26231E 0%, #2A2035 50%, #26231E 100%);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { text-align: left; }

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ══════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════ */
.diferenciais {
  background: linear-gradient(105deg, #1A1715 0%, #1E1B2A 55%, #1A1715 100%);
  padding: 100px 72px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 64px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.diferencial-card {
  background: rgba(66,73,119,0.08);
  padding: 48px 32px 40px;
  border: 1px solid transparent;
  border-image: linear-gradient(145deg, #2E3357 0%, #6B72A8 50%, #2E3357 100%) 1;
  text-align: center;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.diferencial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.5s ease;
}

@media (hover: hover) {
  .diferencial-card:hover { background: rgba(66,73,119,0.18); border-image: linear-gradient(145deg, #424977 0%, #6B72A8 50%, #424977 100%) 1; }
  .diferencial-card:hover::after { width: 80%; }
  .diferencial-card:hover .diferencial-icon { transform: scale(1.12); }
}

.diferencial-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(66,73,119,0.45);
  display: block;
  margin-bottom: 18px;
}

.diferencial-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.35s ease;
}

.diferencial-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.diferencial-desc {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

/* ══════════════════════════════════════
   PORTFÓLIO
══════════════════════════════════════ */
.portfolio {
  padding: 100px 72px;
  background: linear-gradient(105deg, #1A1715 0%, #1E1B2A 50%, #1A1715 100%);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.porto-item {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.porto-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.7s ease, filter 0.5s;
  display: block;
  background: var(--black);
}
.porto-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

.porto-item.is-video::after {
  content: '▶';
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  background: rgba(10,10,10,0.55);
  border-radius: 50%;
  pointer-events: none;
}

.porto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.porto-item:hover .porto-overlay { opacity: 1; }

.porto-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201,169,110,0.5);
  padding-bottom: 3px;
}

/* ══════════════════════════════════════
   PACOTES / LOJA
══════════════════════════════════════ */
.loja {
  background: linear-gradient(105deg, #26231E 0%, #1E1B2A 55%, #26231E 100%);
  padding: 100px 72px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
}

.loja-header {
  text-align: center;
  margin-bottom: 16px;
}

.loja-sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 64px;
}

.loja-aviso {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66,73,119,0.1);
  border: 1px solid rgba(66,73,119,0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  margin-bottom: 52px;
}

.loja-aviso-wrap { text-align: center; }

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pacote-card {
  background: rgba(66,73,119,0.08);
  padding: 52px 40px;
  position: relative;
  border: 1px solid transparent;
  border-image: linear-gradient(145deg, #2E3357 0%, #6B72A8 50%, #2E3357 100%) 1;
  transition: border-image 0.3s;
  display: flex;
  flex-direction: column;
}

.pacote-card.destaque {
  background: var(--black);
  border-image: linear-gradient(145deg, #424977 0%, #6B72A8 50%, #424977 100%) 1;
}

.pacote-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: var(--off-white);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}

.pacote-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.pacote-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 8px;
}
.pacote-card.destaque .pacote-name { color: var(--off-white); }
.pacote-card.destaque .pacote-desc { color: rgba(248,245,240,0.65); }

.pacote-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pacote-price {
  margin-bottom: 28px;
}

.pacote-price-val {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.pacote-price-label {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.pacote-items {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.pacote-items li {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(248,245,240,0.72);
  padding: 8px 0;
  border-bottom: 1px solid rgba(66,73,119,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pacote-card.destaque .pacote-items li { color: rgba(248,245,240,0.75); border-bottom-color: rgba(201,169,110,0.15); }

.pacote-items li::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.btn-pacote {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
}

.btn-pacote:hover {
  background: var(--gold);
  color: var(--off-white);
}

.pacote-card.destaque .btn-pacote {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--off-white);
}

.pacote-card.destaque .btn-pacote:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.loja-locked {
  display: none;
}

/* ══════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════ */
.depoimentos {
  padding: 100px 72px;
  background: linear-gradient(105deg, #1A1715 0%, #1E1B2A 55%, #1A1715 100%);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
}

.depoimentos-header { text-align: center; margin-bottom: 64px; }

.depo-viewport {
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.depo-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.depo-card {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid transparent;
  border-image: linear-gradient(145deg, #2E3357 0%, #6B72A8 50%, #2E3357 100%) 1;
  padding: 52px 56px;
  position: relative;
}

.depo-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  color: rgba(66,73,119,0.38);
  line-height: 1;
  margin-bottom: 12px;
}

.depo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 32px;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--off-white);
  flex-shrink: 0;
}

.depo-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--off-white);
}

.depo-stars {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 3px;
}

/* ── Controles: setas + dots ── */
.depo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.depo-arrow {
  background: none;
  border: 1px solid var(--border);
  color: var(--gold-light);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.depo-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.depo-arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }

.depo-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.depo-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: background 0.25s, width 0.3s, border-color 0.25s;
  /* touch target generoso sem alterar visual */
  padding: 8px;
  margin: -8px;
  box-sizing: content-box;
}
.depo-dot.active { background: var(--gold); border-color: var(--gold); width: 22px; }

/* ══════════════════════════════════════
   AGENDAMENTO
══════════════════════════════════════ */
.agendamento {
  padding: 100px 72px;
  background: linear-gradient(105deg, #26231E 0%, #1E1B2A 55%, #26231E 100%);
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.agenda-info .section-body { margin-bottom: 36px; }

.agenda-contato {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.agenda-contato-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.agenda-contato-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.agenda-contato-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.agenda-form {
  background: rgba(66,73,119,0.08);
  border: 1px solid transparent;
  border-image: linear-gradient(145deg, #2E3357 0%, #6B72A8 50%, #2E3357 100%) 1;
  padding: 52px 44px;
}

.agenda-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}

.field input:focus,
.field select:focus { border-color: var(--gold); }
.field input::placeholder { color: rgba(154,150,142,0.5); }
.field select option { background: var(--white); color: var(--black); }

.btn-agendar {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.25s;
}
.btn-agendar:hover { opacity: 0.88; }

.agenda-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 24px 44px;
  gap: 14px;
}
.agenda-gate-icon {
  font-size: 2rem;
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 4px;
}
.agenda-gate-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.agenda-gate-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
}
.agenda-gate .btn-gold {
  margin-top: 8px;
  padding: 13px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
  padding: 60px 72px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-logo {
  max-width: 210px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 230px;
  margin-bottom: 24px;
}

.footer-main-link {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-main-link::before { content: '←'; }

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  word-break: break-word;
  overflow-wrap: break-word;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--off-white);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-social {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--gold); opacity: 0.82; transform: scale(1.1); }

/* ══════════════════════════════════════
   MODAL LOGIN
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,35,30,0.82);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: #1E1B17;
  border: 1px solid transparent;
  border-image: linear-gradient(145deg, #2E3357 0%, #6B72A8 50%, #2E3357 100%) 1;
  width: 440px;
  max-width: 94vw;
  padding: 56px 48px;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.35s;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--off-white); }

.modal-accent-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  position: absolute;
  top: 0; left: 0;
}

.modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.modal-logo svg {
  width: 120px;
  height: auto;
}

.modal-sub {
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.modal-tabs {
  display: flex;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.modal-tab {
  flex: 1;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.modal-tab.active { color: var(--gold-light); border-bottom-color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.25s;
}
.btn-submit:hover { opacity: 0.85; }

.form-footer-text {
  text-align: center;
  margin-top: 16px;
  font-size: 0.7rem;
  color: var(--muted);
}
.form-footer-text a { color: var(--gold); text-decoration: none; }

/* ── Painel conta logada ── */
.conta-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.conta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--off-white);
  flex-shrink: 0;
}

.conta-user-info { flex: 1; min-width: 0; }

.conta-nome {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--off-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conta-email {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conta-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.btn-logout {
  background: transparent !important;
  border: 1px solid rgba(107,45,62,0.45) !important;
  color: #c4738a !important;
}
.btn-logout:hover {
  background: rgba(107,45,62,0.15) !important;
  border-color: rgba(107,45,62,0.8) !important;
  opacity: 1 !important;
}

/* ── Social login ── */
.btn-social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 18px;
}
.btn-social:hover {
  background: var(--cream);
  border-color: var(--gold);
}

/* ── OR divider ── */
.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.modal-divider span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Erro inline ── */
.modal-form-error {
  display: none;
  background: rgba(220,80,80,0.07);
  border: 1px solid rgba(220,80,80,0.25);
  color: #e08080;
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.5;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.modal-form-error.visible { display: block; }
.modal-form-error.success {
  background: rgba(80,180,100,0.07);
  border-color: rgba(80,180,100,0.25);
  color: #80c87a;
}

/* ── Toggle senha ── */
.input-wrapper { position: relative; }
.input-wrapper input { padding-right: 38px; }
.btn-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  line-height: 1;
}
.btn-eye:hover { color: var(--gold-light); }

/* ── Loading no botão ── */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading {
  opacity: 0.65;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit.loading::after {
  content: '';
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-top-color: var(--off-white);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* As seções têm background próprio — a animação fica nos filhos diretos
   para que o fundo branco/creme apareça imediatamente, sem piscar preto */
.reveal > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible > * { opacity: 1; transform: translateY(0); }

/* Stagger suave entre filhos diretos */
.reveal.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal.visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal.visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal.visible > *:nth-child(6) { transition-delay: 0.32s; }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: #1A1715;
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding-bottom: 40px;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-nav-links a {
  font-family: 'ivymode', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav-links a:first-child { border-top: 1px solid var(--border); }
.mobile-nav-links a:active { color: var(--gold-light); }

.mobile-nav-cta {
  margin-top: 36px;
  padding: 0 40px;
  width: 100%;
}

.mobile-nav-cta .btn-gold {
  width: 100%;
  padding: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 1024px) {
  header { padding: 0 28px; }
  .hero { padding: 0 36px 60px; }
  .sobre { grid-template-columns: 1fr; }
  .sobre-media { min-height: 340px; }
  .sobre-text { padding: 60px 44px; }
  .diferenciais { padding: 72px 36px; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .portfolio { padding: 72px 36px; }
  .portfolio-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .loja { padding: 72px 36px; }
  .depoimentos { padding: 72px 36px; }
  .agendamento { grid-template-columns: 1fr; padding: 72px 36px; gap: 52px; }
  footer { padding: 52px 36px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {

  /* ════════════════════════
     HEADER
  ════════════════════════ */
  header { padding: 0 20px; }
  .back-link, .header-divider { display: none; }
  nav { display: none; }
  .btn-agendar-header { display: none; }
  .menu-toggle { display: flex; }

  /* Botão de conta: touch target mínimo 44px */
  .header-actions .btn-outline {
    font-size: 0.62rem;
    padding: 0 14px;
    height: 44px;
    line-height: 44px;
    letter-spacing: 0.08em;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    outline: none;
  }

  /* ════════════════════════
     HERO
  ════════════════════════ */
  .hero {
    padding: 0 24px 88px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    align-items: flex-end;
  }
  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(26,23,21,0.97) 0%,
      rgba(38,35,30,0.88) 55%,
      rgba(66,73,119,0.22) 100%
    );
  }
  .hero-tag { font-size: 0.58rem; letter-spacing: 0.26em; margin-bottom: 14px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.1; margin-bottom: 18px; }
  .hero-sub { font-size: 0.84rem; max-width: 100%; margin-bottom: 32px; line-height: 1.85; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline { width: 100%; padding: 15px 20px; min-height: 50px; font-size: 0.72rem; text-align: center; display: block; }
  .hero-scroll { display: none; }

  /* ════════════════════════
     TIPOGRAFIA GERAL
  ════════════════════════ */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-body { max-width: 100%; font-size: 0.86rem; }

  /* ════════════════════════
     SOBRE
  ════════════════════════ */
  .sobre-media { min-height: 280px; }
  .sobre-media-overlay { background: linear-gradient(to bottom, transparent 50%, var(--black)); }
  .sobre-text { padding: 48px 24px 52px; }
  .sobre-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
  }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 0.6rem; }

  /* ════════════════════════
     DIFERENCIAIS
  ════════════════════════ */
  .diferenciais { padding: 56px 20px; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .diferencial-card { padding: 36px 22px 30px; }
  .diferencial-title { font-size: 1rem; }
  .diferencial-desc { font-size: 0.74rem; }

  /* ════════════════════════
     PORTFÓLIO
  ════════════════════════ */
  .portfolio { padding: 64px 20px; }
  .portfolio-header { margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .portfolio-header .section-body { text-align: left; max-width: 100%; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .porto-item img { min-height: 170px; object-position: center top; }
  /* Overlay sempre visível no touch (sem hover) */
  .porto-overlay { opacity: 1; background: rgba(10,10,10,0.35); }

  /* ════════════════════════
     ORNAMENTO
  ════════════════════════ */
  .ornament { padding: 36px 0; }

  /* ════════════════════════
     LOJA
  ════════════════════════ */
  .loja { padding: 56px 20px; }
  .loja-sub { font-size: 0.8rem; margin-bottom: 36px; line-height: 1.7; }
  .loja-aviso { font-size: 0.62rem; padding: 10px 14px; text-align: left; line-height: 1.55; }

  /* Tabs: grid 3 colunas iguais — sem scroll lateral */
  .store-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: unset;
    max-width: 100%;
    margin-bottom: 36px;
  }
  .store-tab {
    font-size: 0.56rem;
    letter-spacing: 0.10em;
    padding: 12px 8px;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  /* Card destaque sobe para o topo */
  .store-card-destaque { order: -1; }
  .store-badge-top { font-size: 0.5rem; padding: 4px 14px; }
  .store-card-footer { gap: 12px; }
  .store-price-val { font-size: 1.3rem; }

  /* ════════════════════════
     DEPOIMENTOS
  ════════════════════════ */
  .depoimentos { padding: 64px 20px; }
  .depoimentos-header { margin-bottom: 40px; }
  .depo-viewport { max-width: 100%; }
  .depo-card { padding: 32px 24px; }
  .depo-text { font-size: 0.95rem; line-height: 1.75; }
  .depo-quote { font-size: 2.8rem; }
  .depo-arrow { width: 44px; height: 44px; font-size: 1.1rem; }
  .depo-dot { width: 10px; height: 10px; min-width: 10px; }
  .depo-dot.active { width: 28px; }
  .depo-nav { gap: 10px; margin-top: 36px; }

  /* ════════════════════════
     AGENDAMENTO
  ════════════════════════ */
  .agendamento { padding: 64px 20px; gap: 44px; }
  .agenda-contato-item { gap: 12px; }
  .agenda-contato-text { font-size: 0.78rem; }
  .agenda-form { padding: 36px 22px; }
  .agenda-form-title { font-size: 1.25rem; margin-bottom: 28px; }
  .form-row-grid { grid-template-columns: 1fr; }
  /* Previne zoom automático do iOS em inputs (font-size < 16px) */
  .field input,
  .field select {
    font-size: 16px;
    padding: 13px 14px;
    min-height: 48px;
  }
  .field label { font-size: 0.58rem; letter-spacing: 0.16em; }
  .btn-agendar { padding: 16px; min-height: 50px; font-size: 0.72rem; }
  /* Gate: botão full-width no mobile */
  .agenda-gate { padding: 44px 16px 36px; }
  .agenda-gate .btn-gold { width: 100%; padding: 15px; min-height: 50px; }

  /* ════════════════════════
     FOOTER
  ════════════════════════ */
  footer {
    padding: 48px 20px 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  }
  .footer-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 20px; justify-items: center; text-align: center; }
  .footer-social a { padding: 8px 0; }
  .footer-col ul li { margin-bottom: 14px; }
  .footer-col ul li a { font-size: 0.85rem; padding: 4px 0; display: inline-block; }

  /* ════════════════════════
     MODAL
  ════════════════════════ */
  .modal-overlay { align-items: flex-end; }
  .modal {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px 24px 36px;
    padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px));
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-logo svg { width: 120px; }
  .modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 12px;
    right: 12px;
    font-size: 1.1rem;
  }
  /* Tabs: touch targets maiores */
  .modal-tab { padding: 14px 0; font-size: 0.66rem; }
  /* Inputs do modal: previne zoom iOS */
  .modal .field input,
  .modal .field select {
    font-size: 16px;
    min-height: 48px;
    padding: 13px 14px;
  }
  .btn-submit { padding: 15px; min-height: 50px; }
  .btn-social { padding: 13px 16px; min-height: 50px; }
}

@media (max-width: 400px) {
  /* Header */
  .logo { width: 136px; height: auto; }

  /* Hero */
  .hero-title { font-size: clamp(1.8rem, 8.5vw, 2.2rem); }
  .hero-sub { font-size: 0.8rem; }

  /* Mobile nav */
  .mobile-nav-links a { font-size: 1.5rem; padding: 16px 0; }

  /* Sobre */
  .sobre-text { padding: 40px 20px 48px; }
  .stat-num { font-size: 2rem; }

  /* Diferenciais: 1 coluna em telas muito pequenas */
  .diferenciais-grid { grid-template-columns: 1fr; }
  .diferencial-card { padding: 28px 20px 24px; }

  /* Portfolio */
  .porto-item img { min-height: 140px; }

  /* Loja — stacking completo de preço + botão */
  .store-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .store-btn { width: 100%; text-align: center; padding: 13px; }
  .store-card-body { padding: 18px 18px 16px; }

  /* Agendamento */
  .agenda-form { padding: 28px 18px; }
  .agenda-form-title { font-size: 1.1rem; }

  /* Modal */
  .modal { padding: 36px 18px 28px; padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}

.ivy {
  font-family: "ivymode", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 18px;
}
.ivy em { font-style: normal; color: var(--gold-light); }

/* ══════════════════════════════════════
   LOJA — STORE GRID
══════════════════════════════════════ */
.store-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 52px;
  background: rgba(66,73,119,0.08);
  border: 1px solid var(--border);
  padding: 4px;
  max-width: 420px;
}

.store-tab {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.store-tab.active { background: var(--gold); color: var(--off-white); }
.store-tab:hover:not(.active) { color: var(--gold-light); }

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.store-card {
  background: rgba(66,73,119,0.08);
  border: 1px solid rgba(66,73,119,0.25);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

@media (hover: hover) {
  .store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(38,35,30,0.13);
    border-color: rgba(66,73,119,0.55);
  }
}

.store-card-destaque { border-color: var(--gold) !important; }

.store-badge-top {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 5px 18px;
  white-space: nowrap;
  z-index: 3;
}

.store-card-header {
  position: relative;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.store-header-essencial { background: linear-gradient(135deg, #2E3357 0%, #424977 50%, #6B72A8 100%); }
.store-header-premium   { background: linear-gradient(135deg, #3A1520 0%, #6B2D3E 55%, #8B3D52 100%); }
.store-header-black     { background: linear-gradient(135deg, #0E0C0A 0%, #26231E 60%, #38342E 100%); }
.store-header-corte     { background: linear-gradient(135deg, #1A1C2A 0%, #2E3357 55%, #424977 100%); }
.store-header-coloracao { background: linear-gradient(135deg, #2A1A0E 0%, #4A3020 55%, #6A4A30 100%); }
.store-header-spa       { background: linear-gradient(135deg, #0E1A18 0%, #1E3430 55%, #2E4E48 100%); }
.store-header-tratamento   { background: linear-gradient(135deg, #1A2A38 0%, #2A4458 55%, #3A5E78 100%); }
.store-header-progressiva  { background: linear-gradient(135deg, #2A1A0A 0%, #4A3018 55%, #6A4A28 100%); }
.store-header-penteado     { background: linear-gradient(135deg, #1E1A2A 0%, #382E4A 55%, #50446A 100%); }

.store-card-header-img {
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
}
.store-card-header-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,35,30,0.35), rgba(38,35,30,0.15));
  z-index: 0;
}

.store-card-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}

.store-card-icon {
  font-size: 1.9rem;
  position: relative;
  z-index: 1;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.store-card-body {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-card-name {
  font-family: 'ivymode', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.store-card-desc {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.store-card-items {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}

.store-card-items li {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(248,245,240,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(66,73,119,0.13);
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-card-items li::before {
  content: '◆';
  font-size: 0.34rem;
  color: var(--gold);
  flex-shrink: 0;
}

.store-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(66,73,119,0.18);
  margin-top: auto;
}

.store-card-price { display: flex; flex-direction: column; gap: 1px; }

.store-price-from {
  font-size: 0.56rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-price-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.store-price-period {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-left: 1px;
}

.store-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.store-btn:hover        { background: var(--gold); color: var(--off-white); }
.store-btn-dark         { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--off-white); }
.store-btn-dark:hover   { background: var(--gold); border-color: var(--gold); color: var(--off-white); }

.store-card.hidden { display: none; }

@media (max-width: 1024px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .store-grid        { grid-template-columns: 1fr; gap: 14px; }
  .store-card-header { height: 96px; }
  .store-card-body   { padding: 20px 20px 18px; }
  .store-card-name   { font-size: 1.2rem; }
  .store-btn         { padding: 10px 14px; font-size: 0.6rem; }
}

/* ══════════════════════════════════════
   WHATSAPP FLUTUANTE
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  z-index: 300;
  transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

@media (max-width: 700px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ══════════════════════════════════════
   STORE LOADING
══════════════════════════════════════ */
.store-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════ */
.admin-fab {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 300;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.32);
}
.admin-fab.visible { display: flex; }
@media (hover: hover) { .admin-fab:hover { background: var(--gold-dark); transform: scale(1.09); } }

.admin-drawer {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  pointer-events: none;
}
.admin-drawer.open { display: flex; pointer-events: all; }
.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38,35,30,0.6);
  backdrop-filter: blur(4px);
}
.admin-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: #1E1B17;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.admin-drawer.open .admin-panel { transform: translateX(0); }
.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
  flex-shrink: 0;
}
.admin-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.admin-panel-close {
  background: none; border: none;
  color: var(--muted); font-size: 1.1rem;
  cursor: pointer; padding: 4px 8px;
  transition: color 0.2s;
}
.admin-panel-close:hover { color: var(--gold); }
.admin-panel-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.admin-panel-tab {
  flex: 1; padding: 12px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.admin-panel-tab.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.admin-panel-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

.admin-product-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(66,73,119,0.2);
  margin-bottom: 7px;
  background: var(--surface);
}
.admin-product-icon { font-size: 1.3rem; flex-shrink: 0; }
.admin-product-info { flex: 1; min-width: 0; }
.admin-product-name {
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  font-weight: 500; color: var(--off-white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.admin-product-meta { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.admin-product-actions { display: flex; gap: 5px; flex-shrink: 0; align-items: center; }
.admin-btn-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer; font-size: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.admin-btn-icon:hover { background: var(--cream); border-color: var(--gold); }
.admin-btn-icon.danger:hover { background: rgba(239,68,68,0.15); border-color: #EF4444; }

.admin-toggle { position: relative; width: 34px; height: 19px; flex-shrink: 0; }
.admin-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.admin-toggle-slider {
  position: absolute; inset: 0;
  background: #C8C0B8; border-radius: 19px;
  cursor: pointer; transition: background 0.2s;
}
.admin-toggle-slider::before {
  content: ''; position: absolute;
  width: 13px; height: 13px;
  left: 3px; top: 3px;
  background: white; border-radius: 50%;
  transition: transform 0.2s;
}
.admin-toggle input:checked + .admin-toggle-slider { background: var(--gold); }
.admin-toggle input:checked + .admin-toggle-slider::before { transform: translateX(15px); }

.admin-form-section { margin-bottom: 16px; }
.admin-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 5px;
}
.admin-form-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
}
.admin-upload-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
}
.admin-upload-row .admin-btn-secondary {
  padding: 7px 12px;
  font-size: 0.6rem;
}
.admin-upload-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
}
.admin-upload-status.success { color: #3f7a4a; }
.admin-upload-status.error { color: #b3423a; }
.admin-form-input, .admin-form-select, .admin-form-textarea {
  width: 100%; padding: 9px 11px;
  border: 1px solid rgba(66,73,119,0.3);
  background: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; color: var(--off-white);
  outline: none; transition: border-color 0.2s;
}
.admin-form-input:focus, .admin-form-select:focus, .admin-form-textarea:focus {
  border-color: var(--gold); background: var(--cream);
}
.admin-form-textarea { resize: vertical; min-height: 72px; }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.admin-form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

.admin-incluso-list { list-style: none; margin-bottom: 7px; }
.admin-incluso-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(66,73,119,0.1);
  font-size: 0.76rem; color: var(--off-white);
}
.admin-incluso-item button {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: 0.75rem; padding: 0 4px;
  transition: color 0.2s; flex-shrink: 0;
}
.admin-incluso-item button:hover { color: #EF4444; }
.admin-incluso-add { display: flex; gap: 7px; }
.admin-incluso-add input {
  flex: 1; padding: 7px 10px;
  border: 1px solid rgba(66,73,119,0.3);
  background: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem; color: var(--off-white); outline: none;
}
.admin-incluso-add input:focus { border-color: var(--gold); }
.admin-incluso-add button {
  padding: 7px 12px; background: var(--gold);
  border: none; color: var(--off-white);
  font-size: 0.7rem; font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em; cursor: pointer;
  transition: background 0.2s;
}
.admin-incluso-add button:hover { background: var(--gold-light); }

.admin-form-actions {
  display: flex; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border); margin-top: 8px;
}
.admin-btn-primary {
  flex: 1; padding: 12px;
  background: var(--gold); border: none;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.admin-btn-primary:hover { background: var(--gold-light); }
.admin-btn-secondary {
  padding: 12px 18px;
  background: none; border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.admin-btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

.admin-empty { text-align: center; padding: 40px 16px; color: var(--muted); font-size: 0.8rem; line-height: 1.8; }

@media (max-width: 700px) {
  .admin-panel {
    width: 100vw; top: auto; border-left: none;
    border-top: 1px solid var(--border);
    height: 90dvh; border-radius: 14px 14px 0 0;
    transform: translateY(100%);
  }
  .admin-drawer.open .admin-panel { transform: translateY(0); }
  .admin-panel-body { padding: 18px 18px; }
  .admin-form-row { grid-template-columns: 1fr; }
  .admin-form-row-3 { grid-template-columns: 1fr 1fr; }
  .admin-fab { bottom: 82px; right: 16px; width: 44px; height: 44px; font-size: 1rem; }
}

/* ══════════════════════════════════════
   LOJA — PREVIEW & CTA BANNER
══════════════════════════════════════ */
.loja-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.loja-cta-banner {
  background: linear-gradient(105deg, #1E1B2A 0%, #2A2035 55%, #1E1B2A 100%);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, transparent 0%, #2E3357 15%, #6B72A8 50%, #2E3357 85%, transparent 100%) 1;
  padding: 44px 48px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.loja-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(66,73,119,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.loja-cta-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.loja-cta-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
}
.loja-cta-title {
  font-family: 'ivymode', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.loja-cta-title em { color: var(--gold-light); font-style: italic; }
.loja-cta-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
}
.loja-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.loja-cta-actions .btn-gold {
  min-width: 196px;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.7rem;
}
.loja-cta-actions .btn-outline {
  min-width: 196px;
  text-align: center;
  padding: 13px 24px;
  font-size: 0.7rem;
  color: var(--off-white);
  border-color: rgba(66,73,119,0.5);
}
@media (max-width: 700px) {
  .loja-preview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .loja-cta-banner {
    flex-direction: column;
    padding: 36px 24px;
    gap: 28px;
    text-align: center;
  }
  .loja-cta-actions {
    width: 100%;
  }
  .loja-cta-actions .btn-gold,
  .loja-cta-actions .btn-outline {
    min-width: unset;
    width: 100%;
    min-height: 50px;
  }
}
