/* ══════════════════════════════════════════════════════
   PRAXIS — style-main.css
   Dark premium agency site · Glassmorphism · Syne + DM Sans
══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  /* Colores base */
  --bg-0:       #060606;
  --bg-1:       #0d0d0d;
  --bg-2:       #141414;
  --bg-3:       #1c1c1c;
  --bg-4:       #242424;

  /* Texto */
  --t1:         #f2f0ec;
  --t2:         #9a9890;
  --t3:         #52504c;

  /* Acento dorado */
  --gold:       #C8A96E;
  --gold-light: #d9bf94;
  --gold-dark:  #a88545;
  --gold-dim:   rgba(200, 169, 110, 0.14);
  --gold-glow:  rgba(200, 169, 110, 0.06);

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.03);
  --glass-bg-2:   rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-2: rgba(200, 169, 110, 0.18);
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);

  /* Tipografía */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --max-w:      1200px;
  --nav-h:      72px;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;

  /* Transiciones */
  --tr:         0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow:    0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-spring:  0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--t1);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 10px; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, opacity var(--tr);
}
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width var(--tr), height var(--tr), border-color var(--tr);
}
.cursor.hover { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
.cursor-follower.hover { width: 50px; height: 50px; border-color: var(--gold); }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--t1);
}
.section-title em { font-style: normal; color: var(--gold); }
.section-title.centered { text-align: center; }
.section-sub {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub.centered { text-align: center; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}
.body-text {
  font-size: 0.975rem;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── GLASS ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
}
.glass:hover {
  border-color: var(--glass-border-2);
  background: var(--glass-bg-2);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--tr);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--tr);
  border-radius: inherit;
}
.btn:hover::before { opacity: 1; }
.btn svg { flex-shrink: 0; transition: transform var(--tr-spring); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold);
  color: #0a0800;
  font-weight: 700;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,169,110,0.3); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--t1);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(200,169,110,0.35); color: var(--gold); transform: translateY(-2px); }

.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--tr), backdrop-filter var(--tr), border-color var(--tr);
}
.header.scrolled {
  background: rgba(6, 6, 6, 0.75);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--glass-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--t1);
  transition: color var(--tr);
}
.nav-logo:hover .logo-text { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  border-radius: 100px;
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover { color: var(--t1); background: var(--glass-bg); }
.nav-link.active { color: var(--gold); }

/* CTA Nav button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,169,110,0.25);
  color: var(--gold) !important;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--tr);
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--gold);
  color: #0a0800 !important;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}
.nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--t2);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--tr);
}
.nav-wa:hover { color: #25D366; border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--t1);
  border-radius: 2px;
  transition: all var(--tr);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, var(--bg-0) 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 28px;
}
.hero-badge strong { color: var(--gold); font-weight: 600; }
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,169,110,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(200,169,110,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--t1);
  margin-bottom: 28px;
  max-width: 16ch;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
}
.br-desk { display: block; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: float-scroll 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 1px;
}
.scroll-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
}
@keyframes float-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── MARQUEE ── */
.marquee-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass-glow);
}
.marquee-label {
  display: none; /* Se muestra en desktop como overlay */
}
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 0 18px;
  transition: color var(--tr);
}
.marquee-inner span:hover { color: var(--gold); }
.marquee-inner .sep { color: var(--gold); padding: 0 4px; }
.marquee-section:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── GALLERY ── */
.gallery-section {
  padding: 100px 0;
}
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 0 32px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: none;
  background: var(--bg-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
  filter: saturate(0.7) brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1) brightness(1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity var(--tr);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Grid placement */
.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4).wide { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6).tall { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item:nth-child(8).wide { grid-column: span 4; }
.gallery-item:nth-child(9) { grid-column: span 2; }

/* ── BENEFITS ── */
.benefits-section {
  padding: 120px 0;
  position: relative;
}
.benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 20px;
}
.benefits-text { padding-top: 16px; }
.benefits-text .section-title { margin-bottom: 28px; }

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-card {
  padding: 26px 28px;
  border-radius: var(--radius);
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
  transition: height 0.35s ease;
}
.benefit-card:hover::after { height: 100%; }
.benefit-card-icon {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.65;
}

.benefits-video-wrap {
  margin-top: 70px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
}
.benefits-video-label {
  position: absolute;
  top: 24px; left: 28px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.benefits-video-wrap img,
.benefits-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── SERVICES ── */
.services-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.035) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 60px;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  backdrop-filter: blur(10px);
  transition: all var(--tr);
  cursor: none;
}
.service-pill:hover {
  color: var(--gold);
  border-color: rgba(200,169,110,0.3);
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.service-pill.highlight {
  background: var(--gold-dim);
  border-color: rgba(200,169,110,0.3);
  color: var(--gold);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.service-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  transition: all var(--tr);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap var(--tr);
}
.service-card-link:hover { letter-spacing: 0.08em; }

/* ── FAQ ── */
.faq-section { padding: 120px 0; }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
}
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item[open] { border-color: rgba(200,169,110,0.22); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: none;
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--t1);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  color: var(--t3);
  transition: transform var(--tr);
}
.faq-item[open] .faq-icon { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.72;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}

/* ── CTA / CONTACTO ── */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.cta-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 0%, var(--bg-0) 80%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.1rem;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
.cta-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-nav a {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--t3);
  border-radius: 100px;
  transition: color var(--tr), background var(--tr);
}
.cta-nav a:hover { color: var(--t1); background: var(--glass-bg); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--glass-border);
  background: var(--bg-1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--t1);
  transition: color var(--tr);
}
.footer-logo:hover { color: var(--gold); }
.footer-tagline {
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.footer-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--t3);
  border-radius: 100px;
  transition: all var(--tr);
}
.footer-nav a:hover { color: var(--gold); background: var(--gold-glow); }
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--t3);
  transition: all var(--tr);
}
.footer-social-link:hover { color: #25D366; border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.07); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  color: var(--t3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  transition: color var(--tr);
}
.footer-bottom-links a:hover { color: var(--t2); }
.footer-admin-link {
  opacity: 0.4;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.footer-admin-link:hover { opacity: 0.8; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  width: 54px; height: 54px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--tr-spring);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.5); }

/* ── ANIMATIONS / INTERSECTION ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE MENU ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,6,6,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 20px 0 28px;
    gap: 2px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--tr), opacity var(--tr);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 32px; font-size: 15px; border-radius: 0; width: 100%; }
  .nav-cta { margin: 8px 24px 0; border-radius: var(--radius-sm); padding: 12px 20px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 50px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    padding: 0 20px;
  }
  .gallery-item.tall { grid-column: span 1; grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-social { justify-content: center; }
}

@media (max-width: 720px) {
  .services-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.6rem, 9vw, 3.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .br-desk { display: none; }
  .benefits-video-wrap { height: 280px; }
  .services-grid { gap: 8px; }
  .service-pill { font-size: 13px; padding: 9px 18px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .faq-list { max-width: 100%; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}