/* ============================================
   NEW BARBER STYLE — CSS
   Cinza Chumbo · Verde Musgo · Preto & Branco
   ============================================ */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #2c2e33;
  --black-alt:   #35373c;
  --card-bg:     #3c3e43;
  --card-hover:  #45474c;
  --gold:        #084a24;
  --gold-light:  #0f8f46;
  --gold-dark:   #052e17;
  --white:       #f5f5f2;
  --gray:        #a3a39c;
  --gray-light:  #d2d2cc;
  --radius:      6px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(8,74,36,0.35);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  cursor: auto;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--white); }

/* cursor: default system cursor */

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-pole {
  width: 22px;
  height: 92px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.loader-pole-cap {
  width: 22px; height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
}
.loader-pole-stripes {
  width: 18px;
  height: 74px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 18px rgba(255,255,255,0.12);
  background-image: repeating-linear-gradient(
    -45deg,
    #f5f5f2 0px, #f5f5f2 8px,
    #141414 8px, #141414 16px
  );
  animation: pole-spin 0.9s linear infinite;
}
@keyframes pole-spin {
  0%   { background-position: 0 0; }
  100% { background-position: 0 -16px; }
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--card-bg);
  margin: 0 auto 1rem;
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0;
  animation: load-progress 1.8s ease forwards;
}
@keyframes load-progress { to { width: 100%; } }
.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(44,46,51,0.95);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(8,74,36,0.15);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: height var(--transition);
}
.navbar.scrolled .logo-img { height: 28px; }
.nav-links {
  display: flex; gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language Switcher — Desktop */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(8,74,36,0.3);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8,74,36,0.05);
}
.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0.3rem 0.65rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: transparent;
  line-height: 1;
}
.lang-btn:not(:last-child) {
  border-right: 1px solid rgba(8,74,36,0.2);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
}

/* Language Switcher — Mobile menu */
.lang-switcher-mobile {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.lang-btn-m {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(8,74,36,0.25);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn-m:hover { color: var(--white); border-color: var(--gold); }
.lang-btn-m.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-weight: 800;
}

/* Google stars badge (navbar) */
.nav-stars {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(8,74,36,0.3);
  border-radius: 20px;
  background: rgba(8,74,36,0.06);
  white-space: nowrap;
}
.nav-stars .stars { color: #fbbc04; font-size: 0.7rem; letter-spacing: 1px; }
.nav-stars span { font-size: 0.6rem; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.55); }
@media (max-width: 768px) { .nav-stars { display: none; } }

/* Google stars block (about section) */
.google-review-block {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(8,74,36,0.06);
  border: 1px solid rgba(8,74,36,0.2);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  margin-top: 2rem;
  width: fit-content;
}
.google-review-block .g-icon {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.google-review-block .g-icon i { color: #4285F4; }
.google-review-block .g-info { display: flex; flex-direction: column; gap: 0.2rem; }
.google-review-block .g-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 2px; }
.google-review-block .g-label { font-size: 0.72rem; color: var(--gray-light); letter-spacing: 1px; font-weight: 600; }
.google-review-block .g-score { font-size: 1.1rem; font-weight: 700; color: var(--white); }

.instagram-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,74,36,0.22);
  border: 1px solid rgba(8,74,36,0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}
.instagram-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4.5px); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100%);
  height: 100vh;
  background: var(--black-alt);
  z-index: 999;
  padding: 6rem 2.5rem 2.5rem;
  transition: right var(--transition);
  border-left: 1px solid rgba(8,74,36,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--gray-light);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--white); }
.mobile-instagram {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gray-light); font-size: 0.9rem;
  border: 1px solid rgba(8,74,36,0.3);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-instagram:hover { background: var(--gold); color: var(--white); }

/* ============================================
   SHARED UTILITIES
   ============================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gray-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-tag.light { color: var(--gray-light); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
}
.section-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--white);
}
.title-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  position: relative;
}
.title-line::before, .title-line::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.title-line::before { left: -10px; }
.title-line::after { right: -10px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(8,74,36,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover { background: var(--gray-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(8,74,36,0.45); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary.btn-glow { box-shadow: 0 0 20px rgba(8,74,36,0.3); }
.btn-primary.btn-large { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(8,74,36,0.3); }

.btn-instagram {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 1px solid rgba(8,74,36,0.5);
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-instagram:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/gallery/photo-26.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px 1.5rem 5rem;
  user-select: none;
  -webkit-user-select: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(8,74,36,0.4);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  display: flex; flex-direction: column;
  align-items: center;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.hero-line1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 13.2vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  letter-spacing: 4px;
}
.hero-line2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 14vw, 12.75rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 0.85;
}
.hero-line3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 4.2vw, 3.75rem);
  color: var(--white);
  letter-spacing: 6px;
  font-weight: 400;
}
.hero-tagline {
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.5); transform-origin: top; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--white);
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 7rem 0;
  background: var(--black-alt);
}
/* ── Services Carousel ── */
.services-carousel-wrap {
  position: relative;
  padding: 0 3.5rem;
}
.services-track-outer {
  overflow: hidden;
}
.services-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem 1rem;
  scroll-behavior: smooth;
}
.services-track::-webkit-scrollbar { display: none; }

.service-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: rgba(8,74,36,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,74,36,0.22);
  border: 1px solid rgba(8,74,36,0.6);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.service-icon .svc-svg {
  width: 1.4em; height: 1.4em;
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); box-shadow: 0 0 18px rgba(8,74,36,0.5); }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.2;
}
.service-btn {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(8,74,36,0.35);
  padding-bottom: 2px;
  transition: all var(--transition);
  margin-top: auto;
}
.service-btn:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(8,74,36,0.5);
  background: rgba(44,46,51,0.85);
  color: var(--white);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.carousel-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.carousel-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* ============================================
   BOOKING CTA
   ============================================ */
.booking-cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.booking-cta-bg {
  position: absolute; inset: 0;
  background-image: url('/images/gallery/photo-19.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  filter: grayscale(20%) brightness(0.6);
}
.booking-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(10,10,10,0.85) 100%);
}
.booking-cta .container { position: relative; z-index: 1; }
.booking-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.booking-cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  margin: 1rem 0 1.5rem;
}
.booking-cta-text h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--white);
  display: block;
}
.booking-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}
.booking-features {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.booking-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.booking-features li i { color: var(--gold-light); font-size: 0.7rem; }

.booking-card {
  background: rgba(53,55,60,0.95);
  border: 1px solid rgba(8,74,36,0.2);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  min-width: 280px;
  backdrop-filter: blur(10px);
}
.booking-scissors {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: block;
}
.booking-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.booking-card > p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
}
.booking-note {
  font-size: 0.75rem !important;
  color: var(--gray) !important;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  letter-spacing: 1px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 7rem 0;
  background: var(--black);
}
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.gallery-filter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all var(--transition);
}
.gallery-filter:hover, .gallery-filter.active {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(var(--gold-light), var(--gold-light)) top left / 16px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) top left / 2px 16px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) top right / 16px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) top right / 2px 16px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom left / 16px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom left / 2px 16px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom right / 16px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom right / 2px 16px no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}
.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
  opacity: 0;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.55);
  opacity: 1;
}
.gallery-overlay i {
  color: var(--gold-light);
  font-size: 1.5rem;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* Gallery extra items (hidden by default) */
.gallery-extra { display: none; }
.gallery-extra.gallery-visible { display: block; }

/* Gallery expand button */
.gallery-expand {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-gallery-more {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gray-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gallery-more:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-gallery-more.expanded { border-color: rgba(255,255,255,0.2); color: var(--gray); }
.btn-gallery-more.expanded:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.3); transform: none; }
.gallery-count {
  font-size: 0.7rem;
  opacity: 0.6;
  font-weight: 400;
  letter-spacing: 1px;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.gallery-cta p { font-size: 0.9rem; color: var(--gray); }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img-wrap {
  max-width: 90vw; max-height: 90vh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-img-wrap p {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  letter-spacing: 2px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 1.5rem;
  transition: color var(--transition);
  cursor: pointer;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold-light); }

/* ============================================
   ABOUT — QUEM SOMOS
   ============================================ */
.about {
  padding: 7rem 0;
  background: var(--black-alt);
}
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.about-row:last-child { margin-bottom: 0; }
.about-row.reverse { direction: rtl; }
.about-row.reverse > * { direction: ltr; }

.about-img-wrap {
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  pointer-events: none;
  background:
    linear-gradient(var(--gold-light), var(--gold-light)) top left / 22px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) top left / 2px 22px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) top right / 22px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) top right / 2px 22px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom left / 22px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom left / 2px 22px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom right / 22px 2px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) bottom right / 2px 22px no-repeat;
  opacity: 0.75;
}
.about-img-wrap img {
  width: 100%; height: 450px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(15%);
  transition: filter var(--transition);
}
.about-img-wrap:hover img { filter: grayscale(0%); }
.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.badge-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }

.about-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.about-text h3 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--white);
}
.about-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex; gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.stat span { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--white); }
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ============================================
   LOCATION
   ============================================ */
.location { padding-top: 7rem; background: var(--black); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 450px;
  margin-top: 4rem;
}
.location-info {
  background: var(--card-bg);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.info-icon {
  width: 42px; height: 42px; min-width: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,74,36,0.22);
  border: 1px solid rgba(8,74,36,0.55);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.95rem;
}
.info-item h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.3rem;
}
.info-item p, .info-item a {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.info-item a:hover { color: var(--white); }
.location-map { min-height: 450px; }
.location-map iframe { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-alt);
  border-top: 1px solid rgba(8,74,36,0.1);
  padding-top: 5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo { display: inline-flex; margin-bottom: 1.2rem; }
.footer-logo-img { height: 42px; width: auto; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-insta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-insta:hover { color: var(--gold-light); }
.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}
.footer-nav ul, .footer-services ul {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.footer-nav a, .footer-services a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-services a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex; align-items: flex-start; gap: 0.6rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}
.footer-contact i {
  color: var(--white);
  background: rgba(8,74,36,0.3);
  width: 22px; height: 22px;
  min-width: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.68rem;
  margin-top: 1px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex; align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  animation: wa-enter 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.8s forwards,
             wa-bob 3.2s ease-in-out 2.6s infinite;
}
.whatsapp-icon {
  position: relative;
  width: 58px; height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: wa-ping 2.4s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes wa-ping {
  0%       { transform: scale(1); opacity: 0.55; }
  75%,100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-bubble {
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateX(12px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  position: relative;
}
.whatsapp-bubble::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--white);
}
.whatsapp-float:hover .whatsapp-bubble,
.whatsapp-float.peek .whatsapp-bubble {
  opacity: 1;
  transform: translateX(0) scale(1);
}
@keyframes wa-enter {
  0%   { opacity: 0; transform: translateY(20px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wa-bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 16px; right: 16px; gap: 0.5rem; }
  .whatsapp-icon { width: 50px; height: 50px; min-width: 50px; font-size: 1.4rem; }
  .whatsapp-bubble { font-size: 0.7rem; padding: 0.55rem 0.8rem; }
}

/* ============================================
   HIDDEN
   ============================================ */
.hidden { display: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-carousel-wrap { padding: 0 2.5rem; }
  .about-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-row.reverse { direction: ltr; }
  .about-img-wrap img { height: 320px; }
  .booking-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 350px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }
  .services-carousel-wrap { padding: 0 2rem; }
  .service-card { flex: 0 0 170px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 0.5rem;
  }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .location-info { padding: 2.5rem 1.5rem; }
  .about-row { gap: 2rem; }
  .about-stats { gap: 1.5rem; }
  .booking-cta { padding: 4rem 0; overflow: hidden; }
  .booking-cta-inner { text-align: center; align-items: center; justify-items: center; }
  .booking-cta-text { width: 100%; max-width: 100%; }
  .booking-cta-text h2 { font-size: clamp(1.8rem, 8vw, 3rem); word-break: break-word; overflow-wrap: break-word; }
  .booking-cta-text .section-tag { font-size: 0.55rem; letter-spacing: 2px; }
  .booking-cta-text p { max-width: 100%; font-size: 0.88rem; overflow-wrap: break-word; }
  .booking-features { align-items: flex-start; width: 100%; max-width: 100%; }
  .booking-features li { justify-content: flex-start; font-size: 0.8rem; overflow-wrap: break-word; word-break: break-word; }
  .booking-card { min-width: unset; width: 100%; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-line1 { font-size: clamp(4rem, 22vw, 6rem); }
  .hero-line2 { font-size: clamp(4.5rem, 24vw, 7rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 0.4rem; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .booking-modal { padding: 2rem 1.5rem; }
}
