/* ==========================================================================
   BIGODE DE OURO — Barbearia (adulto)
   Mesma arquitetura chapada do site infantil. O que muda: paleta (ouro e
   grafite no lugar do ciano), tipografia (slab vintage no lugar do cartoon)
   e o tom de voz.
   ========================================================================== */

:root {
  --ouro: #c49f4d;
  --ouro-claro: #e6c87e;
  --ouro-fundo: #9c7c33;
  --grafite: #292830;
  --grafite-fundo: #f6f4f0;   /* era o fundo escuro; virou o creme */
  --preto: #ffffff;           /* era o preto do hero e do rodape */
  --branco: #ffffff;
  --creme: #f6f4f0;
  --texto-claro: #55606c;
  --linha: rgba(41, 40, 48, 0.14);
  --linha-escura: rgba(41, 40, 48, 0.14);

  --display: "Alfa Slab One", Georgia, serif;
  --corpo: "Barlow", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--branco);
  color: var(--grafite);
  font-family: var(--corpo);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--ouro); color: var(--grafite); }

.env { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

.rotulo {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.9rem;
}
.rotulo.escuro { color: var(--ouro-fundo); }

.titulao {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 9vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--branco);
  color: var(--grafite);
  overflow: hidden;
}

/* Faixas diagonais douradas — o equivalente adulto das bolhas do site infantil */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(115deg,
      rgba(196, 159, 77, 0.14) 0 2px,
      transparent 2px 26px);
  pointer-events: none;
}

.hero-topo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem 0;
}
.hero-topo img { width: clamp(190px, 52vw, 320px); height: auto; }

.hero-corpo {
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 48rem;
  text-align: center;
}

.hero h1 { margin-bottom: 1rem; color: var(--grafite); }
.hero h1 .linha2 { display: block; color: var(--ouro); }

.hero-sub {
  font-size: clamp(0.95rem, 4vw, 1.12rem);
  font-weight: 600;
  color: var(--ouro-fundo);
  margin-bottom: 0.5rem;
}
.hero-frase {
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  font-style: italic;
  color: #55606c;
  max-width: 34rem;
  margin: 0 auto 1.9rem;
}
.hero .botoes { justify-content: center; }

.botoes { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--corpo);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  flex: 1 1 auto;
  min-width: 150px;
}
.btn:active { transform: scale(0.98); }

/* Sem cantos redondos: a marca adulta é reta, o infantil é que arredonda */
.btn-cheio { background: var(--ouro); color: var(--grafite); }
.btn-cheio:hover { background: var(--ouro-claro); }
.btn-vazio { border-color: rgba(41, 40, 48, 0.45); color: var(--grafite); }
.btn-vazio:hover { background: var(--grafite); color: var(--branco); }
.btn-escuro { background: var(--grafite); color: var(--branco); flex: 0 0 auto; }
.btn-escuro:hover { background: var(--ouro); color: var(--grafite); }

/* ==========================================================================
   NÚMEROS
   ========================================================================== */

.numeros { background: var(--branco); color: var(--grafite); padding: 2.4rem 0; }
.numeros-grade { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; text-align: center; }
.numeros b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 7.5vw, 2.4rem);
  line-height: 1;
  color: var(--ouro-fundo);
}
.numeros span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.35;
}

.faixa-insta { background: var(--branco); color: var(--grafite); padding: 0 0 2.6rem; text-align: center; }
.cartao-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--linha-escura);
  padding: 0.6rem 1.3rem 0.6rem 0.6rem;
  transition: border-color 0.2s ease;
}
.cartao-insta:hover { border-color: var(--ouro); }
.cartao-insta .disco {
  width: 38px; height: 38px; background: var(--grafite);
  display: grid; place-items: center; flex: none;
}
.cartao-insta .disco svg { width: 20px; height: 20px; fill: var(--ouro); }
.cartao-insta b { font-size: 0.95rem; font-weight: 700; }
.faixa-insta p {
  margin-top: 1rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9aa3ad;
}

/* ==========================================================================
   SEÇÕES
   ========================================================================== */

.secao { padding: 3.4rem 0; }
.secao-escura { background: var(--creme); color: var(--grafite); }
.secao-clara { background: var(--branco); color: var(--grafite); }
.secao-ouro { background: linear-gradient(165deg, #e6c87e 0%, #c49f4d 55%, #a8853a 100%); color: var(--grafite); }
.secao-ouro .rotulo { color: #5d451a; }
.secao-ouro .secao-intro { color: rgba(41, 40, 48, 0.8); }

.secao-intro { font-size: 1rem; color: #55606c; max-width: 34rem; margin-bottom: 2rem; }
.secao-clara .secao-intro { color: #55606c; }

.sobre-grade { display: grid; gap: 1.6rem; }
.sobre-foto { overflow: hidden; background: var(--grafite); aspect-ratio: 1 / 1; }
.sobre-foto img { width: 100%; height: 100%; object-fit: cover; }
.sobre-marca { background: var(--creme); border: 1px solid var(--linha); display: grid; place-items: center; padding: 14%; }
.sobre-marca img { width: 100%; height: auto; object-fit: contain; }

.sobre h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.sobre .cargo {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouro-fundo);
  margin-bottom: 0.9rem;
}
.sobre p { color: #55606c; margin-bottom: 0.9rem; }
.secao-clara .sobre p:last-child { margin-bottom: 0; }

.linhas-contato { border-top: 1px solid var(--linha); }
.linhas-contato a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0.2rem;
  border-bottom: 1px solid var(--linha);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.linhas-contato a:hover { color: var(--ouro); padding-left: 0.6rem; }
.linhas-contato svg { width: 17px; height: 17px; flex: none; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ==========================================================================
   GALERIA E VÍDEOS
   ========================================================================== */

.galeria { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.galeria figure { aspect-ratio: 3 / 4; overflow: hidden; background: var(--creme); }
.galeria img { width: 100%; height: 100%; object-fit: cover; }

.videos { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
.videos figure { aspect-ratio: 9 / 16; overflow: hidden; background: var(--creme); }
.videos video { width: 100%; height: 100%; object-fit: cover; display: block; }

.vazio {
  width: 100%; height: 100%;
  display: grid; place-content: center; gap: 0.5rem;
  text-align: center; padding: 1rem;
  border: 1px dashed rgba(41, 40, 48, 0.25);
  color: #8b95a1;
}
.secao-escura .vazio { border-color: rgba(41, 40, 48, 0.22); }
.vazio svg { width: 26px; height: 26px; margin: 0 auto; stroke: currentColor; fill: none; stroke-width: 1.6; }
.vazio b { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.vazio small { font-size: 0.66rem; line-height: 1.4; opacity: 0.8; }

/* ==========================================================================
   CLUBE — planos
   ========================================================================== */

.planos { display: grid; gap: 1.4rem; }
.plano {
  background: var(--branco);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(60, 44, 12, 0.2);
}
.plano-foto { aspect-ratio: 4 / 3; background: var(--creme); }
.plano-foto img { width: 100%; height: 100%; object-fit: cover; }
.plano-corpo { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.plano-etiqueta {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ouro-fundo);
}
.plano h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  line-height: 1.1; text-transform: uppercase; color: var(--grafite);
}
.plano-texto { color: #55606c; font-size: 0.95rem; }
.plano .btn { margin-top: 0.6rem; align-self: flex-start; flex: 0 0 auto; }
.plano .btn-cheio { background: var(--grafite); color: var(--branco); }
.plano .btn-cheio:hover { background: var(--ouro-fundo); }

/* ==========================================================================
   COLLAB
   ========================================================================== */

.collab { display: grid; gap: 1rem; align-items: center; justify-items: center; margin-bottom: 2rem; }
.collab-marca {
  width: 100%; padding: 2rem 1.5rem 1.4rem;
  display: grid; justify-items: center; gap: 1.1rem; text-align: center;
}
.collab-adulto { background: var(--creme); border: 1px solid var(--linha); }
.collab-infantil { background: #00b9f2; }
.collab-marca img { width: 100%; max-width: 210px; height: auto; }
.collab-marca p {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; line-height: 1.5; color: var(--branco);
}
.collab-adulto p { color: var(--grafite); }
.collab-marca p span { font-weight: 600; opacity: 0.7; letter-spacing: 0.12em; }
.collab-mais { font-family: var(--display); font-size: 2rem; color: var(--ouro-fundo); line-height: 1; }
.collab-texto { color: #55606c; max-width: 40rem; margin-bottom: 1.6rem; }

/* ==========================================================================
   LISTA MARCADA
   ========================================================================== */

.depoimento { font-size: clamp(1.05rem, 4.4vw, 1.25rem); font-weight: 600; line-height: 1.55; margin-bottom: 1.6rem; max-width: 38rem; }
.lista-marcada { list-style: none; display: grid; gap: 0.85rem; max-width: 38rem; }
.lista-marcada li { position: relative; padding-left: 1.9rem; font-size: 0.98rem; line-height: 1.5; }
.lista-marcada li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 0.85rem; height: 0.85rem;
  background: var(--grafite);
  transform: rotate(45deg);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.rodape { background: var(--creme); color: var(--grafite); padding: 3rem 0 2.4rem; text-align: center; border-top: 1px solid var(--linha); }
.rodape img { width: 190px; margin: 0 auto 1.4rem; }
.rodape h4 {
  font-family: var(--display); font-weight: 400; font-size: 1.15rem;
  text-transform: uppercase; margin-bottom: 0.7rem;
}
.rodape p { font-size: 0.85rem; color: #55606c; line-height: 1.7; }
.rodape .links {
  display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap;
  margin: 1.6rem 0 1.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.rodape .links a:hover { color: var(--ouro); }
.rodape .miudo { font-size: 0.66rem; color: #8b95a1; line-height: 1.7; }

.zap-flutua {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 50;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.zap-flutua:hover { transform: scale(1.08); }
.zap-flutua svg { width: 29px; height: 29px; fill: #fff; }

/* ==========================================================================
   DESKTOP
   ========================================================================== */

@media (min-width: 760px) {
  .secao { padding: 4.6rem 0; }
  .sobre-grade { grid-template-columns: 320px 1fr; align-items: center; gap: 2.6rem; }
  .galeria { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .videos { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .botoes .btn { flex: 0 0 auto; min-width: 190px; }
  .numeros-grade { gap: 2rem; }
  .planos { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .collab { grid-template-columns: 1fr auto 1fr; gap: 1.6rem; }
  .collab-marca { padding: 2.4rem 2rem 1.8rem; }
  .collab-mais { font-size: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
