﻿/* =============================================
   PANTHERBLACK ESTÉTICA — STYLE.CSS
   Tema: Dark Gold Premium
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --bg:          #000000;
  --bg-2:        #050505;
  --bg-card:     #0a0a0a;
  --bg-elevated: #111111;
  --gold:        #D4A820;
  --gold-light:  #F0C84A;
  --gold-dark:   #A07A10;
  --gold-glow:   rgba(212, 168, 32, 0.22);
  --gold-border: rgba(212, 168, 32, 0.35);
  --gold-gradient: linear-gradient(135deg, #F0C84A 0%, #D4A820 40%, #A07A10 100%);
  --white:       #FFFFFF;
  --white-90:    rgba(255, 255, 255, 0.9);
  --white-70:    rgba(255, 255, 255, 0.7);
  --white-40:    rgba(255, 255, 255, 0.4);
  --white-10:    rgba(255, 255, 255, 0.06);
  --border:      rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 168, 32, 0.2);
  --font-display: 'Bebas Neue', 'Playfair Display', Georgia, serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 60px rgba(212, 168, 32, 0.14);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.55);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transição fluida de tema para todos os elementos */
*, *::before, *::after {
  transition-property: background-color, color, border-color, box-shadow, fill, stroke;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Exceções: elementos que não devem ter transição de tema (performance e transforms) */
.nav-toggle span,
.reveal-fade, .reveal-up, .reveal-left, .reveal-right,
.gallery-item img,
.testimonial-track,
.hero-title, .hero-subtitle, .hero-badge {
  transition-property: opacity, transform, background-color, color, border-color;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(212, 168, 32, 0.06);
  backdrop-filter: blur(4px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.30s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.30s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.30s ease,
              color 0.30s ease,
              background-color 0.30s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform, box-shadow;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.30s ease;
}

.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: none;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(212, 168, 32, 0.45);
}

.btn-gold:active {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(212, 168, 32, 0.60);
}

.btn-glow {
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(212, 168, 32, 0.45);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 168, 32, 0.10);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-fade  { transform: scale(0.97); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding var(--transition), box-shadow var(--transition);
}

/* Gradiente sutil via pseudo-elemento para não criar containing block nos filhos fixed */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.0) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: -1;
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar.scrolled::before {
  opacity: 1;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  isolation: isolate;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Barra divisória dourada entre hambúrguer e logo — só visível no mobile */
.nav-divider {
  display: none;
  width: 1px;
  height: 30px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  flex-shrink: 0;
}

.logo-wrap {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background: transparent;
  border-radius: 6px;
}

.logo-wrap--footer {
  height: 100px;
  width: 100px;
  margin-bottom: 16px;
  isolation: isolate;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 0 6px rgba(200, 160, 60, 0.75)) brightness(1.15);
  transform: scale(1.06);
}

.logo-img--footer {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-top {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--white-70);
}

.logo-top strong {
  color: var(--gold);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--white-40);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  /* Sempre filho direto do body: nunca fica preso em stacking context */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 1001;
  pointer-events: none;
  transition: padding var(--transition);
}

.nav-menu.scrolled { padding: 12px 0; }

.nav-menu > li { pointer-events: auto; }

/* Heading "NAVEGAÇÃO" — visível apenas no drawer mobile */
.nav-menu-heading { display: none; }

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-70);
  border-radius: 6px;
  transition: color var(--transition), text-shadow var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--gold-light);
  background: transparent;
  text-shadow: 0 0 14px rgba(212, 168, 32, 0.45);
}

.nav-link.active { color: var(--gold); }

.nav-cta {
  background: var(--gold-gradient);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 100px;
  margin-left: 8px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,168,32,0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-icon {
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}
.nav-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  display: block;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Vídeo com parallax — altura extra para cobrir o deslocamento vertical */
.hero-video {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  pointer-events: none;
  will-change: transform;
}

/* Overlay escuro para legibilidade do conteúdo */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.83) 50%,
    rgba(0, 0, 0, 0.97) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 760px;
}


.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: var(--white-70);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 40px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: inline;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--white-40);
  letter-spacing: 0.05em;
  margin-top: 6px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.visual-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-main {
  width: 100%;
  max-width: 360px;
  height: 420px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #111 0%, #1a1a0a 100%);
  color: var(--white-40);
  font-size: 0.85rem;
  text-align: center;
}

.visual-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 8px;
}

.visual-inner small {
  font-size: 0.72rem;
  color: var(--white-40);
  max-width: 200px;
  line-height: 1.5;
}

.visual-accent-1,
.visual-accent-2 {
  position: absolute;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212, 168, 32, 0.20);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 165px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 24px rgba(212, 168, 32, 0.07);
}

.visual-accent-1 {
  top: 28px;
  right: -16px;
}

.visual-accent-2 {
  bottom: 48px;
  left: -16px;
}

.visual-accent-1 span,
.visual-accent-2 span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.visual-accent-1 small,
.visual-accent-2 small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.visual-border-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .section-tag { margin-bottom: 12px; }

.about-text {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong { color: var(--gold); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-70);
}

.feature-icon {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.service-card {
  flex: 0 0 calc(33.333% - 12px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.service-card:hover {
  border-color: rgba(212, 168, 32, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.45), 0 0 32px rgba(212, 168, 32, 0.08);
}

.service-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212,168,32,0.09) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-glow { opacity: 1; }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 32, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.service-body p {
  font-size: 0.83rem;
  color: var(--white-40);
  line-height: 1.6;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-duration {
  font-size: 0.78rem;
  color: var(--white-40);
}

.service-price {
  font-size: 0.82rem;
  color: var(--white-70);
}

.service-price strong { color: var(--gold); }

.service-body {
  flex: 1;
}

.service-book-btn {
  display: block;
  text-align: center;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  margin-top: 4px;
}

.service-book-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212, 168, 32, 0.3);
}

/* ===== DIFFERENTIALS ===== */
.differentials {
  background: var(--bg-2);
  position: relative;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.diff-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212,168,32,0.1);
}

.diff-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(212, 168, 32, 0.07);
  line-height: 1;
  pointer-events: none;
}

.diff-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--gold);
}

.diff-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  display: block;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 0.87rem;
  color: var(--white-40);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery { background: var(--bg); }


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s ease,
              box-shadow 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.40s ease;
  opacity: 1 !important;
  transform: none !important;
  will-change: transform;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.hidden { opacity: 0 !important; pointer-events: none; }


.gallery-photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-photo img {
  transform: scale(1.05);
}


.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 1;
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
}

.gallery-tag {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}


/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-2); }

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 0.9rem;
  color: var(--white);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gold);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--white-70);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-2); }

.map-wrap {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}

.map-route-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212,168,32,0.3);
  color: #fff;
  padding: 4px 10px 4px 4px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  z-index: 2;
}

.map-route-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.55);
  border-color: rgba(212,168,32,0.7);
}

.map-route-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.map-route-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: map-pulse 2.5s ease-out infinite;
}

@keyframes map-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-route-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-right: 2px;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-cta-btn {
  margin-top: auto;
  padding-top: 20px;
  align-self: flex-start;
}

.contact-intro {
  color: var(--white-70);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.contact-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item-body strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.contact-item-body span {
  font-size: 0.83rem;
  color: var(--white-70);
  display: block;
}

.contact-link {
  font-size: 0.9rem;
  color: var(--gold);
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold-light); }

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--white-40);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  transition: var(--transition);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-glow);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--white-40);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-col p {
  font-size: 0.83rem;
  color: var(--white-40);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-40);
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 168, 32, 0.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  fill: #000;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(212, 168, 32, 0.7);
}

.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: fab-pulse 2.5s ease-out infinite;
}

@keyframes fab-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== RESPONSIVE ===== */

/* --- Tablet largo (1100px) --- */
@media (max-width: 1100px) {
  .services-grid { gap: 16px; }
  .service-card { flex: 0 0 calc(50% - 8px); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* --- Tablet (900px) --- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; display: flex; justify-content: center; }
  .visual-main { width: 280px; height: 320px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { min-height: 280px; height: 280px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item, .gallery-item.large {
    grid-row: span 1;
    height: 220px;
  }

  .testimonial-card { flex: 0 0 calc(50% - 12px); }

  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  :root {
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
  }

  .section { padding: 64px 0; }

  .container { padding: 0 16px; }

  /* Navbar mobile — ::before z-index:-1 não renderiza no iOS Safari dentro de position:fixed */
  .navbar {
    background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, transparent 100%);
  }
  .navbar::before { display: none; }

  /* Navbar mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: min(280px, 85vw);
    height: 100vh;
    height: 100dvh;
    transform: translateX(-100%);
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 24px 40px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--gold-border);
    border-left: none;
    z-index: 9999;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
    list-style: none;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--white-10);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .nav-menu-close svg {
    width: 18px;
    height: 18px;
  }
  .nav-menu-close:hover {
    background: var(--gold-border);
    color: var(--gold);
    border-color: var(--gold);
  }

  .nav-menu > .nav-menu-close { list-style: none; }

  .nav-menu-heading {
    display: block;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.72;
    padding: 0 8px 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--gold-border);
    list-style: none;
    pointer-events: none;
  }

  .nav-link {
    font-size: 1rem;
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
    padding: 18px 8px;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    color: var(--white-90);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }

  .nav-link:last-of-type { border-bottom: none; }

  .nav-link:hover {
    color: var(--gold);
    background: rgba(212, 168, 32, 0.05);
    border-radius: var(--radius);
  }

  .nav-icon { display: flex; align-items: center; justify-content: center; }

  .nav-cta {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
    margin-top: 24px;
    width: auto;
    padding: 16px 32px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    border-bottom: none !important;
    display: flex;
  }

  .nav-cta-item {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
  }

  .nav-toggle { display: flex; z-index: 10000; }

  .nav-divider { display: block; }

  .nav-icon { display: flex; align-items: center; justify-content: center; }

  /* Hero mobile */
  .hero-content { padding: 80px 16px 48px; }
  .hero-title { word-break: break-word; font-size: clamp(3.8rem, 13vw, 5.5rem); }
  .hero-actions { gap: 10px; }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Services mobile */
  .services-grid { gap: 10px; }
  .service-card { flex: 0 0 calc(50% - 5px); padding: 20px 16px; gap: 10px; }
  .service-icon-wrap { width: 44px; height: 44px; border-radius: 14px; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item, .gallery-item.large { grid-row: span 1; height: 180px; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Schedule */
  .schedule-wrapper { padding: 24px 16px; }
  .service-options { grid-template-columns: 1fr; }
  .datetime-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .step-item span { display: none; }
  .step-connector { max-width: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* --- Mobile pequeno (480px) --- */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .container { padding: 0 14px; }

  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero-content { padding: 72px 14px 40px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { max-width: 260px; }

  /* Services */
  .service-card { flex: 0 0 100%; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .visual-main { width: 240px; height: 280px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.large { height: 170px; }

  /* About accents — frame envolve a foto; badges menores nas bordas como no PC */
  .visual-frame { flex-direction: row; align-items: initial; gap: 0; width: fit-content; margin: 0 auto; }
  .visual-accent-1,
  .visual-accent-2 {
    position: absolute;
    right: auto;
    left: auto;
    width: auto;
    min-width: 130px;
    padding: 10px 14px;
  }
  .visual-accent-1 { right: -55px; }
  .visual-accent-2 { left: -55px; }
  .visual-accent-1 span, .visual-accent-2 span { font-size: 0.78rem; }
  .visual-accent-1 small, .visual-accent-2 small { font-size: 0.58rem; }

  /* Schedule */
  .schedule-wrapper { padding: 20px 14px; }
  .panel-actions { flex-direction: column; }
  .panel-actions .btn { width: 100%; justify-content: center; }
  .timeslots-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-summary { padding: 16px; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 28px 20px; }

  /* Footer */
  .footer-grid { gap: 28px; }
  .logo-wrap--footer { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .whatsapp-fab { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* --- Mobile muito pequeno (360px) --- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .service-card { flex: 0 0 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
}


