/* ============================================================
   Studio R Barbearia — estilo base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --preto: #0a0a0a;
  --preto-suave: #121212;
  --carvao: #1c1c1c;
  --carvao-claro: #272727;
  --dourado: #ffffff;
  --dourado-claro: #ffffff;
  --creme: #ffffff;
  --creme-suave: rgba(255, 255, 255, 0.75);
  --texto-claro: #ffffff;
  --texto-secundario: rgba(255, 255, 255, 0.55);

  --fonte-titulo: "Archivo", "Arial Black", sans-serif;
  --fonte-corpo: "Jost", "Segoe UI", sans-serif;

  --container: 1180px;
}

body {
  margin: 0;
  background-color: var(--preto);
  color: var(--texto-claro);
  font-family: var(--fonte-corpo);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--fonte-titulo);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  color: var(--texto-claro);
  margin: 0 0 20px;
}

h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: 0.02em; }
h3 { font-weight: 700; letter-spacing: 0.02em; }

.linha-ouro {
  width: 64px;
  height: 3px;
  background: var(--dourado);
  margin: 0 auto 18px;
}
.linha-ouro.left { margin: 0 0 24px; }

p { color: var(--texto-secundario); font-weight: 300; margin: 0; }

.section { padding: 110px 0; }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--fonte-corpo);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  border: 1.5px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primario {
  background: linear-gradient(180deg, var(--dourado-claro), var(--dourado));
  color: #0a0a0a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.btn-primario:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45); }

.btn-outline {
  border: 2px solid var(--texto-claro);
  color: var(--texto-claro);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--texto-claro);
  color: #0a0a0a;
  background: var(--texto-claro);
  transform: translateY(-2px);
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(17, 17, 16, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.navbar-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.navbar-logo img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.navbar-nav a { color: rgba(255, 255, 255, 0.8); transition: color 0.25s ease; }
.navbar-nav a:hover { color: var(--dourado-claro); }

.navbar-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  border: 1.5px solid var(--dourado);
  color: var(--dourado-claro);
  transition: color 0.3s ease;
}
.navbar-cta-fundo {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--dourado-claro), var(--dourado));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}
.navbar-cta-texto { position: relative; z-index: 1; display: inline-flex; gap: 8px; }
.navbar-cta:hover .navbar-cta-fundo { transform: scaleX(1); }
.navbar-cta:hover { color: #0a0a0a; }

.navbar-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.navbar-menu span { width: 100%; height: 2px; background: var(--texto-claro); border-radius: 2px; }

.navbar-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.navbar-cta-mobile {
  display: none;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dourado-claro), var(--dourado));
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(17, 17, 16, 0.98);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  text-transform: uppercase;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.nav-mobile.aberto { display: flex; transform: translateY(0); }
.nav-mobile-cta {
  margin-top: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dourado-claro), var(--dourado));
  color: #0a0a0a;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .navbar-menu { display: flex; }
  .navbar-mobile-actions { display: flex; }
  .navbar-cta-mobile { display: inline-flex; }
  .navbar-grid { grid-template-columns: auto 1fr; }
  .navbar-mobile-actions { justify-self: end; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--preto);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-fundo { position: absolute; inset: -20px; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.1) brightness(0.62);
  transform: scale(1.08);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.15) 45%, rgba(8,8,8,0.85) 100%);
}

.hero-nome-gigante {
  position: absolute;
  left: 0;
  top: calc(61% + 10vh);
  transform: translateY(-42%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.hero-nome-texto {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(9rem, 22vw, 28rem);
  line-height: 1;
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 0.7px rgba(255, 255, 255, 0.16);
  will-change: transform;
}

.hero-conteudo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  text-align: center;
  box-sizing: border-box;
}

.linha-mask { overflow: hidden; display: block; }
.linha-conteudo { display: block; transform: translateY(100%); }

.hero-label {
  font-family: var(--fonte-corpo);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dourado-claro);
  margin-bottom: 20px;
}

.hero-conteudo h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  margin: 0;
  overflow-wrap: break-word;
}
.hero-titulo-destaque { color: var(--dourado-claro); }

.hero-rodape {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(24px, 4vh, 44px);
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
}
.hero-rodape-info {
  justify-self: start;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-rodape-instagram {
  justify-self: end;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}
.hero-rodape-instagram i { font-style: normal; margin-left: 4px; }
.hero-rodape-instagram:hover { color: var(--dourado); }

.hero-scroll { justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll-texto { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.hero-scroll-linha { width: 1px; height: 42px; background: rgba(255, 255, 255, 0.28); position: relative; overflow: hidden; }
.hero-scroll-linha::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--dourado);
  animation: escorrer 2.2s ease-in-out infinite;
}
@keyframes escorrer { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

.reveal { opacity: 0; }

/* ============================================================
   Experience — seção com scroll pinado
   ============================================================ */
.experience { position: relative; background: #0b0b0b; overflow: clip; }

.exp-stage {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #0b0b0b;
}

.exp-grid { display: block; height: 100%; }

.exp-intro, .exp-scene {
  position: absolute;
  inset: 0;
  min-width: 0;
  overflow: hidden;
}

.exp-intro {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(72px, 9vh, 112px) clamp(28px, 7vw, 120px) clamp(38px, 6vh, 70px);
  background: #111;
}

.exp-intro h2,
.exp-intro .exp-discover {
  position: relative;
  z-index: 2;
}

.exp-outro small, .exp-discover {
  font-size: clamp(0.58rem, 0.62vw, 0.72rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.exp-intro h2, .exp-copy h3, .exp-outro h2 {
  font-family: var(--fonte-titulo);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin: 0;
  overflow-wrap: break-word;
}

.exp-intro h2 { max-width: 920px; font-size: clamp(3.5rem, 4.6vw, 5.5rem); letter-spacing: -0.035em; }
.exp-intro h2 span { color: var(--dourado-claro); }

.exp-intro-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.exp-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.5);
}
.exp-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.25) 40%, rgba(8,8,8,0.85) 100%);
}

.exp-discover { display: flex; align-items: center; gap: 14px; color: rgba(255, 255, 255, 0.45); }
.exp-discover i { position: relative; display: block; width: 1px; height: 42px; background: rgba(255, 255, 255, 0.28); }
.exp-discover i::after {
  content: ""; position: absolute; left: 50%; bottom: -4px; width: 7px; height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 50%; transform: translateX(-50%);
}

.exp-scene { z-index: 3; background: #151515; will-change: clip-path; clip-path: inset(0 100% 0 0); }

.exp-media, .exp-media::after { position: absolute; inset: 0; }
.exp-media { z-index: 0; display: grid; place-items: center; background: #0b0b0b; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; will-change: transform; }
.exp-media picture { display: block; width: 100%; height: 100%; }

/* ===== Enquadramento sem corte (fundo desfocado + foto inteira visível) =====
   Só no desktop (min-width 761px): quando a foto é vertical e a cena é muito
   mais larga que alta, em vez de "cover" cortar rosto/mãos, a própria imagem
   borrada preenche as laterais e a foto original aparece inteira, sem zoom
   e sem deformar. No mobile fica exatamente como já era (cover normal). */
.exp-media-fundo { display: none; }

@media (min-width: 761px) {
  /* Moldura cinematográfica centralizada para as fotos horizontais. */
  .exp-scene:has(.exp-media-horizontal) {
    background: #050505;
  }
  .exp-media-horizontal {
    inset: 50% auto auto 50%;
    width: min(92vw, calc(78svh * 1.916));
    height: 78svh;
    transform: translate(-50%, -50%);
    overflow: hidden;
  }
  .exp-media-horizontal picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .exp-media-horizontal img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .exp-cuidado .exp-media-horizontal,
  .exp-tecnica .exp-media-horizontal,
  .exp-precisao .exp-media-horizontal {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .exp-media-enquadrado { position: absolute; inset: 0; overflow: hidden; }
  .exp-media-enquadrado .exp-media-fundo {
    display: block;
    position: absolute; inset: -5%;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.42) saturate(1.15);
    transform: scale(1.1);
  }
  .exp-media-enquadrado img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
  }
}
.exp-media::after {
  content: ""; z-index: 1;
  background: linear-gradient(180deg, rgba(5,5,5,0.1) 30%, rgba(5,5,5,0.82) 100%);
  pointer-events: none;
}

.exp-copy {
  position: absolute;
  left: clamp(28px, 6vw, 110px);
  right: auto;
  bottom: clamp(48px, 9vh, 110px);
  max-width: 620px;
  z-index: 5;
  isolation: isolate;
}
.exp-copy > p { opacity: 0; }
.exp-copy .exp-mask { display: none; }
.exp-copy-alto { top: clamp(110px, 17vh, 180px); bottom: auto; }
.exp-copy-direita { left: auto; right: clamp(38px, 7vw, 120px); text-align: right; }

.exp-mask { position: relative; z-index: 2; overflow: hidden; }
.exp-copy h3 { position: relative; z-index: 1; display: block; font-size: clamp(3.4rem, 7.5vw, 9rem); letter-spacing: -0.035em; }
.exp-copy p { max-width: 340px; margin-top: 10px; font-size: clamp(0.72rem, 0.9vw, 0.95rem); line-height: 1.5; color: rgba(255, 255, 255, 0.68); }
.exp-copy-direita p { margin-left: auto; }

.exp-outro {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
  background: #0b0b0b;
  visibility: hidden; opacity: 0;
}
.exp-outro h2 { margin: 22px 0; font-size: clamp(3.5rem, 8.4vw, 9rem); letter-spacing: -0.055em; }
.exp-outro p { font-size: 0.82rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.62); }
.exp-outro small { position: absolute; bottom: 38px; color: rgba(255, 255, 255, 0.42); }

@media (min-width: 761px) and (max-width: 1024px) {
  .exp-intro h2 { font-size: clamp(2.4rem, 6vw, 3.7rem); }
}

@media (max-width: 760px) {
  .exp-stage { min-height: 560px; }
  .exp-intro { padding: 88px 24px 36px; }
  .exp-intro h2 { font-size: clamp(1.65rem, 8.5vw, 4.5rem); }
  .exp-copy, .exp-copy-alto, .exp-copy-direita {
    top: auto; left: 24px; right: 24px; bottom: 66px; width: auto; text-align: left; max-width: none;
  }
  .exp-copy h3 { font-size: clamp(2.2rem, 12vw, 4.2rem); }
}

/* ============================================================
   Equipe
   ============================================================ */
.equipe { background: var(--preto-suave); text-align: center; }
.equipe-intro { max-width: 560px; margin: 0 auto; }

.equipe-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.barbeiro-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--carvao);
  border: 2px solid transparent;
  isolation: isolate;
  transition: border-color 0.3s ease;
}
.barbeiro-card:hover { border-color: var(--texto-claro); }

.barbeiro-foto { position: absolute; inset: 0; }
.barbeiro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08);
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.barbeiro-card:hover .barbeiro-foto img { transform: scale(1.08); }

.barbeiro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.95) 100%);
  pointer-events: none;
}

.barbeiro-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(16px, 2vw, 26px);
}

.barbeiro-card h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.05;
  margin-bottom: 7px;
}
.barbeiro-cargo {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--texto-secundario);
  margin-bottom: 14px;
}
.barbeiro-card a {
  display: inline-flex;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texto-claro);
  border-bottom: 1px solid var(--texto-claro);
  padding-bottom: 2px;
}
@media (max-width: 900px) {
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
}
.equipe-slide-hint { display: none; }
@media (max-width: 560px) {
  .equipe-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin: 40px -24px 0;
    padding: 4px 24px 10px;
    cursor: grab;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    user-select: none;
  }
  .equipe-grid.arrastando {
    cursor: grabbing;
    scroll-snap-type: none;
  }
  .equipe-grid::-webkit-scrollbar { display: none; }
  .barbeiro-card {
    flex: 0 0 82%;
    aspect-ratio: 3 / 4;
    scroll-snap-align: center;
  }
  .equipe-slide-hint {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--texto-secundario);
    margin-top: 18px;
  }
}

/* ============================================================
   Fundador
   ============================================================ */
.fundador {
  position: relative;
  background: var(--preto);
  overflow: hidden;
  padding: 100px 0;
}

.fundador-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
}

.fundador-foto {
  position: relative;
  align-self: center;
  justify-self: start;
  max-width: 540px;
  width: 100%;
  margin-left: clamp(-40px, -4vw, 0px);
}
.fundador-foto img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.08);
}

.fundador-conteudo { padding-bottom: 30px; }

.fundador-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: 20px;
}
.fundador-eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--dourado);
}

.fundador-conteudo h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 30px;
}
.fundador-conteudo h2 span {
  display: block;
  background: linear-gradient(120deg, var(--dourado-claro), var(--texto-claro) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fundador-quote {
  position: relative;
  margin: 0 0 34px;
  padding-left: 28px;
  border-left: 5px solid var(--texto-claro);
  font-family: var(--fonte-corpo);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--creme);
  max-width: 580px;
}
.fundador-quote strong { color: var(--texto-claro); font-weight: 700; }

.fundador-assinatura {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fundador-assinatura img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--texto-claro);
  padding: 2px;
}
.fundador-assinatura div { display: flex; flex-direction: column; }
.fundador-assinatura strong { font-size: 0.92rem; letter-spacing: 0.01em; color: var(--texto-claro); }
.fundador-assinatura span { font-size: 0.76rem; color: var(--texto-secundario); }

.fundador-contatos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.fundador-contatos .btn svg { width: 17px; height: 17px; flex-shrink: 0; }

@media (max-width: 860px) {
  .fundador { padding: 70px 0; }
  .fundador-grid { grid-template-columns: 1fr; gap: 20px; }
  .fundador-foto { max-width: 280px; margin: 0 auto; }
  .fundador-conteudo { text-align: left; padding-bottom: 0; }
}

/* ============================================================
   Contato / Unidades
   ============================================================ */
.contato { background: var(--preto-suave); text-align: center; }

/* ============================================================
   App Studio R — experiência cinematográfica
   Namespace .sr-app-* isolado, não afeta nada fora dele.
   ============================================================ */
.sr-app-experience { position: relative; background: var(--preto); overflow: hidden; }
.sr-app-pin {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  perspective: 1600px;
}

.sr-app-grade-fundo {
  position: absolute; inset: 0; z-index: 0;
  background-size: 56px 56px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 68%);
}

.sr-app-intro {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; transform-style: preserve-3d;
}
.sr-app-eyebrow {
  font-family: var(--fonte-corpo); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.sr-app-intro-titulo {
  font-family: var(--fonte-titulo); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5.6rem); line-height: 1.03; margin: 0; letter-spacing: -0.02em;
}
.sr-app-intro-titulo span {
  display: block;
  text-shadow: 0 18px 40px rgba(255,255,255,0.08);
}
.sr-app-intro-titulo .sr-app-destaque {
  background: linear-gradient(180deg, #ffffff 0%, #8a8a8a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transform: translateZ(0);
}

.sr-app-panel { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; }
.sr-app-painel-card {
  position: relative;
  width: min(1200px, 94vw);
  height: min(760px, 88vh);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(150deg, #232323 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 50px 110px -20px rgba(0,0,0,0.85),
    0 20px 46px -18px rgba(0,0,0,0.7),
    inset 0 1px 1px rgba(255,255,255,0.08),
    inset 0 -2px 6px rgba(0,0,0,0.7);
}
.sr-app-painel-sheen {
  position: absolute; inset: 0; z-index: 10; pointer-events: none; border-radius: inherit;
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.07), transparent 45%);
  mix-blend-mode: screen;
}
.sr-app-marca-gigante {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1; font-family: var(--fonte-titulo); font-weight: 900; text-transform: uppercase;
  font-size: clamp(6rem, 22vw, 20rem); color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  white-space: nowrap; pointer-events: none; user-select: none;
}

.sr-app-conteudo {
  position: relative; z-index: 2; width: 100%; height: 100%;
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 32px;
}

.sr-app-lateral h3 {
  font-family: var(--fonte-titulo); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem); line-height: 1.08; margin: 0 0 16px;
  background: linear-gradient(180deg, #fff 0%, #a8a8a8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sr-app-lateral p { max-width: 340px; font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 0 0 26px; }

.sr-app-stat { display: flex; align-items: baseline; gap: 8px; }
.sr-app-stat-num { font-family: var(--fonte-titulo); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; }
.sr-app-stat-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

.sr-app-phone-cena { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; }
.sr-app-phone-wrap { position: relative; transform-style: preserve-3d; }
.sr-app-phone-wrap::after {
  content: ""; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  width: 60%; height: 30px; border-radius: 50%; background: radial-gradient(closest-side, rgba(0,0,0,0.5), transparent 75%);
  filter: blur(8px); z-index: -1; pointer-events: none;
}
.sr-app-phone-foto {
  position: relative; display: block; width: 460px; height: auto;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.75)) drop-shadow(0 14px 26px rgba(0,0,0,0.55));
  transform-style: preserve-3d; will-change: transform; -webkit-user-drag: none; user-select: none;
}

.sr-app-card {
  position: absolute; width: 194px; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.015) 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 24px 44px -14px rgba(0,0,0,0.75), inset 0 1px 1px rgba(255,255,255,0.15);
}
.sr-app-card svg { width: 18px; height: 18px; flex-shrink: 0; color: #fff; }
.sr-app-card strong { display: block; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; }
.sr-app-card small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 1px; }

.sr-app-card-1 { top: 26px; left: -112px; }
.sr-app-card-2 { top: 224px; right: -134px; }
.sr-app-card-3 { bottom: 36px; left: -98px; }

.sr-app-cta { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.sr-app-cta h2 {
  font-family: var(--fonte-titulo); font-weight: 900; text-transform: uppercase; font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08; margin: 0 0 20px;
  background: linear-gradient(180deg, #fff 0%, #9a9a9a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sr-app-cta p { max-width: 460px; font-size: 0.95rem; color: rgba(255,255,255,0.55); margin: 0 0 36px; }

.sr-app-badges { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.sr-app-badge {
  display: inline-flex; align-items: center; gap: 11px; padding: 14px 26px; border-radius: 18px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; transition: transform 0.35s cubic-bezier(.25,1,.5,1), box-shadow 0.35s ease;
}
.sr-app-badge svg { width: 24px; height: 24px; }
.sr-app-badge-texto span { display: block; }
.sr-app-badge-kicker { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; margin-bottom: 1px; }
.sr-app-badge-nome { font-size: 0.95rem; font-weight: 700; line-height: 1; }

.sr-app-badge-clara {
  background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 100%); color: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.15), 0 14px 26px -6px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,1);
}
.sr-app-badge-clara:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 8px 16px -2px rgba(0,0,0,0.2), 0 22px 36px -8px rgba(0,0,0,0.45), inset 0 1px 1px rgba(255,255,255,1); }
.sr-app-badge-clara:active { transform: translateY(1px); }

.sr-app-badge-escura {
  background: linear-gradient(180deg, #232323 0%, #101010 100%); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.6), 0 14px 26px -6px rgba(0,0,0,0.85), inset 0 1px 1px rgba(255,255,255,0.12);
}
.sr-app-badge-escura:hover { transform: translateY(-3px); background: linear-gradient(180deg, #2c2c2c 0%, #161616 100%); box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 8px 16px -2px rgba(0,0,0,0.7), 0 22px 36px -8px rgba(0,0,0,1), inset 0 1px 1px rgba(255,255,255,0.16); }
.sr-app-badge-escura:active { transform: translateY(1px); }

@media (max-width: 980px) {
  .sr-app-conteudo { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 0 28px; }
  .sr-app-lateral p { margin: 0 auto 20px; }
  .sr-app-stat { justify-content: center; }
  .sr-app-painel-card { height: min(860px, 92vh); }
}
@media (max-width: 760px) {
  .sr-app-pin { min-height: 760px; height: auto; padding: 60px 0; perspective: 900px; }
  .sr-app-lateral { display: none; }
  .sr-app-painel-card { width: 100%; height: 100%; border-radius: 0; border-left: none; border-right: none; }
  .sr-app-conteudo { padding: 0 16px; }
  .sr-app-phone-foto { width: 380px; max-width: 90vw; }

  .sr-app-phone-cena { flex-direction: column; perspective: 800px; }
  .sr-app-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; transform-style: preserve-3d; }
  .sr-app-card { position: static; width: 100%; max-width: 250px; padding: 10px 14px; }
  .sr-app-card strong { font-size: 0.6rem; }
  .sr-app-card small { font-size: 0.64rem; }
  .sr-app-marca-gigante { font-size: 24vw; }
}

.unidades-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.unidade-card {
  position: relative;
  background: var(--carvao);
  border: 2px solid var(--texto-claro);
  border-radius: 4px;
  padding: 40px 30px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}
.unidade-card:hover { transform: translateY(-6px); background: var(--texto-claro); }

.unidade-card h3 {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--texto-claro);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.unidade-card:hover h3 { color: #0a0a0a; }

.unidade-endereco { color: var(--texto-claro); font-size: 0.95rem; margin-bottom: 6px; font-weight: 500; transition: color 0.3s ease; }
.unidade-telefone { font-size: 0.85rem; margin-bottom: 26px; transition: color 0.3s ease; }
.unidade-card:hover .unidade-endereco,
.unidade-card:hover .unidade-telefone { color: #0a0a0a; }

.unidade-card .btn { width: 100%; justify-content: center; }
.unidade-card:hover .btn-outline { border-color: #0a0a0a; color: #0a0a0a; }
.unidade-card:hover .btn-outline:hover { background: #0a0a0a; color: var(--texto-claro); }
.unidade-card:hover .btn-primario { background: #0a0a0a; color: var(--texto-claro); box-shadow: none; }

/* ============================================================
   Footer
   ============================================================ */
.rodape { background: var(--preto); padding: 70px 0; }

.rodape-hover {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: var(--carvao);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.rodape-hover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(125% 125% at 50% 0%, rgba(15, 15, 17, 0) 45%, rgba(255, 255, 255, 0.08) 100%);
}
.rodape-hover-conteudo { position: relative; z-index: 2; padding: 70px 48px 40px; }

.rodape-hover-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.rodape-hover-grid-3 { grid-template-columns: 1.3fr 1fr 1fr; }
@media (max-width: 900px) { .rodape-hover-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .rodape-hover-grid { grid-template-columns: 1fr; }
  .rodape-hover-conteudo { padding: 50px 24px 30px; }
  .rodape-hover { width: calc(100% - 24px); border-radius: 20px; }
}

.rodape-hover-marca { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rodape-hover-marca img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.rodape-hover-marca span { font-family: var(--fonte-titulo); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; }
.rodape-hover-tagline { font-size: 0.85rem; line-height: 1.6; max-width: 260px; }

.rodape-hover-titulo { font-family: var(--fonte-corpo); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--texto-claro); margin-bottom: 18px; }
.rodape-hover-lista { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.rodape-hover-lista a { font-size: 0.88rem; color: var(--texto-secundario); transition: color 0.25s ease; }
.rodape-hover-lista a:hover { color: var(--dourado-claro); }

.rodape-hover-contato { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--texto-secundario); }
.rodape-hover-contato svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--dourado-claro); }
.rodape-hover-contato a { color: inherit; transition: color 0.25s ease; }
.rodape-hover-contato a:hover { color: var(--dourado-claro); }

.rodape-hover-linha { border: none; border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 0; }

.rodape-hover-base { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding-top: 28px; }
.rodape-hover-social { display: flex; gap: 22px; }
.rodape-hover-social a { color: var(--texto-secundario); transition: color 0.25s ease; }
.rodape-hover-social a:hover { color: var(--dourado-claro); }
.rodape-hover-copy { font-size: 0.78rem; color: var(--texto-secundario); }

.rodape-hover-texto { position: relative; z-index: 1; height: 220px; margin-top: -30px; }
@media (max-width: 760px) {
  .rodape-hover-texto { height: 160px; margin-top: -8px; }
  .texto-base, .texto-desenho, .texto-revela { font-size: 7.6rem; }
  .texto-base { opacity: 0.4; stroke-width: 0.6; }
  .texto-desenho { stroke-width: 0.6; }
  .texto-revela { mask: none; stroke-width: 0.7; }
}
@media (max-width: 480px) { .rodape-hover-texto { height: 128px; } }
.rodape-hover-texto svg { width: 100%; height: 100%; cursor: pointer; user-select: none; }
.texto-base {
  fill: transparent; stroke: rgba(255, 255, 255, 0.12); stroke-width: 0.4;
  font-family: var(--fonte-titulo); font-weight: 900; font-size: 5.5rem; text-transform: uppercase;
  opacity: 0; transition: opacity 0.4s ease;
}
.rodape-hover-texto.ativo .texto-base { opacity: 1; }
.texto-desenho {
  fill: transparent; stroke: rgba(255, 255, 255, 0.4); stroke-width: 0.4;
  font-family: var(--fonte-titulo); font-weight: 900; font-size: 5.5rem; text-transform: uppercase;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.rodape-hover-texto.desenhado .texto-desenho { animation: rodapeDesenhar 3.2s ease-in-out forwards; }
@keyframes rodapeDesenhar { to { stroke-dashoffset: 0; } }
.texto-revela {
  fill: transparent; stroke: url(#rhGradiente); stroke-width: 0.4;
  font-family: var(--fonte-titulo); font-weight: 900; font-size: 5.5rem; text-transform: uppercase;
  mask: url(#rhMascara);
}

/* ===== Ícones automáticos: Instagram, Facebook e localização ===== */
a[href*="instagram.com"]:not(.btn),
a[href*="facebook.com"]:not(.btn),
.unidade-endereco {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

a[href*="instagram.com"]:not(.btn)::before,
a[href*="facebook.com"]:not(.btn)::before,
.unidade-endereco::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

a[href*="instagram.com"]:not(.btn)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.3' cy='6.7' r='0.6' fill='%23000' stroke='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.3' cy='6.7' r='0.6' fill='%23000' stroke='none'/%3E%3C/svg%3E");
}

a[href*="facebook.com"]:not(.btn)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M14 9h3V5.6c-.5-.07-1.6-.16-2.8-.16-2.8 0-4.7 1.7-4.7 4.9V13H6.7v3.8H9.5V23h3.8v-6.2h3l.5-3.8h-3.5v-2.7c0-1.1.3-1.9 1.7-1.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M14 9h3V5.6c-.5-.07-1.6-.16-2.8-.16-2.8 0-4.7 1.7-4.7 4.9V13H6.7v3.8H9.5V23h3.8v-6.2h3l.5-3.8h-3.5v-2.7c0-1.1.3-1.9 1.7-1.9z'/%3E%3C/svg%3E");
}

.unidade-endereco::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8'%3E%3Cpath d='M12 21s7-7.2 7-12a7 7 0 0 0-14 0c0 4.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8'%3E%3Cpath d='M12 21s7-7.2 7-12a7 7 0 0 0-14 0c0 4.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

/* ============================================================
   Página de unidade — hero com foto estática, tabela de
   preços e link de volta para o site principal
   ============================================================ */
.navbar-inicio {
  display: flex;
  align-items: center;
  gap: 16px;
}

.voltar-unidades {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.voltar-unidades:hover { color: var(--dourado-claro); border-color: var(--dourado); background: rgba(255, 255, 255, 0.1); }

.hero-fundo-img {
  position: absolute; inset: -20px;
  overflow: hidden;
}
.hero-fundo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.1) brightness(0.6);
  transform: scale(1.08);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}

@media (max-width: 900px) {
  .navbar-inicio { gap: 10px; }
  .voltar-unidades { padding: 7px 12px; font-size: 0.64rem; }
}

@media (max-width: 480px) {
  .hero-conteudo h1 { font-size: clamp(1.5rem, 7.6vw, 2.6rem); }
}

@media (max-width: 640px) {
  .navbar-grid { gap: 14px; }
  .voltar-unidades { padding: 6px 10px; gap: 4px; }
  .voltar-unidades .voltar-opcional { display: none; }
  .navbar-inicio .navbar-logo span { display: none; }
  .navbar-mobile-actions { gap: 8px; }
  .navbar-cta-mobile { padding: 8px 12px; font-size: 0.62rem; }
}
