﻿/* ============================================================
   PIXEL FEST — Style System
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #000000;
  --black-soft:   #0c0c0c;
  --black-card:   #141414;
  --black-hover:  #1e1e1e;
  --white:        #ffffff;
  --white-muted:  #e0e0e0;
  --gray:         #555555;
  --gray-light:   #999999;
  --gold:         #c49a2c;
  --gold-light:   #e0b84a;
  --gold-dark:    #a07828;
  --gold-gradient: linear-gradient(135deg, #c49a2c 0%, #e0b84a 50%, #c49a2c 100%);
  --border:       rgba(255,255,255,0.08);
  --border-gold:  rgba(196,154,44,0.35);

  --font-heading: 'Roboto', sans-serif;
  --font-body:    'Roboto', sans-serif;

  --nav-h:   80px;
  --sec-pad: 100px 0;
  --max-w:   1220px;

  --ease:  all 0.3s ease;
  --ease-slow: all 0.6s ease;
  --shadow-gold: 0 0 40px rgba(196,154,44,0.18);
  --whatsapp:       #25D366;
  --whatsapp-hover: #1ebe5a;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition: var(--ease); }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }
.section    { padding: var(--sec-pad); }
.text-gold  { color: var(--gold); }
.center     { text-align:center; }

.fade-in {
  opacity:0;
  transform:translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.1s; }
.delay-2 { transition-delay:0.2s; }
.delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; }

/* Section labels */
.label {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:12px;
}
.label::before, .label::after { content:'✦'; font-size:0.55rem; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight:700;
  line-height:1.15;
  margin-bottom:14px;
}
.section-sub {
  font-size:1.05rem;
  color: var(--white-muted);
  max-width:540px;
  line-height:1.75;
}

.divider {
  width:56px;
  height:2px;
  background: var(--gold-gradient);
  margin:18px 0;
}
.divider.center { margin:18px auto; }

/* Buttons */
.btn {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:14px 32px;
  font-family:var(--font-body);
  font-size:0.9rem;
  font-weight:600;
  letter-spacing:0.04em;
  border-radius:4px;
  transition: var(--ease);
  cursor:pointer;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
}
.btn-gold:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 36px rgba(196,154,44,0.45);
}
.btn-outline {
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.28);
}
.btn-outline:hover {
  border-color:var(--white);
  background:rgba(255,255,255,0.05);
  transform:translateY(-2px);
}
.btn-white {
  background:var(--white);
  color:var(--black);
}
.btn-white:hover {
  background:var(--white-muted);
  transform:translateY(-2px);
  box-shadow:0 10px 36px rgba(255,255,255,0.12);
}

/* ── Roboto heading adjustments ──────────────────────────────── */
.section-title     { font-weight: 800; letter-spacing: -0.02em; }
.hero-title        { font-weight: 900; letter-spacing: -0.03em; }
.hero-title em     { font-style: italic; }
.svc-hero-title    { font-weight: 900; letter-spacing: -0.03em; }
.svc-detail-text h3{ font-weight: 800; }
.nav-logo          { letter-spacing: -0.01em; }
.tcard-quote       { font-family: Georgia, serif; } /* keep quote mark serif */

/* ── Logo image ──────────────────────────────────────────────── */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width:768px) { .logo-img { height: 34px; } }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: var(--sec-pad); background: var(--black-soft); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .divider { margin: 18px auto; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--border-gold); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.75;
}

/* ── Clients strip ───────────────────────────────────────────── */
.clients-section { padding: 60px 0; background: var(--black); border-top: 1px solid var(--border); }
.clients-label { text-align: center; margin-bottom: 36px; }
.clients-label p { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }


/* ── Service page pricing ────────────────────────────────────── */
.svc-pricing { padding: var(--sec-pad); background: var(--black-card); }
.svc-pricing .section-title { text-align: center; }
.svc-pricing .divider { margin: 18px auto 48px; }

.price-table { max-width: 720px; margin: 0 auto; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
  transition: var(--ease);
}
.price-row:hover { border-color: var(--border-gold); }
.price-row.highlight { border-color: var(--gold); background: linear-gradient(to right, var(--black-card), #1a1000); }
.price-row-label { font-weight: 600; font-size: 0.95rem; }
.price-row-label small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--gray-light); margin-top: 2px; }
.price-avista { font-size: 1.3rem; font-weight: 900; color: var(--gold); white-space: nowrap; }
.price-12x    { font-size: 0.8rem; color: var(--gray-light); text-align: right; white-space: nowrap; }
.price-extras { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.price-tag {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width:560px) {
  .price-row { grid-template-columns: 1fr; gap: 6px; }
  .price-12x { text-align: left; }
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  transition:background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background:rgba(0,0,0,0.94);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}
.navbar .container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}
.nav-logo {
  font-family:var(--font-heading);
  font-size:1.65rem;
  font-weight:700;
  letter-spacing:0.04em;
  white-space:nowrap;
}
.nav-logo span { color:var(--gold); }

.nav-links {
  display:flex;
  align-items:center;
  gap:4px;
}
.nav-links a {
  padding:8px 14px;
  font-size:0.875rem;
  font-weight:500;
  color:var(--white-muted);
  border-radius:4px;
  white-space:nowrap;
}
.nav-links a:hover { color:var(--white); background:rgba(255,255,255,0.05); }

.nav-right {
  display:flex;
  align-items:center;
  gap:12px;
}
.nav-right .btn { padding:10px 22px; font-size:0.85rem; }
.nav-right .btn-gold {
  background: var(--whatsapp);
  color: #fff;
}
.nav-right .btn-gold:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 10px 36px rgba(37,211,102,0.35);
}
.mobile-menu .btn-gold {
  background: var(--whatsapp);
  color: #fff;
}
.mobile-menu .btn-gold:hover {
  background: var(--whatsapp-hover);
}

.menu-btn {
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
}
.menu-btn span {
  display:block;
  width:24px; height:2px;
  background:var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin:center;
  will-change: transform;
}
.menu-btn.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity:0; }
.menu-btn.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display:none;
  position:fixed;
  top:var(--nav-h);
  left:0; right:0;
  background:rgba(0,0,0,0.97);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:20px 24px 28px;
  z-index:998;
  flex-direction:column;
  gap:4px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  padding:13px 16px;
  font-size:0.95rem;
  color:var(--white-muted);
  border-bottom:1px solid var(--border);
  border-radius:4px;
}
.mobile-menu a:last-of-type { border-bottom:none; }
.mobile-menu a:hover { color:var(--white); background:rgba(255,255,255,0.04); }
.mobile-menu .btn { margin-top:12px; width:100%; justify-content:center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute;
  inset:0;
  background-image: url('../images/hero-evento.webp');
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at 18% 52%, rgba(196,154,44,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 82% 22%, rgba(255,255,255,0.03) 0%, transparent 55%),
    linear-gradient(160deg, rgba(5,5,5,0.80) 0%, rgba(10,10,10,0.70) 50%, rgba(18,18,18,0.80) 100%);
}
.hero-stars { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.star {
  position:absolute;
  border-radius:50%;
  background:white;
  animation:twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay:var(--del, 0s);
}
@keyframes twinkle {
  0%,100% { opacity:0.15; transform:scale(1); }
  50%      { opacity:0.9;  transform:scale(1.6); }
}
.hero-content {
  position:relative;
  z-index:2;
  padding-top:var(--nav-h);
  padding-bottom:60px;
}
.hero-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:22px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content:'✦'; font-size:0.55rem; }
.hero-title {
  font-family:var(--font-heading);
  font-size:clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight:900;
  line-height:1.05;
  margin-bottom:24px;
  max-width:680px;
  white-space:nowrap;
}
.hero-title em { color:var(--gold); font-style:italic; }
.hero-title .line-2 { display:block; white-space:nowrap; }
.hero-sub {
  font-size:clamp(1rem, 1.8vw, 1.2rem);
  color:var(--white-muted);
  max-width:520px;
  margin-bottom:42px;
  line-height:1.8;
}
.hero-ctas { display:flex; gap:16px; flex-wrap:wrap; }
.hero-ctas .btn { min-width:220px; justify-content:center; }
.hero-scroll {
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:var(--gray); font-size:0.7rem; letter-spacing:0.18em; text-transform:uppercase;
  animation:float 2.2s ease-in-out infinite;
  will-change: transform;
}
.hero-scroll svg { width:18px; height:18px; stroke:currentColor; fill:none; }
@keyframes float {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(9px); }
}

/* ── Stats strip ────────────────────────────────────────────── */
.stats-strip {
  background:var(--black-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:44px 0;
}
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  text-align:center;
}
.stat-item { padding:12px; }
.stat-number {
  font-family:var(--font-heading);
  font-size:clamp(2.2rem, 4vw, 3.2rem);
  font-weight:700;
  line-height:1;
  margin-bottom:8px;
}
.stat-number span { color:var(--gold); }
.stat-label { font-size:0.82rem; color:var(--gray-light); letter-spacing:0.04em; }

/* ── Services section ───────────────────────────────────────── */
.services { padding:var(--sec-pad); background:var(--black-soft); }
.services-header { text-align:center; margin-bottom:56px; }
.services-header .divider { margin:18px auto; }
.services-header .section-sub { margin:0 auto; }

.services-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:3px;
}

.srv-card {
  position:relative;
  overflow:hidden;
  aspect-ratio:3/4;
  display:block;
}

.srv-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform 0.65s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.srv-card:hover .srv-bg { transform:scale(1.07); }

.srv-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to top,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.0) 38%,
    rgba(0,0,0,.0) 100%);
  transition: background 0.4s ease;
}
.srv-card:hover .srv-overlay {
  background: rgba(0,0,0,.60);
}

.srv-content {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:22px 20px 10px;
  transform:translateY(0);
  transition:transform 0.4s ease;
}
.srv-card:hover .srv-content { transform:translateY(0); }

.srv-icon { font-size:2rem; display:block; margin-bottom:10px; }
.srv-name {
  font-family:var(--font-heading);
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:6px;
}
.srv-desc {
  font-size:0.875rem;
  color:var(--white-muted);
  line-height:1.6;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height 0.4s ease, opacity 0.4s ease;
  margin-bottom:0;
}
.srv-card:hover .srv-desc { max-height:120px; opacity:1; margin-bottom:14px; }

.srv-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
  opacity:0;
  transform:translateX(-10px);
  transition:opacity 0.35s ease, transform 0.35s ease;
}
.srv-card:hover .srv-link { opacity:1; transform:translateX(0); }
.srv-link svg { width:14px; height:14px; stroke:currentColor; fill:none; }

/* Service card gradient backgrounds */
.bg-360    { background:linear-gradient(160deg,#0d0020 0%,#2a0060 60%,#1a0040 100%); }
.bg-cabine { background:linear-gradient(160deg,#1a0010 0%,#450028 60%,#280018 100%); }
.bg-retro  { background:linear-gradient(160deg,#160a00 0%,#3d2000 60%,#200d00 100%); }
.bg-totem  { background:linear-gradient(160deg,#001020 0%,#003050 60%,#001828 100%); }
.bg-led    { background:linear-gradient(160deg,#000d1a 0%,#001a3d 40%,#0d0030 80%,#001a10 100%); }

/* LED animated glow */
.bg-led::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,200,255,0.12) 0%,transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(180,0,255,0.12) 0%,transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(0,255,120,0.08) 0%,transparent 40%);
  animation:ledGlow 4s ease-in-out infinite alternate;
}
@keyframes ledGlow {
  0%   { opacity:0.5; }
  100% { opacity:1; }
}

/* ── Why us ─────────────────────────────────────────────────── */
.why-us {
  padding:var(--sec-pad);
  background:url('../images/home.webp') center 25% / cover no-repeat;
  position:relative;
}
.why-us::before {
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.82);
}
.why-us .container { position:relative; z-index:1; }

.why-header { max-width:600px; margin:0 auto 56px; }
.why-header .section-sub { margin:0 auto; }

.why-cards {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.why-card {
  background:var(--black-card);
  border:1px solid var(--border);
  border-radius:10px;
  padding:32px 24px 28px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  gap:14px;
  transition:border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  border-color:var(--border-gold);
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(196,154,44,0.1);
}
.why-icon {
  width:52px; height:52px;
  flex-shrink:0;
  border-radius:10px;
  background:var(--black-soft);
  border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
}
.why-icon svg { width:22px; height:22px; }
.why-card h3 { font-size:0.95rem; font-weight:700; margin:0; line-height:1.35; }
.why-card p  { font-size:0.82rem; color:var(--gray-light); line-height:1.65; margin:0; }
.svc-video-wrap-short {
  position:relative;
  padding-bottom:177.78%;
  height:0;
  overflow:hidden;
  border-radius:12px;
  border:1px solid var(--border-gold);
}
.svc-video-wrap-short iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }
.why-img-wrap {
  width:100%;
  aspect-ratio:4/5;
  border-radius:4px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--black-card);
  display:flex; align-items:center; justify-content:center;
}
.why-img-inner {
  width:100%; height:100%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(196,154,44,0.18) 0%,transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(255,255,255,0.04) 0%,transparent 50%),
    linear-gradient(160deg,#0d0d0d,#1a1a1a);
  display:flex; align-items:center; justify-content:center;
  font-size:6rem;
}
.why-badge {
  position:absolute;
  bottom:-18px; left:-18px;
  background:var(--gold-gradient);
  color:var(--black);
  padding:20px 26px;
  border-radius:4px;
  font-weight:700;
  font-size:0.82rem;
  text-align:center;
  line-height:1.5;
  box-shadow:0 8px 32px rgba(196,154,44,0.35);
}
.why-badge strong { display:block; font-family:var(--font-heading); font-size:2.2rem; line-height:1; }

/* ── Gallery strip ──────────────────────────────────────────── */
.gallery-section { padding:var(--sec-pad); background:var(--black-soft); overflow:hidden; }
.gallery-section .section-sub { margin:0 auto; }
.gallery-header { text-align:center; margin-bottom:48px; }
.gallery-header .divider { margin:18px auto; }

.gstrip-wrapper { overflow:hidden; }
.gstrip-track {
  display:flex;
  gap:3px;
  width:max-content;
  animation: gstrip-scroll 32s linear infinite;
}
.gstrip-track:hover { animation-play-state:paused; }

@keyframes gstrip-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

.gitem {
  flex-shrink:0;
  width:280px; height:380px;
  border-radius:2px;
  overflow:hidden;
  position:relative;
}
.gitem-inner {
  width:100%; height:100%;
  transition:transform 0.5s ease;
  will-change: transform;
}
.gitem-inner img {
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.gitem:hover .gitem-inner { transform:scale(1.04); }

/* Gallery color placeholders */
.gc-1  { background:linear-gradient(160deg,#1a0040,#4d1a80); }
.gc-2  { background:linear-gradient(160deg,#001820,#004560); }
.gc-3  { background:linear-gradient(160deg,#200010,#5a0030); }
.gc-4  { background:linear-gradient(160deg,#0a1000,#1e3000); }
.gc-5  { background:linear-gradient(160deg,#1a0a00,#4d2800); }
.gc-6  { background:linear-gradient(160deg,#000d1a,#003d5a); }
.gc-7  { background:linear-gradient(160deg,#180020,#3d0060); }
.gc-8  { background:linear-gradient(160deg,#001a18,#003d38); }
.gc-9  { background:linear-gradient(160deg,#1a0010,#450028); }

.gitem-label {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:24px 18px 18px;
  background:linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
}

/* Sparkle overlay on gallery items */
.gitem::after {
  content:'✦';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%) scale(0);
  font-size:2rem;
  color:rgba(196,154,44,0.5);
  transition:transform 0.4s ease, opacity 0.4s ease;
  opacity:0;
}
.gitem:hover::after {
  transform:translate(-50%,-50%) scale(1);
  opacity:1;
}

/* ── Clients ────────────────────────────────────────────────── */
.clients-section { padding:var(--sec-pad); background:var(--black-soft); }
.clients-section .container { max-width:980px; padding:0 48px; }
.clients-header { text-align:center; margin-bottom:48px; }
.clients-header .divider { margin:18px auto; }

.clients-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}

.client-card {
  background:var(--black-card);
  border:1px solid var(--border-gold);
  border-radius:8px;
  padding:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:88px;
  transition:var(--ease);
}
.client-card:hover { border-color:var(--gold); transform:translateY(-3px); }
.client-card img {
  max-width:100%;
  max-height:64px;
  object-fit:contain;
  filter:grayscale(1) brightness(1.4);
  transition:filter 0.3s ease;
}
.client-card:hover img { filter:grayscale(0) brightness(1); }

.client-more {
  flex-direction:column;
  gap:6px;
  cursor:default;
  border-style:dashed;
}
.client-more:hover { transform:none; }
.client-more-plus {
  font-size:1.8rem;
  font-weight:900;
  color:var(--gold);
  line-height:1;
}
.client-more-text {
  font-size:0.72rem;
  font-weight:600;
  color:var(--gray-light);
  text-transform:uppercase;
  letter-spacing:0.08em;
  text-align:center;
}

.clients-cta {
  margin-top:40px;
  padding:28px 36px;
  background:var(--black-card);
  border:1px solid var(--border-gold);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.clients-cta h3 {
  font-size:1.15rem;
  font-weight:700;
  margin:0;
}

@media (max-width:1024px) {
  .clients-grid { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:600px) {
  .clients-grid { grid-template-columns:repeat(2,1fr); }
  .client-card img { max-height:60px; }
  .clients-cta { flex-direction:column; text-align:center; padding:24px; }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { padding:var(--sec-pad); background:var(--black); }
.testimonials-header { text-align:center; margin-bottom:56px; }
.testimonials-header .divider { margin:18px auto; }

.tgrid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.tcard {
  background:var(--black-card);
  border:1px solid var(--border);
  border-radius:8px;
  padding:32px;
  transition:var(--ease);
  position:relative;
}
.tcard:hover {
  border-color:var(--border-gold);
  box-shadow:var(--shadow-gold);
  transform:translateY(-4px);
}
.tcard-quote {
  font-family:var(--font-heading);
  font-size:4rem;
  line-height:0.5;
  color:var(--gold);
  opacity:0.25;
  margin-bottom:14px;
  display:block;
}
.tcard-stars { color:var(--gold); letter-spacing:3px; font-size:0.9rem; margin-bottom:14px; }
.tcard-text {
  font-size:0.93rem;
  color:var(--white-muted);
  line-height:1.75;
  margin-bottom:24px;
  font-style:italic;
}
.tcard-author { display:flex; align-items:center; gap:12px; }
.tcard-avatar {
  width:44px; height:44px;
  border-radius:50%;
  background:var(--black-hover);
  border:2px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
}
.tcard-name { font-weight:600; font-size:0.95rem; margin-bottom:2px; }
.tcard-event { font-size:0.78rem; color:var(--gray-light); }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  padding:var(--sec-pad);
  background:url('../images/galeria/galeria-9.webp') center 30% / cover no-repeat;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-section::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.82) 100%);
}
.cta-section::after {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center, rgba(196,154,44,0.08) 0%, transparent 65%);
}
.cta-content { position:relative; z-index:1; }
.cta-label { color:var(--gold); font-size:0.72rem; letter-spacing:0.22em; text-transform:uppercase; margin-bottom:14px; font-weight:700; }
.cta-title {
  font-family:var(--font-heading);
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:700;
  margin-bottom:14px;
  max-width:720px;
  margin-left:auto; margin-right:auto;
}
.cta-sub { font-size:1.05rem; color:var(--white-muted); margin-bottom:40px; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── Missão Visão Valores ───────────────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mvv-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.mvv-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.mvv-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--black-soft);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.mvv-icon svg { width: 22px; height: 22px; }
.mvv-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold); margin: 0; }
.mvv-card p  { font-size: 0.9rem; color: var(--gray-light); line-height: 1.75; margin: 0; }

@media (max-width: 768px) {
  .mvv-grid { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background:var(--black);
  border-top:1px solid var(--border);
  padding:64px 0 28px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:48px;
  margin-bottom:48px;
}
.footer-brand .nav-logo { display:inline-block; margin-bottom:16px; font-size:1.5rem; }
.footer-brand p {
  font-size:0.875rem;
  color:var(--white-muted);
  line-height:1.75;
  max-width:260px;
  margin-bottom:22px;
}
.footer-socials { display:flex; gap:10px; }
.fsoc {
  width:40px; height:40px;
  border:1px solid var(--border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem;
  color:var(--gray-light);
  transition:var(--ease);
}
.fsoc:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

.footer-col h4 {
  font-family:var(--font-heading);
  font-size:0.92rem;
  font-weight:600;
  margin-bottom:20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col ul a { font-size:0.875rem; color:var(--white-muted); }
.footer-col ul a:hover { color:var(--white); }

.footer-contact { display:flex; flex-direction:column; gap:9px; }
.fcontact-item { display:flex; align-items:center; gap:10px; font-size:0.875rem; color:var(--white-muted); }
.fcontact-item span:first-child { font-size:1rem; }

.footer-bottom {
  border-top:1px solid var(--border);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:0.78rem;
  color:var(--gray);
}
.footer-bottom a { color:var(--gray-light); }
.footer-bottom a:hover { color:var(--white); }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.wa-float {
  position:fixed;
  bottom:32px; right:32px;
  z-index:900;
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--whatsapp);
  color:white;
  padding:13px 22px;
  border-radius:50px;
  font-size:0.875rem;
  font-weight:600;
  box-shadow:0 8px 32px rgba(37,211,102,0.4);
  transition:var(--ease);
}
.wa-float:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 44px rgba(37,211,102,0.52);
  color:white;
}
.wa-float svg { width:22px; height:22px; flex-shrink:0; }
.wa-pulse {
  position:absolute;
  inset:-5px;
  border-radius:50px;
  background:rgba(37,211,102,0.3);
  animation:waPulse 2.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { transform:scale(1); opacity:0.4; }
  50%      { transform:scale(1.1); opacity:0; }
}

/* ======================================================
   SERVICE PAGES
   ====================================================== */

/* Service hero */
.svc-hero {
  position:relative;
  height:72vh;
  min-height:520px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.svc-hero-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.svc-hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to top,
    rgba(0,0,0,.96) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.18) 100%);
}
.svc-hero-content {
  position:relative;
  z-index:2;
  padding-bottom:60px;
  width:100%;
}
.svc-hero-title {
  font-family:var(--font-heading);
  font-size:clamp(2.6rem,6.5vw,5rem);
  font-weight:900;
  line-height:1.05;
  margin-bottom:14px;
}
.svc-hero-sub { font-size:1.1rem; color:var(--white-muted); max-width:560px; line-height:1.75; }

/* Breadcrumb */
.breadcrumb {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.8rem;
  color:var(--gray-light);
  margin-bottom:36px;
}
.breadcrumb a { color:var(--gray-light); text-decoration:underline; text-underline-offset:3px; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb [aria-current="page"] { color:var(--gold); }
.breadcrumb-sep { opacity:0.4; }

/* Service detail */
.svc-detail { padding:0; background:var(--black-soft); overflow:hidden; }
.svc-detail-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.svc-detail-text h3 {
  font-family:var(--font-heading);
  font-size:1.85rem;
  font-weight:700;
  margin-bottom:20px;
}
.svc-detail-text p { color:var(--white-muted); line-height:1.8; margin-bottom:14px; font-size:0.95rem; }

/* ── Magnetic title ─────────────────────────────────────────── */
.svc-magnetic-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}
.svc-magnetic-title em { color: var(--gold); font-style: italic; }

/* ── Como funciona ──────────────────────────────────────────── */
.svc-howto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.svc-howto-img {
  position: relative;
  overflow: hidden;
}
.svc-howto-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-howto-content {
  padding: 64px 56px;
  background: var(--black-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-howto-content .divider { margin: 18px 0 32px; }

.svc-howto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.svc-howto-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.svc-howto-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: #000;
  background: var(--gold-gradient);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0;
}
.svc-howto-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-howto-list li strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.svc-howto-list li div span {
  font-size: 0.85rem;
  color: #c8c8c8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .svc-howto { grid-template-columns: 1fr; min-height: auto; }
  .svc-howto-img { height: 280px; position: relative; }
  .svc-howto-content { padding: 40px 24px; }
}

/* ── Como funciona steps ────────────────────────────────────── */
.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0;
  position: relative;
}
.svc-step {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease;
}
.svc-step:hover { border-color: var(--border-gold); }
.svc-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-step h4 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.svc-step p  { font-size: 0.83rem; color: var(--gray-light); line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .svc-steps { grid-template-columns: 1fr 1fr; }
}

.svc-includes { margin-top:32px; }
.svc-includes h4 {
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}
.includes-list { display:flex; flex-direction:column; gap:10px; }
.inc-item {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.88rem;
  color:var(--white-muted);
}
.inc-item::before { content:'✦'; color:var(--gold); font-size:0.6rem; }

/* Service visual */
.svc-visual { position:relative; }
.svc-visual-main {
  width:100%;
  aspect-ratio:4/5;
  border-radius:4px;
  overflow:hidden;
  border:1px solid var(--border);
}
.svc-visual-img {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:5rem;
  transition:transform 0.5s ease;
}
.svc-visual-main:hover .svc-visual-img { transform:scale(1.04); }

.svc-tag {
  position:absolute;
  top:24px; right:-16px;
  background:var(--gold-gradient);
  color:var(--black);
  padding:10px 18px;
  border-radius:4px;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  box-shadow:0 6px 24px rgba(196,154,44,0.35);
}

/* Service gallery */
.svc-gallery { padding:var(--sec-pad); background:var(--black); }
.svc-gallery .section-title { margin-bottom:0; }
.svc-gallery .divider { margin:18px 0 40px; }

.sgrid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px;
}
.sgrid-item {
  position:relative;
  overflow:hidden;
  aspect-ratio:1;
  cursor:pointer;
}
.sgrid-item:first-child { grid-column:span 2; aspect-ratio:2/1; }
.sgrid-inner {
  width:100%; height:100%;
  transition:transform 0.5s ease;
}
.sgrid-item:hover .sgrid-inner { transform:scale(1.05); }
.sgrid-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0);
  transition:background 0.35s ease;
  display:flex; align-items:center; justify-content:center;
}
.sgrid-item:hover .sgrid-overlay { background:rgba(0,0,0,0.25); }
.sgrid-icon {
  font-size:2.5rem;
  opacity:0;
  transform:scale(0.5);
  transition:opacity 0.3s ease, transform 0.3s ease;
}
.sgrid-item:hover .sgrid-icon { opacity:1; transform:scale(1); }

/* How it works */
.svc-how { padding:var(--sec-pad); background:var(--black-soft); }
.svc-how .section-title { text-align:center; }
.svc-how .divider { margin:18px auto 56px; }

.steps-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  position:relative;
}
.steps-grid::before {
  content:'';
  position:absolute;
  top:28px; left:0; right:0; height:1px;
  background:linear-gradient(to right, transparent 0%, var(--border-gold) 20%, var(--border-gold) 80%, transparent 100%);
}
.step-item { text-align:center; position:relative; }
.step-num {
  width:56px; height:56px;
  border-radius:50%;
  background:var(--black);
  border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-heading);
  font-size:1.2rem;
  font-weight:700;
  color:var(--gold);
  margin:0 auto 20px;
  position:relative;
  z-index:1;
}
.step-title { font-weight:600; font-size:1rem; margin-bottom:8px; }
.step-desc { font-size:0.875rem; color:var(--gray-light); line-height:1.65; }

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width:1024px) {
  .why-cards   { grid-template-columns:repeat(2,1fr); gap:16px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .steps-grid  { grid-template-columns:repeat(2,1fr); }
  .steps-grid::before { display:none; }
}

@media (max-width:768px) {
  :root { --sec-pad:72px 0; --nav-h:68px; }

  .nav-links, .nav-right .btn { display:none; }
  .menu-btn { display:flex; }

  .hero-title { font-size:clamp(2.2rem,7vw,3.4rem); white-space:normal; }
  .hero-title .line-2 { white-space:nowrap; }

  .stats-grid { grid-template-columns:repeat(2,1fr); }

  .services-grid { grid-template-columns:1fr; gap:3px; }
  .srv-card { aspect-ratio:16/9; }

  .why-cards  { grid-template-columns:1fr 1fr; gap:14px; }
  .why-card   { padding:24px 18px 20px; }

  .tgrid { grid-template-columns:1fr; }

  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }

  .svc-detail-inner { grid-template-columns:1fr; gap:48px; }
  .svc-tag { display:none; }

  .sgrid { grid-template-columns:1fr 1fr; }
  .sgrid-item:first-child { grid-column:span 2; }

  .steps-grid { grid-template-columns:1fr 1fr; gap:24px; }
  .steps-grid::before { display:none; }

  .wa-float .wa-label { display:none; }
  .wa-float { padding:13px; }

  .hero-ctas, .cta-btns { flex-direction:column; align-items:flex-start; }
  .cta-btns { align-items:center; }
}

@media (max-width:480px) {
  .hero-title { font-size:clamp(2.2rem,9vw,3rem); }
  .gitem { width:230px; height:310px; }
  .sgrid { grid-template-columns:1fr; }
  .sgrid-item:first-child { grid-column:1; aspect-ratio:1; }
  .steps-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── Service hero price badge ─────────────────────────────── */
.svc-hero-price {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 20px;
  background: rgba(196,154,44,0.12);
  border: 1px solid rgba(196,154,44,0.35);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--white-muted);
  letter-spacing: 0.03em;
}
.svc-hero-price strong { color: var(--gold); font-weight: 800; margin: 0 4px; }

/* ── Service pricing table (4-column) ────────────────────── */
.price-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
  transition: var(--ease);
}
.price-row:hover { border-color: var(--border-gold); }
.price-row.highlight { border-color: var(--gold); background: linear-gradient(to right, var(--black-card), #1a1000); }
.price-row.price-header {
  background: transparent;
  border-color: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 6px;
  margin-bottom: 4px;
}
.price-tag {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.price-tag small { font-size: 0.75rem; font-weight: 400; color: var(--gray-light); display: block; }

@media (max-width: 680px) {
  .price-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .price-row > span:last-child { display: none; }
  .price-row.price-header > span:last-child { display: none; }
}
@media (max-width: 480px) {
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-row > span:nth-child(3),
  .price-row > span:nth-child(4) { display: none; }
  .price-row.price-header > span:nth-child(3),
  .price-row.price-header > span:nth-child(4) { display: none; }
}

/* ── Heading level aliases ────────────────────────────────── */
.svc-detail-text h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.svc-includes h3,
.svc-includes h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-item-text h3,
.why-item-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ── Nav Dropdown ─────────────────────────────────────────── */
.has-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex !important; align-items: center; gap: 4px; }
.nav-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 6px 0;
  padding-top: 12px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1010;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  /* pseudo-bridge via margin to avoid hover gap */
  margin-top: 0;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* bridge gap so mouse doesn't lose hover between trigger and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--white-muted);
  transition: var(--ease);
  white-space: nowrap;
  background: none;
}
.nav-dropdown li a:hover { color: var(--gold); background: rgba(196,154,44,0.07); }
.nav-dropdown li:not(:last-child) { border-bottom: 1px solid var(--border); }

/* ── Mobile submenu ───────────────────────────────────────── */
.mobile-submenu { width: 100%; }
.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white-muted);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  transition: var(--ease);
  border-radius: 4px;
}
.mobile-submenu-toggle:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-submenu-toggle svg { transition: transform 0.25s ease; }
.mobile-submenu-toggle.open svg { transform: rotate(180deg); }
.mobile-submenu-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-submenu-items.open { max-height: 300px; }
.mobile-submenu-items a {
  display: block;
  padding: 10px 16px 10px 28px;
  font-size: 0.875rem;
  color: var(--white-muted);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.mobile-submenu-items a:hover { color: var(--gold); background: rgba(196,154,44,0.05); }

/* ── Social icon brand colors ─────────────────────────────── */
.fsoc-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.fsoc-whatsapp { background: var(--whatsapp) !important; color: #fff !important; border-color: transparent !important; }
.fsoc-facebook { background: #1877F2 !important; color: #fff !important; border-color: transparent !important; }
.fsoc-tiktok   { background: #010101 !important; color: #fff !important; border: 1px solid #EE1D52 !important; }
.fsoc-instagram:hover,
.fsoc-whatsapp:hover,
.fsoc-facebook:hover,
.fsoc-tiktok:hover { transform: translateY(-2px) !important; opacity: 0.9; color: #fff !important; }

/* ── Page hero (internal pages) ───────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(196,154,44,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero-sub { font-size: 1.05rem; color: var(--white-muted); max-width: 520px; line-height: 1.75; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-section { padding: var(--sec-pad); background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--ease);
}
.cinfo-item:hover { border-color: var(--border-gold); }
.cinfo-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(196,154,44,0.1);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cinfo-icon svg { width: 19px; height: 19px; }
.cinfo-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cinfo-text a, .cinfo-text p { font-size: 0.875rem; color: var(--white-muted); line-height: 1.6; }
.cinfo-text a:hover { color: var(--gold); }
.cinfo-areas { margin-top: 12px; padding: 22px; background: var(--black-card); border: 1px solid var(--border); border-radius: 8px; }
.cinfo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cinfo-tags span {
  padding: 5px 12px;
  background: rgba(196,154,44,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--gold);
}
.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.contact-form-wrap h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--gray-light); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--black-card); }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ── Gallery page ─────────────────────────────────────────── */
.gallery-page { padding: var(--sec-pad); background: var(--black); }
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  background: var(--black-card);
  border: 1px solid var(--border);
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--ease);
  font-family: inherit;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(196,154,44,0.08); }
/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2.4rem; color: var(--white); background: none; border: none;
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s; line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 3.5rem; color: var(--white); background: none; border: none;
  cursor: pointer; opacity: 0.5; transition: opacity 0.2s; padding: 0 20px; line-height: 1;
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-prev:hover, .lb-next:hover { opacity: 1; }
.gallery-item { cursor: pointer; }
.gallery-zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 2rem; color: var(--white); opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--black-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.25); }
.gallery-item-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.75);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-muted);
  text-transform: uppercase;
}

/* ── Legal pages ──────────────────────────────────────────── */
.legal-content { padding: var(--sec-pad); background: var(--black); }
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body p { font-size: 0.93rem; color: var(--white-muted); line-height: 1.85; margin-bottom: 14px; }
.legal-body ul { display: flex; flex-direction: column; gap: 8px; margin: 0 0 16px; padding: 0; }
.legal-body ul li {
  font-size: 0.93rem; color: var(--white-muted); line-height: 1.7;
  display: flex; align-items: flex-start; gap: 10px;
}
.legal-body ul li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 8px; flex-shrink: 0; }
.legal-meta { font-size: 0.82rem; color: var(--gray); margin-bottom: 36px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 56px; }
}
