/* ==========================================================================
   DANZARIN BY LEMOS — WARM NIGHT LOUNGE DESIGN SYSTEM
   Versão 2.0 | Espaço Premium de Bailes e Experiências Sociais
   ========================================================================== */

/* Fonts loaded via <link> in HTML for better performance */

/* ==========================================================================
   CUSTOM PROPERTIES — A PALETA DA NOITE
   ========================================================================== */
:root {
  /* ── Cores base ── */
  --c-bg:         #080608;   /* Preto quente profundo */
  --c-bg-1:       #110A10;   /* Bordô escuro */
  --c-bg-2:       #1C0F1A;   /* Vinho profundo (cards, painéis) */
  --c-bg-3:       #261420;   /* Vinho médio (hover, realces) */
  --c-border:     rgba(232, 175, 100, 0.14);
  --c-border-hot: rgba(232, 175, 100, 0.35);

  /* ── Acento dourado / âmbar ── */
  --c-gold:       #E8AF64;
  --c-gold-light: #F5D49A;
  --c-gold-dim:   rgba(232, 175, 100, 0.12);

  /* ── Vermelho rubi / paixão ── */
  --c-ruby:       #B8273E;
  --c-ruby-bright:#D43050;
  --c-ruby-glow:  rgba(184, 39, 62, 0.25);

  /* ── Texto ── */
  --c-text:       #F0EAE0;   /* Creme quente */
  --c-text-sub:   #A89080;   /* Tom apagado elegante */
  --c-text-dim:   #5C4840;   /* Muito discreto */

  /* ── Tipografia ── */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Outfit', system-ui, sans-serif;

  /* ── Transições ── */
  --t-smooth: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  --t-quick:  all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* ── Sombras e brilhos ── */
  --shadow-card:   0 24px 48px rgba(0,0,0,0.55);
  --shadow-modal:  0 40px 80px rgba(0,0,0,0.8);
  --glow-gold:     0 0 30px rgba(232,175,100,0.18), 0 0 60px rgba(232,175,100,0.06);
  --glow-ruby:     0 0 30px rgba(184,39,62,0.3),   0 0 60px rgba(184,39,62,0.1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--c-bg);
}

/* Scrollbar noturna */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 3px; }

/* Seleção de texto */
::selection { background: var(--c-ruby); color: #fff; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-text);
}

p { color: var(--c-text-sub); }
a { color: inherit; text-decoration: none; transition: var(--t-quick); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec-pad { padding: 7rem 0; }

.text-center { text-align: center; }

.tag {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 1rem;
}

.divider {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-ruby), var(--c-gold));
  margin: 1.5rem 0;
}
.divider.center { margin: 1.5rem auto; }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--t-quick);
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.78rem; }
.btn-full { width: 100%; }

/* Primário — ouro quente */
.btn-primary {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.25,1,0.5,1);
  z-index: -1;
}
.btn-primary:hover { color: var(--c-bg); box-shadow: var(--glow-gold); }
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }

/* Secundário — rubi */
.btn-ruby {
  background: var(--c-ruby);
  color: #fff;
  border-color: var(--c-ruby);
}
.btn-ruby:hover { background: var(--c-ruby-bright); box-shadow: var(--glow-ruby); }

/* Fantasma */
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(240,234,224,0.25);
}
.btn-ghost:hover { border-color: var(--c-text); background: rgba(240,234,224,0.05); }

/* Link inline */
.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--c-gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-link:hover { color: var(--c-gold-light); }
.btn-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announce-bar {
  background: linear-gradient(90deg, var(--c-ruby), #7A1A28, var(--c-ruby));
  background-size: 200% 100%;
  animation: shiftGrad 6s ease infinite;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 200;
}
@keyframes shiftGrad {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--t-quick);
}

/* Announce bar offset */
.main-header { margin-top: 0; }
body { padding-top: 0; }

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(8,6,8,0);
  transition: var(--t-quick);
}

.main-header.scrolled .header-inner {
  background: rgba(8,6,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
  padding: 0.8rem 2rem;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main {
  font-family: var(--f-serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--c-text);
}
.logo-sub {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--c-gold);
  margin-top: 2px;
}

/* Nav links */
.nav-links { display: flex; gap: 2.2rem; }
.nav-link {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-sub);
  padding: 0.4rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--c-ruby), var(--c-gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
}
.nav-link:hover, .nav-link.active { color: var(--c-text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 1rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--c-text);
  transition: var(--t-quick);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--c-bg-1);
  border-left: 1px solid var(--c-border);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  transition: right 0.55s cubic-bezier(0.25,1,0.5,1);
}
.drawer.open { right: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}
.drawer-close {
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-text-sub);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-quick);
}
.drawer-close:hover { border-color: var(--c-gold); color: var(--c-gold); }

.drawer-nav { display: flex; flex-direction: column; gap: 2rem; margin-bottom: auto; }
.drawer-nav a {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--c-text-sub);
  transition: var(--t-quick);
}
.drawer-nav a:hover { color: var(--c-gold); padding-left: 6px; }

.drawer-footer { display: flex; flex-direction: column; gap: 1.5rem; }
.drawer-socials { display: flex; gap: 1.2rem; }
.drawer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-sub);
  transition: var(--t-quick);
}
.drawer-socials a:hover { border-color: var(--c-gold); color: var(--c-gold); }
.drawer-socials svg { width: 15px; height: 15px; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.45) contrast(1.1);
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Gradiente dramático de baixo */
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--c-bg) 0%, rgba(8,6,8,0.6) 45%, rgba(8,6,8,0.1) 75%, transparent 100%),
    linear-gradient(to right, rgba(8,6,8,0.5) 0%, transparent 60%);
  z-index: 1;
}

/* Partículas de luz dourada */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { opacity: 0;   transform: translateY(0)   scale(0); }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.4; }
  100% { opacity: 0;   transform: translateY(-100vh) scale(0.3); }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 2rem 6rem;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--c-gold);
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
  max-width: 800px;
  margin-bottom: 1.8rem;
}
.hero-title em { color: var(--c-gold); font-style: italic; }

.hero-desc {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
  color: rgba(240,234,224,0.75);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-text-dim);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--c-gold);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop { to { top: 100%; } }

/* ==========================================================================
   2. SOBRE / EXPERIÊNCIA DANZARIN
   ========================================================================== */
.sobre {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

/* Luz ambiente sutil */
.sobre::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(184,39,62,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.sobre-img-wrap {
  position: relative;
}
.sobre-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) contrast(1.08) sepia(0.1);
  border-radius: 2px;
}
.sobre-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--c-ruby);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--glow-ruby);
  border: 2px solid rgba(232,175,100,0.3);
}
.sobre-img-badge .num {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  color: var(--c-gold);
  line-height: 1;
}
.sobre-img-badge .lbl {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  max-width: 80px;
}

.sobre-body { }
.sobre-body .section-title { text-align: left; }
.sobre-body .divider { margin: 1.5rem 0; }

.sobre-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  color: var(--c-text-sub);
}

.sobre-pilares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.pilar {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--t-quick);
}
.pilar:hover { border-color: var(--c-border-hot); background: var(--c-bg-3); }
.pilar-icon { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.pilar-icon svg { width: 18px; height: 18px; }
.pilar h5 {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text);
  margin-bottom: 0.3rem;
}
.pilar p { font-size: 0.78rem; line-height: 1.5; margin: 0; }

/* ==========================================================================
   3. AGENDA DE BAILES & NOITES ESPECIAIS
   ========================================================================== */
.agenda {
  background: var(--c-bg-1);
  position: relative;
  overflow: hidden;
}

.agenda::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at bottom right, rgba(232,175,100,0.06), transparent 65%);
  pointer-events: none;
}

.agenda-header { margin-bottom: 4rem; }

/* Grid de eventos */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.evento-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: var(--t-smooth);
}

.evento-card:first-child { grid-row: span 2; height: auto; min-height: 500px; }

.evento-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25,1,0.5,1);
  filter: brightness(0.5) saturate(0.9);
}

.evento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,8,0.92) 0%, rgba(8,6,8,0.4) 55%, transparent 100%);
  transition: var(--t-smooth);
}

.evento-card:hover img { transform: scale(1.07); }
.evento-card:hover .evento-overlay { background: linear-gradient(to top, rgba(8,6,8,0.95) 0%, rgba(8,6,8,0.5) 55%, rgba(8,6,8,0.1) 100%); }
.evento-card:hover { border-color: var(--c-border-hot); box-shadow: var(--glow-ruby); }

.evento-content {
  position: absolute; bottom: 0; left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 5;
}

.evento-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-ruby);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 1px;
  margin-bottom: 1rem;
}
.evento-badge.gold {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
}
.evento-badge svg { width: 10px; height: 10px; }

.evento-data {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
}

.evento-nome {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.evento-desc {
  font-size: 0.82rem;
  color: var(--c-text-sub);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agenda-cta-row {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   4. ESPAÇO & AMBIENTE
   ========================================================================== */
.ambiente {
  background: var(--c-bg);
  position: relative;
}

.ambiente::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
}

.diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.diferencial {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  transition: var(--t-smooth);
  position: relative;
  overflow: hidden;
}
.diferencial::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--c-ruby), var(--c-gold));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.diferencial:hover { border-color: var(--c-border-hot); transform: translateY(-6px); }
.diferencial:hover::before { transform: scaleX(1); }

.dif-icon {
  width: 50px; height: 50px;
  border: 1px solid var(--c-border-hot);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  color: var(--c-gold);
  transition: var(--t-quick);
}
.diferencial:hover .dif-icon { background: var(--c-gold-dim); box-shadow: var(--glow-gold); }
.dif-icon svg { width: 22px; height: 22px; stroke-width: 1.2; }

.diferencial h4 {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  color: var(--c-text);
}
.diferencial p { font-size: 0.8rem; line-height: 1.6; }

/* Galeria de ambiente */
.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gal-item:first-child { grid-row: span 2; }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 1s cubic-bezier(0.25,1,0.5,1), filter 0.8s ease;
}
.gal-item:hover img { transform: scale(1.08); filter: brightness(0.85) saturate(1); }

.gal-label {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.gal-item:hover .gal-label { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   5. LOCAÇÃO & EVENTOS PRIVADOS
   ========================================================================== */
.locacao {
  background: var(--c-bg-1);
  position: relative;
  overflow: hidden;
}

.locacao-glow {
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,175,100,0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.locacao-img-stack { position: relative; }
.locacao-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.75) sepia(0.12);
}
.locacao-img-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 200px; height: 150px;
  object-fit: cover;
  border: 3px solid var(--c-bg-1);
  border-radius: 2px;
  filter: brightness(0.85);
  box-shadow: var(--shadow-card);
}

.locacao-body .section-title { text-align: left; font-size: 2.6rem; }
.locacao-body .divider { margin: 1.5rem 0; }

.locacao-body p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.4rem; }

.locacao-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 2rem 0 2.5rem;
}
.locacao-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: var(--c-text-sub);
}
.locacao-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 1px;
  background: var(--c-gold);
}

/* ==========================================================================
   6. MESTRES / ANIMADORES
   ========================================================================== */
.mestres {
  background: var(--c-bg);
}

.mestres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.mestre-card { display: flex; flex-direction: column; }

.mestre-foto {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.mestre-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.6) brightness(0.8) sepia(0.15) contrast(1.05);
  transition: var(--t-smooth);
}
.mestre-foto:hover img { filter: grayscale(0) brightness(0.9) sepia(0) contrast(1); transform: scale(1.04); }

.mestre-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,8,0.85) 0%, transparent 55%);
}
.mestre-foto-content {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
}

.mestre-role {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-gold);
  display: block;
  margin-bottom: 0.3rem;
}
.mestre-nome {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--c-text);
}

.mestre-bio { font-size: 0.82rem; line-height: 1.65; margin-bottom: 1rem; }
.mestre-estilo {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  border-top: 1px solid var(--c-border);
  padding-top: 0.8rem;
}

/* ==========================================================================
   7. DEPOIMENTOS
   ========================================================================== */
.depos {
  background: var(--c-bg-2);
  position: relative;
  overflow: hidden;
}
.depos::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-serif);
  font-size: 20rem;
  color: rgba(232,175,100,0.04);
  pointer-events: none;
  line-height: 1;
}

.depos-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.depo-slides { position: relative; min-height: 260px; overflow: hidden; }
.depo-slide {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25,1,0.5,1);
}
.depo-slide.active { opacity: 1; visibility: visible; transform: translateY(0); }

.depo-stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 2rem; }
.depo-stars svg { width: 14px; height: 14px; color: var(--c-gold); fill: var(--c-gold); }

.depo-quote {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 2.5rem;
}

.depo-author { display: flex; flex-direction: column; gap: 3px; }
.depo-name {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text);
}
.depo-info { font-size: 0.75rem; color: var(--c-text-dim); }

/* Carousel controls */
.depo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.ctrl-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: none;
  color: var(--c-text-sub);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-quick);
}
.ctrl-btn:hover { border-color: var(--c-gold); color: var(--c-gold); box-shadow: var(--glow-gold); }
.ctrl-btn svg { width: 16px; height: 16px; }
.ctrl-dots { display: flex; gap: 8px; }
.ctrl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-text-dim);
  cursor: pointer;
  transition: var(--t-quick);
}
.ctrl-dot.active { background: var(--c-gold); transform: scale(1.3); }

/* ==========================================================================
   8. INSTAGRAM FEED (SIMULADO)
   ========================================================================== */
.insta-sec {
  background: var(--c-bg-1);
  padding: 5rem 0;
}
.insta-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.insta-handle {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--c-gold);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.insta-post img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: var(--t-smooth);
}
.insta-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(184,39,62,0.7);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transition: var(--t-quick);
}
.insta-hover-overlay svg { width: 24px; height: 24px; }
.insta-post:hover img { transform: scale(1.1); filter: brightness(0.6) saturate(0.6); }
.insta-post:hover .insta-hover-overlay { opacity: 1; }

/* ==========================================================================
   9. CTA EMOCIONAL
   ========================================================================== */
.cta-sec {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,6,8,0.85) 0%, rgba(94,10,28,0.6) 50%, rgba(8,6,8,0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}
.cta-content .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--c-text);
}
.cta-content p { font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ==========================================================================
   10. CONTATO
   ========================================================================== */
.contato {
  background: var(--c-bg);
}

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

.contato-info { }
.contato-info .section-title { font-size: 2.4rem; text-align: left; }
.contato-info .divider { margin: 1.5rem 0; }
.contato-info .tag { font-size: 0.62rem; }

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.contato-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contato-item-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--c-border-hot);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold);
}
.contato-item-icon svg { width: 17px; height: 17px; }
.contato-item h5 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text);
  margin-bottom: 0.3rem;
}
.contato-item p, .contato-item a { font-size: 0.9rem; line-height: 1.6; }
.contato-item a:hover { color: var(--c-gold); }

.horarios {
  margin-top: 2.5rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 1.5rem;
}
.horarios h5 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.horarios p { font-size: 0.85rem; line-height: 1.8; }

/* Mapa */
.mapa-wrap {
  height: 500px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
}
.mapa-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85) contrast(1.05);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-border);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 300px; margin-bottom: 2rem; }

.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-sub);
  transition: var(--t-quick);
}
.footer-social a:hover { border-color: var(--c-gold); color: var(--c-gold); box-shadow: var(--glow-gold); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-text);
  margin-bottom: 1.8rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--c-text-sub);
}
.footer-links a:hover { color: var(--c-gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 2rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--c-text-dim); }
.footer-bottom a { color: var(--c-gold); }
.footer-bottom a:hover { color: var(--c-gold-light); }

/* ==========================================================================
   MODAL DE RESERVA
   ========================================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--c-bg-1);
  border: 1px solid var(--c-border-hot);
  border-radius: 3px;
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-modal);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25,1,0.5,1);
}
.modal-backdrop.open .modal-box { transform: scale(1) translateY(0); }

.modal-art {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.modal-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.9);
}
.modal-art-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(94,10,28,0.92) 0%, rgba(8,6,8,0.4) 100%);
}
.modal-art-content {
  position: absolute;
  bottom: 0; left: 0;
  padding: 2.5rem;
  z-index: 5;
}
.modal-art-content .tag { margin-bottom: 0.8rem; }
.modal-art-content h3 {
  font-family: var(--f-serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.modal-art-content p { font-size: 0.82rem; color: rgba(240,234,224,0.7); }

.modal-form-area {
  padding: 3rem 2.5rem;
  overflow-y: auto;
  max-height: 85vh;
}
.modal-close-btn {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  color: var(--c-text-sub);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 20;
  transition: var(--t-quick);
}
.modal-close-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }
.modal-close-btn svg { width: 16px; height: 16px; }

.modal-form-area h4 {
  font-size: 1.9rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.modal-form-area > p { font-size: 0.82rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-sub);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  font-family: var(--f-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--c-text);
  outline: none;
  transition: var(--t-quick);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(232,175,100,0.1);
  background: var(--c-bg-2);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23A89080' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  min-height: 300px;
}
.success-icon { color: var(--c-gold); margin-bottom: 1.5rem; }
.success-icon svg { width: 60px; height: 60px; stroke-width: 1; }
.form-success h4 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.form-success p { max-width: 300px; font-size: 0.88rem; margin-bottom: 2rem; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--c-text-sub); cursor: pointer;
  transition: var(--t-quick);
}
.lightbox-close:hover { color: var(--c-gold); }
.lightbox-close svg { width: 28px; height: 28px; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 0 80px rgba(0,0,0,0.9);
}

/* ==========================================================================
   WHATSAPP FLOATING CTA
   ========================================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wa-tip {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-hot);
  color: var(--c-gold);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 1px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.wa-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-bg-2);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-gold);
  position: relative;
}
.wa-circle::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: 0.7; }
  to   { transform: scale(1.5); opacity: 0; }
}
.wa-circle svg { width: 22px; height: 22px; }
.whatsapp-btn:hover .wa-tip { opacity: 1; transform: translateX(0); }
.whatsapp-btn:hover .wa-circle { background: var(--c-gold); color: var(--c-bg); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25,1,0.5,1), transform 1s cubic-bezier(0.25,1,0.5,1);
  will-change: transform, opacity;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.done { opacity: 1; transform: translateY(0) translateX(0); }

/* Stagger via nth-child */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* ==========================================================================
   FAQ — PERGUNTAS FREQUENTES
   ========================================================================== */
.faq { background: var(--c-bg); position: relative; }

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:first-child { border-top: 1px solid var(--c-border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: var(--t-quick);
}
.faq-q span {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.faq-q:hover span { color: var(--c-gold); }
.faq-q svg {
  width: 18px; height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.25,1,0.5,1);
}
.faq-item.open .faq-q svg  { transform: rotate(180deg); }
.faq-item.open .faq-q span { color: var(--c-gold); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s cubic-bezier(0.25,1,0.5,1);
}
.faq-item.open .faq-a { max-height: 320px; }

.faq-a p {
  padding-bottom: 1.8rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}
.faq-a p a       { color: var(--c-gold); }
.faq-a p a:hover { color: var(--c-gold-light); text-decoration: underline; }
.faq-a p strong  { color: var(--c-text); font-weight: 500; }
.faq-a p em      { color: var(--c-gold); font-style: italic; }

/* ==========================================================================
   WAVE SEPARATORS (curvas entre seções)
   ========================================================================== */
.wave-sep {
  line-height: 0;
  overflow: hidden;
  display: block;
  margin-bottom: -1px;
}
.wave-sep svg {
  width: 100%;
  height: 50px;
  display: block;
}

/* ==========================================================================
   CTA PULSE — micro-animação nas chamadas principais
   ========================================================================== */
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(184,39,62,0.35), 0 0 30px rgba(184,39,62,0.12); }
  50%       { box-shadow: 0 0 28px rgba(184,39,62,0.6),  0 0 55px rgba(184,39,62,0.22); }
}
.hero .btn-ruby {
  animation: btnGlow 2.8s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item:first-child { grid-row: auto; }
  .diferenciais { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .sobre-img { height: 420px; }
  .locacao-grid { grid-template-columns: 1fr; gap: 3rem; }
  .locacao-img-main { height: 380px; }
  .locacao-img-accent { display: none; }
  .mestres-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .eventos-grid { grid-template-columns: 1fr; }
  .evento-card:first-child { grid-row: auto; min-height: 380px; }
  .evento-card { height: 340px; }
  .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mapa-wrap { height: 380px; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-art { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .sec-pad { padding: 5rem 0; }
  .nav-links { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.6rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .sobre-pilares { grid-template-columns: 1fr; }
  .mestres-grid { grid-template-columns: 1fr; }
  .diferenciais { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-grid { grid-template-columns: 1fr; gap: 1rem; }
  .modal-form-area { padding: 2rem 1.5rem; }
  .scroll-hint { display: none; }
  .sobre-img-badge { width: 100px; height: 100px; bottom: -1rem; right: -0.5rem; }
  .sobre-img-badge .num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .diferenciais { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-quote { font-size: 1.2rem; }
  .form-row { flex-direction: column; gap: 0; }
}
