/* ============================================================
   BARBEARIA DO VITINHO — CSS
   Design: Dark Premium + Gold Accent | Freestyle Urban
   ============================================================ */

/* ─── Custom Fonts ─── */
@font-face {
  font-family: 'Onstreet';
  src: url('../brand_assets/Onstreet.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GraffitiStyle';
  src: url('../brand_assets/GraffitiStyle-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aerosoldier';
  src: url('../brand_assets/Aerosoldier_PERSONAL_USE_ONLY.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00D6, U+00D8-00F6, U+00F8-00FF, U+0100-024F;
}
@font-face {
  font-family: 'DirtyLizard';
  src: url('../brand_assets/Dirty lizard.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00D6, U+00D8-00F6, U+00F8-00FF, U+0100-024F;
}
@font-face {
  font-family: 'CrustyGraffiti';
  src: url('../brand_assets/Crusty Graffiti Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* Apenas letras — números e emojis usam a fonte padrão */
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00D6, U+00D8-00F6, U+00F8-00FF, U+0100-024F;
}
@font-face {
  font-family: 'Nossible';
  src: url('../brand_assets/Nossible.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* Apenas letras — números e emojis usam a fonte padrão */
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00D6, U+00D8-00F6, U+00F8-00FF, U+0100-024F;
}

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

:root {
  --black:    #080808;
  --bg:       #0e0e0e;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --border:   rgba(255,255,255,0.07);
  --gold:     #c9a84c;
  --gold-lt:  #e2c470;
  --gold-dk:  #9e7c2e;
  --white:    #f5f5f5;
  --gray:     #888;
  --gray-lt:  #aaa;
  --red:      #c0392b;
  --font-head: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w:    1200px;
  --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Utilities ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dk);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.gold-tag { background: rgba(201,168,76,0.08); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub { color: var(--gray-lt); font-size: 17px; max-width: 480px; margin: 0 auto; }

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: 'Sedgwick Ave Display', var(--font-head);
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,255,255,0.18);
}
.logo-sub {
  font-family: 'Oswald', var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(201, 167, 77, 0.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(243, 240, 232, 0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-lt); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #080808;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
  animation: hero-float 11s ease-in-out infinite;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.15s ease-out;
}
@keyframes hero-float {
  0%   { transform: scale(1.04) translateY(0px); }
  50%  { transform: scale(1.06) translateY(-14px); }
  100% { transform: scale(1.04) translateY(0px); }
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 65% at 50% 48%, rgba(201,167,77,0.07) 0%, transparent 68%);
  animation: hero-glow-pulse 7s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.0)  50%,
    rgba(0,0,0,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 3px;
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 60px;
  padding: 18px 36px;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; color: var(--gray); text-transform: uppercase; }
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.5); }
}

/* ─── TICKER ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-belt 28s linear infinite;
}
.ticker-set {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px; /* equals one gap — makes both sets identical in width */
}
.ticker-set span {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-set .dot { font-size: 10px; opacity: 0.6; }
@keyframes ticker-belt {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ─── SOBRE ─── */
.sobre { padding: 120px 0; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg3);
}
.sobre-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sobre-img-wrap:hover .sobre-img { transform: none; }
.sobre-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  pointer-events: none;
}
/* fallback when no image */
.sobre-img-wrap.no-img {
  background: linear-gradient(135deg, #1a1209, #2a1f08);
}
.sobre-img-wrap.no-img::after {
  content: 'VITINHO\ABARBER';
  white-space: pre;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 60px;
  letter-spacing: 4px;
  color: rgba(201,168,76,0.2);
  text-align: center;
  line-height: 1.1;
}
.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1;
}
.badge-txt { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-align: center; line-height: 1.3; }
.sobre-text .section-title { margin-bottom: 24px; }
.sobre-desc { color: var(--gray-lt); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.sobre-features { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-dk);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item strong { display: block; font-size: 15px; color: var(--white); }
.feature-item span { font-size: 13px; color: var(--gray); }

/* ─── SERVIÇOS ─── */
.servicos { padding: 120px 0; background: var(--bg2); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a1f08);
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.06); }
.card-img-wrap.no-img { background: linear-gradient(135deg, #181308, #261c07); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.card-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-head);
  font-size: 36px;
  color: rgba(201,168,76,0.2);
  letter-spacing: 2px;
  line-height: 1;
}
.card-body { padding: 24px; }
.card-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-dk);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.card-icon svg { width: 20px; height: 20px; }
.card-title {
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.card-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.card-price { font-size: 13px; color: var(--gray-lt); margin-bottom: 20px; }
.card-price strong { color: var(--gold); font-size: 18px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.card-link:hover { gap: 12px; }
.card-cta {
  background: linear-gradient(135deg, #1a1209, #261c07);
  border-color: var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-cta-inner {
  padding: 36px 28px;
  text-align: center;
}
.card-cta .cta-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.card-cta h3 {
  font-family: var(--font-head);
  font-size: 34px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.card-cta p { font-size: 14px; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }

/* ─── CURSO ─── */
/* ─── SORTEIO ─── */
.sorteio {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.sorteio-bg {
  position: absolute;
  inset: 0;
  background-image: url('../brand_assets/sorteio-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sorteio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}
.sorteio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.sorteio-content {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 44px 48px;
}
.sorteio-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 68px);
  letter-spacing: 2px;
  line-height: 1.0;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.sorteio-desc {
  font-size: 19px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 14px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.sorteio-extra {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.sorteio-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sorteio-media {
  display: flex;
  justify-content: center;
}
.sorteio-video-wrap {
  width: 380px;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.08);
  background: #111;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sorteio-video-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
}
.sorteio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── GALERIA ─── */
.galeria { padding: 120px 0; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gal-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
}
.gal-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item.no-img {
  background: linear-gradient(135deg, #181308, #261c07);
}
.gal-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gal-hover span {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover .gal-hover { opacity: 1; }
.gal-item:hover .gal-hover span { transform: translateY(0); }

/* ─── DEPOIMENTOS ─── */
.depoimentos { padding: 100px 0; background: var(--bg2); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.dep-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}
.dep-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.dep-card p {
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-avatar {
  width: 44px; height: 44px;
  background: var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.dep-author strong { display: block; font-size: 14px; color: var(--white); }
.dep-author span { font-size: 12px; color: var(--gray); }

/* ─── CONTATO ─── */
.contato {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.contato-bg {
  position: absolute;
  inset: 0;
  background-image: url('../brand_assets/barbearia-vitinho-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contato-bg img { display: none; }
.contato-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.contato-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contato-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}
.contato-text p { font-size: 17px; color: var(--gray-lt); margin-bottom: 36px; }
.contato-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.7;
}
.info-item strong { color: var(--white); display: block; margin-bottom: 2px; font-size: 13px; letter-spacing: 0.5px; }
.info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info-item--link { text-decoration: none; transition: color 0.2s; }
.info-item--link:hover { color: var(--white); }
.info-item--link:hover svg { color: var(--gold-lt); }
.contato-map {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  filter: grayscale(60%) brightness(0.85);
  transition: filter 0.3s;
}
.contato-map:hover { filter: grayscale(20%) brightness(1); }
.contato-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
.footer { padding: 60px 0 30px; background: var(--black); border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; flex-direction: column; gap: 8px; }
.footer-logo-img { height: 64px; width: auto; border-radius: 10px; object-fit: contain; opacity: 0.85; transition: opacity 0.2s; }
.footer-logo-img:hover { opacity: 1; }
.footer-logo p { font-size: 12px; color: var(--gray); letter-spacing: 1px; }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ─── Custom Clipper Cursor (desktop/mouse only) ─── */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url('../brand_assets/clipper-cursor.png') 4 4, auto;
  }
  a, button, [role="button"],
  .btn, .btn-whatsapp, .card-link,
  .nav-link, .nav-cta, .nav-logo,
  .gal-item, .dep-card, .social-link,
  .info-item--link, .sorteio-video-wrap,
  .footer-links a {
    cursor: url('../brand_assets/clipper-cursor.png') 4 4, pointer;
  }
  input, textarea, [contenteditable] {
    cursor: text;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap { aspect-ratio: 16/9; max-height: 420px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .sorteio-grid { grid-template-columns: 1fr; gap: 48px; }
  .sorteio-media { order: -1; }
  .sorteio-video-wrap { width: 300px; }
  .sorteio-content { padding: 32px 28px; }
  .phone-frame { width: 220px; }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px; height: 100vh; background: #0e0e0e; padding: 80px 32px 40px; transition: right 0.4s ease; border-left: 1px solid var(--border); }
  .nav-links.open { right: 0; display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-link { display: block; padding: 18px 0; font-size: 15px; color: var(--white); }
  .nav-cta { background: transparent; color: var(--gold) !important; padding: 18px 0; border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 36px; }
  .logo-main { font-size: 22px; letter-spacing: 0.5px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content { padding: 0 20px; }
  .hero-scroll { display: none; }
  .servicos-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-large { grid-column: span 2; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-stats { bottom: 28px; padding: 14px 16px; border-radius: 40px; }
  .stat { padding: 0 14px; }
  .stat-divider { display: block; }
  .sorteio-video-wrap { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .sorteio-actions { justify-content: center; }
  .contato-actions .btn-outline, .contato-actions .btn-gold { width: 100%; justify-content: center; }
}

/* ─── Nossible Font — Sorteio ─── */
.sorteio-title {
  font-family: 'Nossible', var(--font-head), sans-serif;
}

/* ─── Dirty Lizard Font — Serviços Premium ─── */
.servicos .section-header .section-title {
  font-family: 'DirtyLizard', var(--font-head), sans-serif;
}

/* ─── Crusty Graffiti Font — Demais Títulos ─── */
.sobre-text .section-title,
.galeria .section-header .section-title,
.depoimentos .section-header .section-title,
.contato-title {
  font-family: 'CrustyGraffiti', var(--font-head), sans-serif;
}

/* ─── Language Toggle ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  position: relative;
  z-index: 200;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  color: var(--gold);
  padding: 7px 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.45);
}

.lang-flag { font-size: 15px; line-height: 1; }

.lang-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.lang-toggle.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 6px;
  min-width: 155px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 300;
}

.lang-toggle.open .lang-dropdown {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
  width: 100%;
}

.lang-option:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.lang-option.active {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .lang-btn { padding: 6px 9px; font-size: 11px; gap: 4px; }
  .lang-flag { font-size: 13px; }
  .lang-code { display: none; }
}

/* ===== CARD VISUAL (sem foto) ===== */
.card-visual {
  position: relative;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.card-visual .card-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(201,168,76,0.18);
  line-height: 1;
}
.cv-icon {
  width: 72px;
  height: 72px;
  color: var(--gold);
  opacity: .85;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.35));
}
/* gradient por categoria */
.cv-alisamento  { background: linear-gradient(135deg, #12100a 0%, #1e1a0e 100%); }
.cv-barba       { background: linear-gradient(135deg, #0e1210 0%, #141e18 100%); }
.cv-degrade     { background: linear-gradient(135deg, #0e0e18 0%, #141428 100%); }
.cv-social      { background: linear-gradient(135deg, #100e14 0%, #1c1428 100%); }
.cv-maquina     { background: linear-gradient(135deg, #12100c 0%, #201a10 100%); }
.cv-limpeza     { background: linear-gradient(135deg, #0e1214 0%, #121c20 100%); }
.cv-luzes       { background: linear-gradient(135deg, #141008 0%, #281e0c 100%); }
.cv-pigment     { background: linear-gradient(135deg, #100c14 0%, #1e1428 100%); }
.cv-platinado   { background: linear-gradient(135deg, #141210 0%, #28221a 100%); }
.cv-extras      { background: linear-gradient(135deg, #0e1210 0%, #1a2018 100%); }

.card-wide { grid-column: span 2; }
.card-img-split { display: flex; gap: 0; }
.card-img-half { position: relative; width: 50%; height: 100%; object-fit: cover; object-position: center; flex-shrink: 0; transform: none !important; transition: opacity 0.3s; }
.card:hover .card-img-half { opacity: 0.9; }
@media (max-width: 768px) { .card-wide { grid-column: span 1; } }
@media (max-width: 768px) { .card-wide { grid-column: span 1; } }

.price-group { margin-bottom: 16px; }
.price-group:last-of-type { margin-bottom: 0; }
.price-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.price-list li:last-child { border-bottom: none; padding-bottom: 0; }
.price-list li span { flex: 1; line-height: 1.4; }
.price-list li strong { color: var(--gold); font-size: 13px; white-space: nowrap; }

.sorteio-em-breve {
  display: inline-block;
  color: var(--gold, #c9a84c);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  padding: 12px 28px;
  background: rgba(201,168,76,0.08);
  cursor: inherit;
  user-select: none;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-instagram {
  background: radial-gradient(circle at 30% 110%, #f9a825 0%, #f06292 40%, #7b1fa2 80%);
}

@media (max-width: 768px) {
  .fab-container { bottom: 20px; right: 16px; gap: 12px; }
  .fab { width: 48px; height: 48px; }
}
