/* ═══════════════════════════════════════════════════════
   ORQUESTRA SUBLIME — style.css
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

/* ── THEME: DARK LUXURY (default) ── */
:root {
  --bg:          #05020a;
  --bg2:         #0a0812;
  --bg3:         #100d1a;
  --card:        #120f21;
  --card-b:      rgba(255,255,255,0.06);
  --card-hover:  #18142b;
  --nav-bg:      rgba(5,2,10,0.95);
  --text:        #fdfaff;
  --muted:       #b1a6c9; /* Tom levemente mais claro para melhorar contraste sutilmente */
  --subtle:      rgba(255,255,255,0.03);
  --border:      rgba(255,255,255,0.08);
  --accent:      #d496c5; /* Rosa mais sóbrio, menos neon */
  --accent2:     #7dc8c8; /* Cyan mais suave */
  --accent3:     #b09ed4; /* Lavanda suave */
  --gold:        #c5a059;
  --btn-text:    #ffffff;
  --hero-title:  linear-gradient(105deg, #ffffff 0%, #ecd8ff 45%, #d496c5 100%);
  --gradient:    linear-gradient(135deg, #d496c5, #b09ed4, #7dc8c8);
  --gradient2:   linear-gradient(135deg, #d496c5, #a365bb);
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --shadow-h:    0 20px 60px rgba(212,150,197,0.15);
  --glow:        rgba(212,150,197,0.1);
  --section-alt: #0a0812;
  --input-bg:    rgba(255,255,255,0.04);
  --input-b:     rgba(255,255,255,0.08);
  --scrollbar:   #d496c5;
  --counter-bg:  rgba(255,255,255,0.03);
  --glass:       rgba(255,255,255,0.04);
  --glass-b:     rgba(255,255,255,0.08);
  --service-icon-shadow: 0 0 20px rgba(212,150,197,0.2);
  --tag-bg:      rgba(212,150,197,0.05);
  --tag-color:   #d496c5;
  --tag-b:       rgba(212,150,197,0.2);
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.5s ease, color 0.5s ease;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══════════════════════
   TYPOGRAPHY
═══════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--tag-bg);
  border: 1px solid var(--tag-b);
  color: var(--tag-color);
  padding: 0.5rem 1.4rem;
  border-radius: 4px; /* Retangular com cantos suaves é mais clássico que pílula total */
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1.5rem;
  position: relative;
}
.section-label.centered {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8rem;
  color: var(--text);
}
/* Palavra de destaque dentro do título de seção */
.section-title span {
  background: linear-gradient(135deg, #f0e8ff 0%, #E879C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.15rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-divider {
  width: 48px; height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 0.6rem auto 1.2rem;
}

/* Rustic theme — thinner ornamental gold rule */
[data-theme="rustic"] .section-divider {
  width: 72px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C9A43C 30%, #E8D49A 50%, #C9A43C 70%, transparent 100%);
  opacity: 0.75;
}
/* Rustic section-title — Cormorant at lighter weight for elegance */
[data-theme="rustic"] .section-title {
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ═══════════════════════
   LAYOUT
═══════════════════════ */
.container { width: 90%; max-width: 1180px; margin: 0 auto; }
section { padding: 4rem 0; }

/* ═══════════════════════
   BUTTONS
═══════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px; white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: var(--btn-text); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow-h); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
/* Rustic theme — primary btn: solid gold with dark text */
[data-theme="rustic"] .btn-primary {
  background: linear-gradient(135deg, #C9A43C, #E8D49A, #C9A43C);
  color: #0c0905;
  letter-spacing: 0.5px;
}
[data-theme="rustic"] .btn-outline {
  border-color: rgba(201,164,60,0.55);
  color: #C9A43C;
}
[data-theme="rustic"] .btn-outline:hover {
  background: rgba(201,164,60,0.12);
  color: #E8D49A;
  border-color: #C9A43C;
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.28);
}
.btn-wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(37,211,102,0.38); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ═══════════════════════
   THEME SWITCHER
═══════════════════════ */
.theme-switcher {
  position: fixed;
  bottom: 6.5rem;
  right: 1.5rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.theme-switcher-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  margin-bottom: 0.2rem;
}

.theme-btns {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.theme-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.theme-btn:hover { transform: scale(1.18); border-color: rgba(255,255,255,0.55); box-shadow: 0 4px 16px rgba(0,0,0,0.35); }
.theme-btn.active {
  border-color: white;
  box-shadow: 0 0 0 2.5px rgba(255,255,255,0.25), 0 4px 14px rgba(0,0,0,0.4);
  transform: scale(1.12);
}

/* Botões com paleta visual limpa — não usam o gradiente da logo */
.theme-btn-dark    { background: #1a0d2e; }
.theme-btn-minimal { background: #f0e8ff; }
.theme-btn-light   { background: #ede8f8; }
.theme-btn-rustic  { background: #1a1209; border-color: rgba(201,164,60,0.45); }
.theme-btn-rustic:hover { border-color: #C9A43C; }
.theme-btn-rustic.active { border-color: #C9A43C; box-shadow: 0 0 0 2.5px rgba(201,164,60,0.35), 0 4px 14px rgba(201,164,60,0.3); }

/* Indicadores coloridos internos */
.theme-btn-dark::after    { content: ''; position: absolute; bottom: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: #E879C0; }
.theme-btn-minimal::after { content: ''; position: absolute; bottom: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: #c84fb0; }
.theme-btn-light::after   { content: ''; position: absolute; bottom: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: #6d28d9; }
.theme-btn-rustic::after  { content: ''; position: absolute; bottom: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: #C9A43C; }

.theme-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.theme-btn:hover .theme-tooltip { opacity: 1; }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999; padding: 1.1rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.65rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.nav-logo img {
  width: 32px; height: 37px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(232,121,192,0.5));
  -webkit-filter: drop-shadow(0 0 6px rgba(232,121,192,0.5));
  transition: filter 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(232,121,192,0.8));
  -webkit-filter: drop-shadow(0 0 12px rgba(232,121,192,0.8));
}

/* Nav links — mobile drawer é o default */
.nav-links {
  position: fixed; top: 0; right: -100%; width: 72%; max-width: 300px;
  height: 100vh; background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 2rem; gap: 1.4rem; transition: right 0.4s ease;
  border-left: 1px solid var(--border); z-index: 998;
}
.nav-links.open { right: 0; }
.nav-links a {
  color: var(--muted); font-size: 1.05rem; font-weight: 500;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--gradient);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
/* Nav CTA — botão header (distinto da logo gradient) */
.nav-cta {
  padding: 0.45rem 1.25rem !important;
  font-size: 0.82rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(232,121,192,0.35) !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(232,121,192,0.5) !important;
  background: var(--accent) !important;
  opacity: 0.92;
}
/* Minimal theme — CTA mais sóbrio */
[data-theme="minimal"] .nav-cta {
  background: var(--accent) !important;
  box-shadow: 0 4px 14px rgba(200,79,176,0.28) !important;
}
/* Light theme — CTA roxo corporativo */
[data-theme="light"] .nav-cta {
  background: var(--accent3) !important;
  box-shadow: 0 4px 14px rgba(109,40,217,0.25) !important;
}
[data-theme="light"] .nav-cta:hover {
  box-shadow: 0 8px 24px rgba(109,40,217,0.38) !important;
}
/* Rustic theme — CTA dourado */
[data-theme="rustic"] .nav-cta {
  background: var(--accent) !important;
  color: #0c0905 !important;
  box-shadow: 0 4px 16px rgba(201,164,60,0.32) !important;
}
[data-theme="rustic"] .nav-cta:hover {
  box-shadow: 0 8px 28px rgba(201,164,60,0.48) !important;
}
[data-theme="rustic"] .nav-logo {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
}

.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transition: all 0.35s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════
   HERO
═══════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  justify-content: center;
  overflow: hidden; padding: 0;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #07010A;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  /* Centre on the violinist — face top-left, hands+violin centre */
  background-position: 55% 30%;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease;
}
/* Overlay mobile: escuro sólido para legibilidade do texto centralizado */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(6,2,15,0.72);
}
/* ── MINIMAL THEME HERO ──
   Soft lavender background, photo semi-visible on the right */
[data-theme="minimal"] .hero-bg {
  filter: saturate(0.55) brightness(1.15) contrast(0.88);
  opacity: 0.35;
}
[data-theme="minimal"] .hero-bg::after {
  background:
    linear-gradient(
      to right,
      rgba(242,236,255,0.96) 0%,
      rgba(242,236,255,0.88) 22%,
      rgba(242,236,255,0.65) 45%,
      rgba(242,236,255,0.30) 68%,
      rgba(242,236,255,0.08) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(242,236,255,0.40) 0%,
      transparent 20%,
      transparent 75%,
      rgba(242,236,255,0.55) 100%
    );
}
[data-theme="minimal"] #hero {
  background: linear-gradient(135deg, #f3eeff 0%, #ebe3fb 45%, #dff5f5 100%);
}

/* ── LIGHT / ORGANIZATIONAL THEME HERO ──
   Clean white, photo clearly visible on the right */
[data-theme="light"] .hero-bg {
  filter: saturate(0.65) brightness(1.05) contrast(0.92);
  opacity: 0.42;
}
[data-theme="light"] .hero-bg::after {
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.90) 22%,
      rgba(255,255,255,0.68) 46%,
      rgba(255,255,255,0.28) 68%,
      rgba(255,255,255,0.05) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.35) 0%,
      transparent 18%,
      transparent 75%,
      rgba(255,255,255,0.55) 100%
    );
}
[data-theme="light"] #hero {
  background: #ffffff;
}

.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.12;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: var(--accent); top: -160px; left: -160px; animation-delay: 0s; }
.orb-2 { width: 320px; height: 320px; background: var(--accent2); bottom: -100px; left: -80px; animation-delay: 5s; }
.orb-3 { width: 280px; height: 280px; background: var(--accent3); top: 50%; left: 22%; transform: translate(-50%,-50%); animation-delay: 10s; }

[data-theme="minimal"] .orb, [data-theme="light"] .orb { opacity: 0.06; }

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(25px,-20px) scale(1.04); }
  66%      { transform: translate(-18px,15px) scale(0.96); }
}

/* #particles-canvas removed */

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 100%;
  width: 100%;
}

.hero-logo {
  width: 72px; height: 84px;
  margin: 0 auto 1.5rem;
  animation: fadeUp 1s ease forwards;
  filter: drop-shadow(0 2px 20px rgba(232,121,192,0.55)) drop-shadow(0 0 40px rgba(93,217,217,0.25));
  -webkit-filter: drop-shadow(0 2px 20px rgba(232,121,192,0.55)) drop-shadow(0 0 40px rgba(93,217,217,0.25));
}
[data-theme="minimal"] .hero-logo,
[data-theme="light"] .hero-logo {
  filter: drop-shadow(0 4px 16px rgba(200,79,176,0.25));
  -webkit-filter: drop-shadow(0 4px 16px rgba(200,79,176,0.25));
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
  text-align: center;
  animation: fadeUp 1s 0.15s ease both;
  text-shadow: 0 2px 15px rgba(6,2,15,0.95); /* Sombra reforçada para legibilidade */
}

.hero-title {
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 900; letter-spacing: -2px;
  line-height: 1.15; /* Aumentado de 1.0 para evitar colisão de letras no mobile */
  /* Line 1 "Orquestra": white → soft lavender */
  color: #f5eeff;
  -webkit-text-fill-color: #f5eeff;
  text-shadow: 0 2px 28px rgba(6,2,15,0.85), 0 0 60px rgba(232,121,192,0.15);
  animation: fadeUp 1.1s 0.25s ease both;
  margin-bottom: 1.4rem;
}
/* "Sublime" — brand accent, pops against dark overlay */
.hero-title-accent {
  display: block;
  background: linear-gradient(100deg, #E879C0 0%, #f5aadf 55%, #E879C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(232,121,192,0.55));
  font-style: italic;
}
/* Dark theme — white title */
[data-theme="dark"] .hero-title { color: #f5eeff; -webkit-text-fill-color: #f5eeff; text-shadow: 0 2px 28px rgba(6,2,15,0.85); }

/* Minimal theme — deep plum title */
[data-theme="minimal"] .hero-title {
  color: #2d1a4a;
  -webkit-text-fill-color: #2d1a4a;
  text-shadow: none;
}
[data-theme="minimal"] .hero-title-accent {
  background: linear-gradient(100deg, #c84fb0 0%, #9b35a2 55%, #c84fb0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 8px rgba(200,79,176,0.25));
}
[data-theme="minimal"] .hero-eyebrow { color: var(--accent); text-shadow: none; }
[data-theme="minimal"] .hero-subtitle { color: #5a3d7a; text-shadow: none; }

/* Light theme — charcoal title, brand violet accent */
[data-theme="light"] .hero-title {
  color: #1a1228;
  -webkit-text-fill-color: #1a1228;
  text-shadow: none;
}
[data-theme="light"] .hero-title-accent {
  background: linear-gradient(100deg, #6d28d9 0%, #9333ea 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 8px rgba(109,40,217,0.20));
}
[data-theme="light"] .hero-eyebrow { color: var(--accent); text-shadow: none; }
[data-theme="light"] .hero-subtitle { color: #4a3a6a; text-shadow: none; }

/* ── RUSTIC GOLD THEME HERO ──
   Warm sepia photo, deep near-black overlay on left, champagne + gold titles.
   Uses Cormorant Garamond for an "aged concert programme" feel.           */
[data-theme="rustic"] #hero {
  background: #0c0905;
}
[data-theme="rustic"] .hero-bg {
  filter: sepia(0.30) contrast(1.05) brightness(0.85) saturate(0.82);
  opacity: 1;
}
[data-theme="rustic"] .hero-bg::after {
  background:
    linear-gradient(
      to right,
      rgba(10,7,3,0.96) 0%,
      rgba(12,9,5,0.90) 20%,
      rgba(14,10,5,0.70) 40%,
      rgba(14,10,5,0.30) 65%,
      rgba(10,7,3,0.06) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10,7,3,0.55) 0%,
      transparent 22%,
      transparent 72%,
      rgba(10,7,3,0.75) 100%
    );
}
/* Orbs tinted gold for the rustic theme */
[data-theme="rustic"] .orb-1 { background: #C9A43C; opacity: 0.28; }
[data-theme="rustic"] .orb-2 { background: #7A5C14; opacity: 0.30; }
[data-theme="rustic"] .orb-3 { background: #E8D49A; opacity: 0.20; }

/* Hero text — parchment first line, gold italic second */
[data-theme="rustic"] .hero-title {
  color: #ede0c4;
  -webkit-text-fill-color: #ede0c4;
  font-weight: 300;
  font-size: clamp(3.5rem, 7.5vw, 6.2rem);
  letter-spacing: -1px;
  text-shadow: 0 2px 30px rgba(10,7,3,0.92), 0 0 60px rgba(201,164,60,0.12);
}
[data-theme="rustic"] .hero-title-accent {
  background: linear-gradient(100deg, #E8D49A 0%, #C9A43C 50%, #E8D49A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  filter: drop-shadow(0 2px 18px rgba(201,164,60,0.50));
}
[data-theme="rustic"] .hero-eyebrow {
  color: #C9A43C;
  letter-spacing: 4px;
  text-shadow: none;
}
[data-theme="rustic"] .hero-subtitle {
  color: rgba(237,224,196,0.72);
  text-shadow: 0 1px 14px rgba(10,7,3,0.80);
  font-style: normal;
  font-weight: 300;
}
[data-theme="rustic"] .hero-logo {
  filter: drop-shadow(0 2px 18px rgba(201,164,60,0.50)) sepia(0.25) brightness(1.15);
  -webkit-filter: drop-shadow(0 2px 18px rgba(201,164,60,0.50)) sepia(0.25) brightness(1.15);
}
[data-theme="rustic"] .scroll-indicator span { border-color: rgba(201,164,60,0.40); }

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: rgba(240,232,255,0.80);
  margin-bottom: 2.5rem;
  animation: fadeUp 1.1s 0.4s ease both;
  font-style: italic;
  max-width: 100%;
  margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 12px rgba(6,2,15,0.8);
}
[data-theme="minimal"] .hero-subtitle,
[data-theme="light"] .hero-subtitle { margin-bottom: 2.5rem; }

.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.1s 0.55s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-indicator span {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 11px; position: relative;
}
[data-theme="minimal"] .scroll-indicator span,
[data-theme="light"] .scroll-indicator span { border-color: rgba(0,0,0,0.2); }
.scroll-indicator span::before {
  content: ''; position: absolute;
  width: 4px; height: 7px;
  background: var(--accent); border-radius: 2px;
  left: 50%; top: 5px; transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(7px)} }
@keyframes scrollDot { 0%{top:5px;opacity:1}100%{top:18px;opacity:0} }

/* ═══════════════════════
   SOCIAL PROOF STRIP
═══════════════════════ */
#social-proof {
  background: var(--bg3);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 1.5rem;
}

.proof-item {
  text-align: center;
  display: flex; flex-direction: column; gap: 0.2rem;
}

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; letter-spacing: 0.5px; }

.proof-sep { width: 1px; height: 48px; background: var(--border); }

/* ═══════════════════════
   SOBRE
═══════════════════════ */
#sobre { background: var(--section-alt); }

.sobre-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }

.sobre-text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 1.2rem; color: var(--text); }
.sobre-text h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sobre-text p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.85; }

.sobre-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }

.stat-card {
  background: var(--counter-bg);
  border: 1px solid var(--card-b);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0;
  transition: opacity 0.35s;
}
.stat-card:hover::before { opacity: 0.05; }
.stat-card:hover { transform: translateY(-4px); border-color: var(--glass-b); box-shadow: var(--shadow); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--muted); font-size: 0.82rem; margin-top: 0.3rem; }

/* ═══════════════════════
   SERVIÇOS
═══════════════════════ */
#servicos { background: var(--bg); }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }

.service-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient);
  transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-b);
  box-shadow: var(--shadow-h);
  background: var(--card-hover);
}
.service-card:active { transform: scale(0.98); } /* Feedback tátil no mobile */
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 2.8rem; margin-bottom: 1.1rem; display: block;
  filter: drop-shadow(var(--service-icon-shadow));
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* ═══════════════════════
   GALERIA
═══════════════════════ */
#galeria { background: var(--section-alt); }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/2; cursor: pointer;
  background: var(--card); border: 1px solid var(--card-b);
}
.gallery-item img, .gallery-item svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-overlay svg { width: 36px; height: 36px; color: white; transform: scale(0.8); transition: transform 0.4s; }
.gallery-item:hover img,
.gallery-item:hover svg { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96); align-items: center; justify-content: center; padding: 2rem;
}
#lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.2rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; color: white;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: var(--accent); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; color: white;
  font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: var(--accent); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ═══════════════════════
   VÍDEOS
═══════════════════════ */
#videos { background: var(--bg); }

.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.3rem; }

.video-card {
  background: var(--card); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--card-b); transition: all 0.35s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); border-color: var(--glass-b); }

.video-wrapper { position: relative; padding-top: 56.25%; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.video-info { padding: 1.2rem 1.3rem; }
.video-info h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.video-info p { color: var(--muted); font-size: 0.85rem; }

/* ═══════════════════════
   DEPOIMENTOS
═══════════════════════ */
#depoimentos { background: var(--section-alt); overflow: hidden; }

.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1); }

.testimonial-card { min-width: 100%; padding: 0 1rem; }
.testimonial-inner {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 20px; padding: 2.5rem 3rem;
  max-width: 720px; margin: 0 auto;
  position: relative; text-align: center;
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .testimonial-inner { background: rgba(255,255,255,0.04); }

.testimonial-inner::before {
  content: '"'; position: absolute; top: -0.5rem; left: 2rem;
  font-size: 7rem; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.25; font-family: Georgia, serif;
}

.testimonial-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-text { color: var(--muted); font-size: 1.05rem; line-height: 1.85; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text); font-size: 1rem; }
.testimonial-event { color: var(--accent); font-size: 0.85rem; margin-top: 0.25rem; }

.testimonials-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s; border: none; }
.dot.active { width: 24px; border-radius: 4px; background: var(--accent); }

/* ═══════════════════════
   FAQ
═══════════════════════ */
#faq { background: var(--bg); }

.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--glass-b); }
.faq-item.open { border-color: var(--glass-b); box-shadow: var(--shadow); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: 0.97rem; color: var(--text);
  gap: 1rem; user-select: none;
  transition: color 0.3s; background: none; border: none;
  width: 100%; text-align: left; font-family: 'DM Sans', sans-serif;
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }

.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--tag-bg); border: 1px solid var(--tag-b);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.35s, background 0.3s;
  color: var(--accent); font-size: 1rem; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: white; border-color: var(--accent); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1), padding 0.3s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.4rem; }
.faq-answer p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

/* ═══════════════════════
   FINAL CTA
═══════════════════════ */
#final-cta {
  position: relative; overflow: hidden;
  background: var(--bg3);
  text-align: center; padding: 6rem 0;
}

.final-cta-bg {
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0.06;
}
[data-theme="dark"] .final-cta-bg { opacity: 0.12; }

.final-cta-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.final-cta-orb-1 { width: 400px; height: 400px; background: var(--accent); opacity: 0.1; top: -100px; left: -80px; }
.final-cta-orb-2 { width: 400px; height: 400px; background: var(--accent2); opacity: 0.08; bottom: -100px; right: -80px; }
[data-theme="minimal"] .final-cta-orb,
[data-theme="light"] .final-cta-orb { opacity: 0.04; }

.final-cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 1rem; }

.final-cta-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: var(--text); margin-bottom: 1rem;
}
.final-cta-content h2 span {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.final-cta-content p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.75; }

.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.final-cta-features {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.final-cta-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--muted); font-weight: 500;
}
.final-cta-feature span { font-size: 1.1rem; }

/* ═══════════════════════
   CONTATO
═══════════════════════ */
#contato { background: var(--bg); }

.contato-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }

.contato-info h2 { font-size: clamp(1.7rem,3.5vw,2.4rem); margin-bottom: 0.8rem; color: var(--text); }
.contato-info h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contato-info > p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; font-size: 0.97rem; }

.contato-links { display: flex; flex-direction: column; gap: 0.85rem; }

.contato-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--card);
  border: 1px solid var(--card-b); border-radius: 14px;
  transition: all 0.3s; color: var(--text); font-size: 0.93rem;
}
.contato-link:hover { border-color: var(--glass-b); background: var(--card-hover); transform: translateX(4px); box-shadow: var(--shadow); }

.clink-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.clink-icon svg { width: 18px; height: 18px; }
.icon-wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.icon-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-yt { background: linear-gradient(135deg, #ff0000, #cc0000); }
.icon-fb { background: linear-gradient(135deg, #1877f2, #0d6efd); }

.clink-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
.clink-info small { color: var(--muted); font-size: 0.82rem; }

/* Form */
.contact-form {
  background: var(--card); border: 1px solid var(--card-b);
  border-radius: 20px; padding: 2.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input-bg); border: 1px solid var(--input-b);
  border-radius: 10px; padding: 0.8rem 1rem;
  color: var(--text); font-size: 0.93rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s, background 0.3s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: var(--subtle); }
.form-group select option { background: var(--card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
footer {
  background: var(--bg2);
  padding: 3rem 0 1.8rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.3rem;
}

.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-logo img { width: 28px; height: 33px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(232,121,192,0.4)); }

.footer-tagline { color: var(--muted); font-size: 0.88rem; font-style: italic; }

.footer-socials { display: flex; gap: 0.7rem; }

.social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all 0.3s;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted);
}
.social-btn:hover { transform: translateY(-4px); background: var(--gradient); color: white; border-color: transparent; box-shadow: var(--shadow); }
.social-btn svg { width: 18px; height: 18px; }

.footer-divider { width: 100%; height: 1px; background: var(--border); }

.footer-copy { color: var(--muted); font-size: 0.8rem; text-align: center; opacity: 0.7; }

/* ═══════════════════════
   WHATSAPP FLOAT
═══════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.5rem; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: floatPulse 3.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 26px; height: 26px; }

@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ═══════════════════════
   DIFERENCIAIS
═══════════════════════ */
#diferenciais { background: var(--section-alt); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.diferencial-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
}
.diferencial-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.diferencial-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-b);
  box-shadow: var(--shadow-h);
  background: var(--card-hover);
}
.diferencial-card:active { transform: scale(0.98); } /* Feedback tátil no mobile */
.diferencial-card:hover::after { transform: scaleX(1); }

.diferencial-icon {
  width: 64px; height: 64px;
  background: var(--tag-bg);
  border: 1px solid var(--tag-b);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--accent);
}
.diferencial-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.diferencial-card:hover .diferencial-icon {
  background: var(--accent);
  color: #fff;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 25px rgba(212, 150, 197, 0.3);
}
.diferencial-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.7rem;
}
.diferencial-card p {
  color: var(--muted); font-size: 0.9rem; line-height: 1.75;
}

/* ═══════════════════════
   EQUIPE — GALERIA
═══════════════════════ */
#equipe { background: var(--section-alt); }

/* EQUIPE UNIFORM GRID */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.team-photo-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-photo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  z-index: 2;
}

.team-photo-item:hover img {
  transform: scale(1.1);
}

  /* Padrão editorial — 4:5 Portrait */
}

/* Lightbox Styles */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 10001;
}
.lightbox-close:hover { background: var(--accent); transform: rotate(90deg); }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05); border: none;
  color: #fff; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  z-index: 10001;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav svg { width: 32px; height: 32px; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

@media (max-width: 768px) {
  .lightbox-nav { width: 44px; height: 44px; background: rgba(0,0,0,0.3); }
  .lightbox-nav svg { width: 24px; height: 24px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}

/* ═══════════════════════
   SCROLL REVEAL
═══════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.from-left { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible { opacity: 1; transform: translate(0,0); }
.rd-1 { transition-delay: 0.1s; }
.rd-2 { transition-delay: 0.18s; }
.rd-3 { transition-delay: 0.26s; }
.rd-4 { transition-delay: 0.34s; }
.rd-5 { transition-delay: 0.42s; }
.rd-6 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST (min-width)
   Base = mobile. Enhancements sobem.
═══════════════════════════════════════════ */

/* ── Base mobile: elementos que precisam de override explícito ── */
.proof-sep { display: none; }
.sobre-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
.testimonial-inner { padding: 1.8rem 1.5rem; }
.hero-bg { background-position: 60% center; }
.theme-switcher { display: none; }

/* ── 480px+ — pequenas telas maiores ── */
@media (min-width: 480px) {
  .hero-ctas { flex-wrap: nowrap; }
  .final-cta-btns { flex-direction: row; align-items: center; flex-wrap: wrap; }
}

/* ── 600px+ — tablet pequeno ── */
@media (min-width: 600px) {
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-gallery      { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ── 769px+ — tablet / desktop ── */
@media (min-width: 769px) {
  section { padding: 5.5rem 0; }

  /* Nav: horizontal no desktop */
  .nav-links {
    position: static;
    height: auto; width: auto; max-width: none;
    background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    flex-direction: row; justify-content: center; align-items: center;
    padding: 0; gap: 1.8rem;
    border-left: none; transition: none; right: auto;
  }
  .nav-links a { font-size: 0.9rem; }
  .nav-hamburger { display: none; }

  /* Hero: alinhado à esquerda com a foto visível à direita */
  #hero {
    justify-content: flex-start;
    padding-left: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  }
  .hero-content { text-align: left; padding: 2rem 2rem 2rem 0; max-width: 620px; }
  .hero-logo { width: 80px; height: 93px; margin: 0 0 1.8rem 0; }
  .hero-eyebrow { text-align: left; }
  .hero-ctas { justify-content: flex-start; }
  .hero-subtitle { max-width: 480px; margin-left: 0; margin-right: 0; }
  .hero-title { line-height: 1.05; } /* Retorno ao estilo compacto para títulos grandes em desktop */
  .hero-bg { background-position: 55% 30%; }
  .hero-bg::after {
    background:
      linear-gradient(
        to right,
        rgba(6,2,15,0.94) 0%,
        rgba(6,2,15,0.88) 20%,
        rgba(6,2,15,0.72) 38%,
        rgba(6,2,15,0.42) 58%,
        rgba(6,2,15,0.18) 78%,
        rgba(6,2,15,0.08) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(6,2,15,0.50) 0%,
        transparent 22%,
        transparent 72%,
        rgba(6,2,15,0.70) 100%
      );
  }
  /* Restaurar overlays dos temas no desktop */
  [data-theme="minimal"] .hero-bg::after {
    background:
      linear-gradient(to right, rgba(242,236,255,0.96) 0%, rgba(242,236,255,0.88) 22%, rgba(242,236,255,0.65) 45%, rgba(242,236,255,0.30) 68%, rgba(242,236,255,0.08) 100%),
      linear-gradient(to bottom, rgba(242,236,255,0.40) 0%, transparent 20%, transparent 75%, rgba(242,236,255,0.55) 100%);
  }
  [data-theme="light"] .hero-bg::after {
    background:
      linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.90) 22%, rgba(255,255,255,0.68) 46%, rgba(255,255,255,0.28) 68%, rgba(255,255,255,0.05) 100%),
      linear-gradient(to bottom, rgba(255,255,255,0.35) 0%, transparent 18%, transparent 75%, rgba(255,255,255,0.55) 100%);
  }
  [data-theme="rustic"] .hero-bg::after {
    background:
      linear-gradient(to right, rgba(10,7,3,0.96) 0%, rgba(12,9,5,0.90) 20%, rgba(14,10,5,0.70) 40%, rgba(14,10,5,0.30) 65%, rgba(10,7,3,0.06) 100%),
      linear-gradient(to bottom, rgba(10,7,3,0.55) 0%, transparent 22%, transparent 72%, rgba(10,7,3,0.75) 100%);
  }

  /* Grids */
  .sobre-grid      { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .contato-grid    { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .form-row        { grid-template-columns: 1fr 1fr; }
  .proof-sep       { display: block; }
  .proof-grid      { display: flex; gap: 3rem; flex-wrap: wrap; }
  .testimonial-inner { padding: 2.5rem 3rem; }
  .theme-switcher  { display: flex; }
}

/* ── 961px+ — desktop grande ── */
@media (min-width: 961px) {
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid     { grid-template-columns: repeat(3, 1fr); }
  .team-gallery      { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ── 1100px+ — widescreen ── */
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .team-gallery  { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
