/* =============================================
   BARBEARIA SOARES — STYLESHEET
   style.css
   ============================================= */

/* ===== VARIÁVEIS E RESET ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #e8c96e;
  --gold-dark: #9b7d35;
  --black: #090909;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #f5f0e8;
  --gray: #888;
  --red: #8B1A1A;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CURSOR CUSTOMIZADO ===== */
.cursor {
  position: fixed; top:0; left:0; z-index:9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
  opacity: 0.7;
}
.cursor-ring.hovered {
  transform: translate(-50%,-50%) scale(1.6);
  opacity: 0.4;
  border-color: var(--gold-light);
}

/* ===== LOADER ===== */
#loader {
  position: fixed; inset:0; z-index: 10000;
  background: var(--black);
  display: flex; align-items:center; justify-content:center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.8s, visibility 0.8s;
}
#loader.hidden { opacity:0; visibility:hidden; }

@keyframes loader-pulse {
  0%   { transform: scale(0.95); filter: drop-shadow(0 0 10px rgba(201,168,76,0.3)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(201,168,76,0.7)); }
}

.loader-bar {
  width: 200px; height: 2px;
  background: var(--dark3);
  overflow: hidden;
  border-radius: 2px;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: fill-bar 2s ease forwards;
}
@keyframes fill-bar { to { width: 100%; } }

.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.4em;
  color: var(--gold); opacity: 0.7;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 1.2rem 5%;
  display: flex; align-items:center; justify-content:space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(9,9,9,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0.8rem 5%;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.4rem; color: var(--gold);
  position: relative; overflow: hidden;
}
.nav-logo-icon::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.2));
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; line-height: 1.1;
  color: var(--gold);
}
.nav-logo-text span {
  display:block; font-size:0.55rem; letter-spacing:0.3em;
  color:var(--gold); font-family:'Montserrat',sans-serif; text-transform:uppercase;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--white);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; font-weight: 500;
  transition: color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px; font-weight: 600 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.nav-cta::after { display:none !important; }

.menu-toggle {
  display:none; background:none; border:none;
  cursor:none; color:var(--gold); font-size:1.5rem;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(139,26,26,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    var(--black);
}

/* Barber pole animado */
.hero-pole {
  position:absolute; right: 8%; top: 10%; bottom: 10%;
  width: 4px; overflow: hidden; opacity: 0.15;
}
.hero-pole::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    var(--gold) 0px, var(--gold) 20px,
    var(--red) 20px, var(--red) 40px,
    #fff 40px, #fff 60px
  );
  animation: pole-scroll 3s linear infinite;
}
@keyframes pole-scroll {
  0%   { transform: translateY(-60px); }
  100% { transform: translateY(0); }
}

/* Grid de pontos decorativos */
.hero-dots {
  position:absolute; right: 15%; top: 20%;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(201,168,76,0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

.hero-content {
  position: relative; z-index:2;
  padding: 0 5%;
  max-width: 760px;
  margin-top: 80px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.4em; text-transform:uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 0.8s 2.2s forwards;
}
.hero-tag::before, .hero-tag::after {
  content:''; display:block; width:40px; height:1px; background:var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92; letter-spacing: 0.02em; overflow: hidden;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-inner {
  display: block;
  transform: translateY(100%);
  animation: slide-up 0.9s cubic-bezier(.77,0,.175,1) forwards;
}
.hero-title-line:nth-child(1) .hero-title-inner { animation-delay: 2.4s; }
.hero-title-line:nth-child(2) .hero-title-inner { animation-delay: 2.6s; color: var(--gold); }
.hero-title-line:nth-child(3) .hero-title-inner { animation-delay: 2.8s; }

@keyframes slide-up { to { transform: translateY(0); } }
@keyframes fade-up  { to { opacity:1; transform:translateY(0); } }

.hero-sub {
  max-width: 480px; font-size: 0.9rem; line-height: 1.8;
  color: rgba(245,240,232,0.6);
  margin: 2rem 0 3rem;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 0.8s 3.2s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 0.8s 3.4s forwards;
}

/* Botões */
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 1rem 2.2rem;
  font-family: 'Montserrat',sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform:uppercase;
  text-decoration: none; border: none; cursor: none;
  position: relative; overflow: hidden; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background: var(--gold-light);
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position:relative; z-index:1; }

.btn-secondary {
  background: transparent; color: var(--white);
  padding: 1rem 2.2rem;
  font-family: 'Montserrat',sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform:uppercase;
  text-decoration: none; border: 1px solid rgba(245,240,232,0.3);
  cursor: none; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Hero imagem */
.hero-image-area {
  position:absolute; right: 0; top: 0; bottom: 0; width: 45%;
  display:flex; align-items:flex-end; justify-content:center;
  overflow:hidden; opacity: 0;
  animation: fade-up 1s 3s forwards;
}
.hero-img-frame {
  width: 100%; height: 90%; background: var(--dark2);
  position:relative;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.hero-img-frame::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%),
              linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  z-index:1;
}
.hero-img-placeholder {
  width:100%; height:100%; object-fit:cover;
  opacity: 0.6; filter: grayscale(30%);
}
.hero-img-empty {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 1rem; color: rgba(201,168,76,0.3); text-align:center; padding: 2rem;
}
.hero-img-empty i { font-size: 4rem; }
.hero-img-empty p { font-size: 0.75rem; letter-spacing:0.1em; text-transform:uppercase; }

/* Hero stats */
.hero-stats {
  position:absolute; bottom: 8%; left: 5%; z-index:3;
  display: flex; gap: 3rem;
  opacity: 0; animation: fade-up 0.8s 3.6s forwards;
}
.stat-item { text-align:left; }
.stat-number {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 2.8rem; color: var(--gold); line-height:1;
}
.stat-label {
  font-size:0.65rem; letter-spacing:0.2em; color:var(--gray);
  text-transform:uppercase; margin-top:2px;
}

/* Linha dourada */
.gold-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 4rem;
}

/* ===== SEÇÃO GERAL ===== */
section { padding: 7rem 5%; }

.section-tag {
  font-size: 0.68rem; letter-spacing: 0.5em; text-transform:uppercase;
  color: var(--gold); text-align:center; display:block; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align:center; line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { font-style:italic; color:var(--gold); }
.section-desc {
  text-align:center; max-width:550px; margin:0 auto 4rem;
  color:rgba(245,240,232,0.55); font-size:0.9rem; line-height:1.8;
}

/* ===== SERVIÇOS ===== */
#servicos { background: var(--dark); position:relative; overflow:hidden; }
#servicos::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:400px; height:400px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--dark2); padding: 2.5rem;
  position: relative; overflow:hidden; cursor: none;
  transition: all 0.4s ease;
  border: 1px solid rgba(201,168,76,0.05);
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:100%;
  height:2px; background: var(--gold); transition: right 0.4s ease;
}
.service-card:hover::before { right:0; }
.service-card:hover { background: #1e1e1e; transform: translateY(-4px); }
.service-icon {
  font-size: 2rem; color:var(--gold); margin-bottom: 1.2rem;
  display:inline-block; transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: rotate(-10deg) scale(1.15); }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-desc { font-size:0.82rem; color:var(--gray); line-height:1.7; margin-bottom:1.5rem; }
.service-price {
  font-family:'Bebas Neue',sans-serif; font-size:1.8rem; color:var(--gold);
  display:flex; align-items:baseline; gap:4px;
}
.service-price small { font-family:'Montserrat',sans-serif; font-size:0.75rem; color:var(--gray); }
.service-badge {
  position:absolute; top:1rem; right:1rem;
  background:var(--gold); color:var(--black);
  font-size:0.6rem; font-weight:700;
  padding:0.2rem 0.6rem; letter-spacing:0.1em;
}

/* ===== SOBRE ===== */
#sobre { background: var(--black); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  max-width: 1200px; margin: 0 auto; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4;
  background: var(--dark2);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  display: block;
}
.about-img-main::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
  pointer-events: none;
  z-index: 1;
}
.about-img-empty {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:1rem; color:rgba(201,168,76,0.3); text-align:center; padding:2rem;
}
.about-img-empty i { font-size:5rem; }
.about-img-empty p { font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; opacity:0.7; }
.about-frame-accent {
  position:absolute; top:-20px; left:-20px; width:70px; height:70px;
  border-top: 3px solid var(--gold); border-left: 3px solid var(--gold);
}
.about-frame-accent2 {
  position:absolute; bottom:-20px; right:-20px; width:70px; height:70px;
  border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold);
}
.about-badge {
  position:absolute; bottom: 30px; right: -30px;
  background: var(--gold); color:var(--black);
  padding: 1.2rem; width:100px; height:100px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; border-radius:50%;
  font-family:'Bebas Neue',sans-serif; font-size:0.7rem; letter-spacing:0.1em;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.about-badge strong { font-size:2rem; display:block; line-height:1; }
.about-content .section-tag { text-align:left; }
.about-content .section-title { text-align:left; font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:1.5rem; }
.about-bio {
  color:rgba(245,240,232,0.65); font-size:0.88rem; line-height:2; margin-bottom: 2rem;
}
.about-bio .placeholder-text {
  background: rgba(201,168,76,0.08); border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem; margin: 1rem 0;
  font-style:italic; color:rgba(201,168,76,0.6); font-size:0.82rem;
}
.about-skills { display:flex; flex-direction:column; gap:1rem; margin-bottom:2rem; }
.skill-header { display:flex; justify-content:space-between; margin-bottom:0.4rem; font-size:0.8rem; }
.skill-bar { height:2px; background:var(--dark3); position:relative; }
.skill-fill {
  position:absolute; top:0; left:0; height:100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width:0; transition: width 1.5s cubic-bezier(.77,0,.175,1) 0.3s;
}

/* ===== GALERIA ===== */
#galeria { background: var(--dark); }
.gallery-grid {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 8px; max-width:1200px; margin:0 auto;
}
.gallery-item {
  background: var(--dark2); overflow:hidden; position:relative;
  cursor:none; transition: box-shadow 0.4s, border 0.4s;
  border: 1px solid transparent;
}
.gallery-item:nth-child(1) { grid-column: 1/5;  grid-row: 1/2; }
.gallery-item:nth-child(2) { grid-column: 5/9;  grid-row: 1/3; }
.gallery-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; }
.gallery-item:nth-child(4) { grid-column: 1/5;  grid-row: 2/3; }
.gallery-item:nth-child(5) { grid-column: 9/13; grid-row: 2/3; }
.gallery-item:hover {
  box-shadow: 0 0 0 2px var(--gold);
  border-color: var(--gold);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  image-rendering: auto;
  transform: scale(1);
  transition: transform 0.5s ease;
  will-change: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-icon {
  position:absolute; inset:0; z-index:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:1rem; color:rgba(201,168,76,0.2);
}
.gallery-icon i { font-size:3rem; }
.gallery-icon span { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; }
.gallery-overlay {
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,0.35);
  opacity:0; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay i { font-size:2rem; color:var(--white); }

/* ===== DEPOIMENTOS ===== */
#depoimentos { background:var(--black); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:1.5rem; max-width:1200px; margin:0 auto;
}
.testimonial-card {
  background:var(--dark2); padding:2rem;
  position:relative; border: 1px solid rgba(201,168,76,0.08); transition: all 0.3s;
}
.testimonial-card:hover { border-color:rgba(201,168,76,0.3); transform:translateY(-4px); }
.testimonial-quote {
  font-family:'Playfair Display',serif;
  font-size:4rem; color:var(--gold); opacity:0.3; line-height:1; margin-bottom:-1rem;
}
.testimonial-text { font-size:0.88rem; line-height:1.8; color:rgba(245,240,232,0.7); margin-bottom:1.5rem; }
.testimonial-author { display:flex; align-items:center; gap:1rem; }
.testimonial-avatar {
  width:48px; height:48px; border-radius:50%;
  background:var(--dark3); display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:1.2rem; border:1px solid var(--gold);
}
.testimonial-name { font-weight:600; font-size:0.9rem; }
.testimonial-stars { color:var(--gold); font-size:0.7rem; margin-top:2px; }

/* ===== AGENDAMENTO CTA ===== */
#agendar {
  background: var(--dark); text-align:center; position:relative; overflow:hidden;
}
#agendar::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06), transparent 70%);
}
#agendar .section-title { font-size:clamp(2.5rem,7vw,5rem); }
.schedule-highlight {
  font-size:0.85rem; color:var(--gray); margin: -1.5rem 0 3rem; letter-spacing:0.05em;
}
.schedule-actions { display:flex; gap:1.5rem; justify-content:center; flex-wrap:wrap; }

.whatsapp-big-btn {
  display:inline-flex; align-items:center; gap:12px;
  background:#25D366; color:#fff;
  padding:1.1rem 2.5rem;
  font-family:'Montserrat',sans-serif;
  font-size:0.85rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase;
  text-decoration:none; cursor:none; position:relative; overflow:hidden;
  transition: all 0.3s; border-radius: 2px;
}
.whatsapp-big-btn::before {
  content:''; position:absolute; inset:0;
  background: rgba(255,255,255,0.1);
  transform:translateX(-100%); transition:transform 0.3s;
}
.whatsapp-big-btn:hover::before { transform:translateX(0); }
.whatsapp-big-btn:hover { box-shadow:0 0 40px rgba(37,211,102,0.4); transform:translateY(-2px); }

/* ===== HORÁRIOS ===== */
#horarios { background: var(--black); }
.hours-grid {
  display: grid; grid-template-columns:1fr 1fr; gap: 4rem;
  max-width:900px; margin:0 auto; align-items:start;
}
.hours-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:1rem 0; border-bottom:1px solid rgba(201,168,76,0.08); font-size:0.88rem;
}
.hours-row:last-child { border:none; }
.hours-day   { color:var(--gray); }
.hours-time  { color:var(--gold); font-weight:600; }
.hours-closed { color:rgba(255,255,255,0.2); font-style:italic; }
.contact-item {
  display:flex; gap:1.2rem; align-items:flex-start; margin-bottom:1.5rem;
}
.contact-icon {
  width:44px; height:44px; flex-shrink:0;
  border: 1px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:1rem;
}
.contact-label { font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gray); margin-bottom:0.3rem; }
.contact-value { font-size:0.9rem; color:var(--white); }
.contact-value a { color:var(--white); text-decoration:none; transition:color 0.3s; }
.contact-value a:hover { color:var(--gold); }

/* ===== LOCALIZAÇÃO ===== */
#localizacao { background:var(--dark); }
.location-wrap { max-width:1200px; margin:0 auto; }
.map-container {
  width:100%; height:420px; background:var(--dark2);
  border:1px solid rgba(201,168,76,0.1);
  position:relative; overflow:hidden; margin-bottom:2rem;
}
.map-overlay {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
}
.map-placeholder-icon { font-size:3rem; color:var(--gold); }
.map-placeholder-text { font-size:0.8rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gray); }
.map-placeholder-sub  { font-size:0.75rem; color:rgba(201,168,76,0.5); }
.map-link {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:var(--black);
  padding:0.7rem 1.5rem;
  font-size:0.75rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase;
  text-decoration:none; cursor:none; transition:all 0.3s; margin-top:0.5rem;
}
.map-link:hover { background:var(--gold-light); }

/* ===== BOTÕES FLUTUANTES ===== */
.floating-social {
  position:fixed; right:24px; bottom: 110px; z-index:900;
  display:flex; flex-direction:column; gap:12px;
}
.float-btn {
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; text-decoration:none; cursor:none;
  transition: all 0.3s; position:relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.float-btn::before {
  content:attr(data-tip);
  position:absolute; right:56px;
  background:var(--dark2); color:var(--white);
  padding:0.35rem 0.8rem; border-radius:2px;
  font-size:0.7rem; font-family:'Montserrat',sans-serif; white-space:nowrap;
  opacity:0; transform:translateX(10px); transition:all 0.3s; pointer-events:none;
}
.float-btn:hover::before { opacity:1; transform:translateX(0); }
.float-btn:hover { transform:scale(1.12); }
.float-fb { background:#1877F2; color:#fff; }
.float-ig {
  background:linear-gradient(135deg,#405DE6,#5851DB,#833AB4,#C13584,#E1306C,
             #FD1D1D,#F56040,#F77737,#FCAF45);
  color:#fff;
}

.float-wa {
  position:fixed; right:24px; bottom:30px; z-index:900;
  width:56px; height:56px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; color:#fff; text-decoration:none; cursor:none;
  box-shadow:0 4px 24px rgba(37,211,102,0.5); transition:all 0.3s;
  animation: pulse-wa 2s ease-in-out infinite;
}
.float-wa:hover { transform:scale(1.12); box-shadow:0 4px 40px rgba(37,211,102,0.7); }
@keyframes pulse-wa {
  0%,100% { box-shadow:0 4px 24px rgba(37,211,102,0.5); }
  50%      { box-shadow:0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display:grid; grid-template-columns: 2fr 1fr 1fr; gap:4rem;
  max-width:1200px; margin:0 auto;
  padding-bottom:3rem; border-bottom:1px solid rgba(201,168,76,0.08);
}
.footer-brand .nav-logo { margin-bottom:1rem; display:inline-flex; }
.footer-bio { font-size:0.82rem; color:var(--gray); line-height:1.8; margin-bottom:1.5rem; }
.footer-socials { display:flex; gap:12px; }
.footer-social {
  width:36px; height:36px;
  border: 1px solid rgba(201,168,76,0.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gray); font-size:0.85rem; text-decoration:none; cursor:none; transition:all 0.3s;
}
.footer-social:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.footer-col h4 {
  font-size:0.72rem; letter-spacing:0.3em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.5rem;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:0.8rem; }
.footer-links a { text-decoration:none; color:var(--gray); font-size:0.85rem; transition:color 0.3s; }
.footer-links a:hover { color:var(--white); }
.footer-bottom {
  max-width:1200px; margin:0 auto; padding-top:2rem;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-copy { font-size:0.75rem; color:rgba(136,136,136,0.5); }
.footer-dev  { font-size:0.75rem; color:var(--gray); display:flex; align-items:center; gap:6px; }
.footer-dev a {
  color:var(--gold); text-decoration:none; font-weight:600;
  letter-spacing:0.05em; transition:all 0.3s; position:relative;
}
.footer-dev a::after {
  content:''; position:absolute; bottom:-2px; left:0; right:100%;
  height:1px; background:var(--gold); transition:right 0.3s;
}
.footer-dev a:hover::after { right:0; }
.footer-dev a:hover { color:var(--gold-light); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity:0; transform:translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left {
  opacity:0; transform:translateX(-40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right {
  opacity:0; transform:translateX(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ===== RESPONSIVO — MOBILE ===== */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display:none; }
  nav { padding: 1rem 5%; }
  .nav-links {
    display:none; flex-direction:column; position:fixed; inset:0; top:0;
    background:rgba(9,9,9,0.98); align-items:center; justify-content:center;
    gap:2rem; z-index:999;
  }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:1.2rem; }
  .menu-toggle { display:block; z-index:1001; position:relative; }
  .hero-image-area { display:none !important; }
  .hero-title { font-size:clamp(3rem,15vw,5rem); }

  /* Hero: empilha tudo em coluna */
  #hero {
    flex-direction: column; justify-content: flex-start;
    padding-top: 90px; padding-bottom: 3rem;
  }
  .hero-content { margin-top: 0; width: 100%; }

  /* Stats abaixo do conteúdo */
  .hero-stats {
    position: relative !important;
    bottom: auto !important; left: auto !important;
    padding: 0 5%; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem;
    opacity: 1 !important; animation: none !important; transform: none !important;
  }

  .about-grid        { grid-template-columns:1fr; gap:3rem; }
  .about-image-wrap  { max-width: 100%; margin:0 auto; padding: 0 0 20px; }
  .about-img-main    {
    aspect-ratio: 4/3 !important;
    clip-path: none !important;
    border-radius: 8px;
    min-height: 280px;
  }
  .about-img-main img {
    object-position: center 20% !important;
  }
  .about-badge       { right: 10px; bottom: 0px; }
  .hours-grid        { grid-template-columns:1fr; gap:2rem; }
  .footer-grid       { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom     { flex-direction:column; text-align:center; }
  .gallery-grid      { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .gallery-item      { grid-column:auto!important; grid-row:auto!important; }
  section            { padding:4rem 5%; }
  .float-btn::before { display:none; }
}