@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;
  --bg-card: rgba(26, 26, 26, 0.7);
  --primary: #DDB256;
  --primary-hover: #e09e00;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-darker);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; color: var(--primary); }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.highlight { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-darker);
  box-shadow: 0 4px 15px rgba(221, 178, 86, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(221, 178, 86, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-darker);
  transform: translateY(-3px);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--text-main); }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 100%), url('hero_bg.png') center/cover no-repeat;
  padding-top: 80px;
}

.hero-content { max-width: 800px; }
.hero-cta { display: flex; gap: 20px; margin-top: 40px; }

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(221, 178, 86, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* FAQ Section */
.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-main);
}

.faq-icon {
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Floating WhatsApp */
.floating-wpp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
  z-index: 100;
  transition: var(--transition);
}

.floating-wpp:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #050505;
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: var(--text-main); margin-bottom: 20px; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 20px; text-align: center; font-size: 0.9rem; color: var(--text-muted); }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Premium Content Utility */
.premium-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.premium-img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 179, 0, 0.4);
}

.img-wrapper {
    position: relative;
    padding: 10px;
}

.premium-list {
    list-style: none;
    margin-top: 20px;
}

.premium-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

/* Cache buster custom CSS */
.mobile-only-btn {
  display: none !important;
}

.desktop-only-btn {
  margin-left: 20px;
  display: inline-block;
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; line-height: 1.3; }
  h3 { font-size: 1.35rem !important; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .split-section .grid-2 { flex-direction: column-reverse; display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
    background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); flex-direction: column; justify-content: center;
    align-items: center; gap: 24px; transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 1px solid var(--glass-border); z-index: 1002;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.15rem;
    padding: 8px 0;
    width: 100%;
    text-align: center;
  }
  .nav-links.active { right: 0 !important; opacity: 1 !important; visibility: visible !important; }
  .mobile-menu-btn { display: block !important; position: relative !important; z-index: 1003 !important; cursor: pointer !important; pointer-events: auto !important; }
  .desktop-only-btn { display: none !important; }
  .mobile-only-btn { display: inline-block !important; margin-top: 15px; width: 80%; text-align: center; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; }
}

/* 21st.dev Animation Effects */
/* Nav Logo */
.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(221, 178, 86, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}
.nav-logo:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 16px rgba(221, 178, 86, 0.6));
}

/* Footer logo */
.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(221, 178, 86, 0.3));
    margin-bottom: 16px;
    display: block;
}

/* Footer info block */
.footer-info {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.7;
    margin-top: 12px;
}

/* Footer policy links */
.footer-policy-links {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-policy-links a {
    color: #555;
    font-size: 0.82rem;
    transition: color 0.25s;
}
.footer-policy-links a:hover { color: var(--primary); }

/* Glow Effect for Cards */
.glass-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}
.glass-card > * {
    position: relative;
    z-index: 2;
}
.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(221, 178, 86, 0.15);
    transform: translateY(-5px);
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(221, 178, 86, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}
.glass-card:hover::before {
    opacity: 1;
}

/* Button base override */
.btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ===============================================================
   PREMIUM ANIMATION STYLES — Lúcida v2
=============================================================== */

/* Body cursor override when custom cursor active */
body:has(#lucida-cursor) { cursor: none !important; }
body:has(#lucida-cursor) a,
body:has(#lucida-cursor) button { cursor: none !important; }

/* -- Nav scrolled state ---------------------------------------- */
nav.nav-scrolled {
  padding: 12px 0;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.7);
}

/* -- Hero: particles canvas sits behind content --------------─ */
.hero { overflow: hidden; }
#particle-canvas { z-index: 0; }
.hero .container { z-index: 1; position: relative; }

/* -- Hero gradient text headline ------------------------------ */
.hero h1 {
  background: linear-gradient(135deg, #fff 0%, #f0e6c8 40%, #DDB256 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Preserve highlight color inside h1 */
.hero h1 .highlight {
  background: linear-gradient(135deg, #DDB256, #f5d080, #DDB256);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 2.5s linear infinite;
}

/* -- Section h2 underline accent ------------------------------ */
section h2:not(.hero h2) {
  position: relative;
  display: inline-block;
}
section h2:not(.hero h2)::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  transition: width 0.5s ease;
}
section h2:not(.hero h2):hover::after {
  width: 100%;
}

/* -- Glass card 3D tilt + glow -------------------------------- */
.glass-card {
  will-change: transform;
  transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(221,178,86,0.2), 0 0 30px rgba(221,178,86,0.08);
}

/* Mouse-tracked radial glow (set via JS) */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(221,178,86,0.12),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.glass-card:hover::before { opacity: 1; }

/* -- Premium image hover with golden glow --------------------─ */
.premium-img {
  will-change: transform;
  filter: brightness(0.92) saturate(1.1);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.5s ease,
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}
.premium-img:hover {
  filter: brightness(1.05) saturate(1.2);
  transform: scale(1.04);
  border-color: rgba(221,178,86,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(221,178,86,0.15);
}

/* -- Floating WPP animated ------------------------------------ */
.floating-wpp {
  will-change: transform;
}
.floating-wpp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(221,178,86,0.4);
  animation: wppRipple 1.8s ease-out infinite;
}

@keyframes wppRipple {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* -- Metrics Marquee strip ------------------------------------ */
.metrics-marquee {
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(15,12,5,0.6) 50%, rgba(10,10,10,0) 100%);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.metrics-marquee::before,
.metrics-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.metrics-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-darker), transparent); }
.metrics-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-darker), transparent); }

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item .metric-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
}

.marquee-item .metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 120px;
  line-height: 1.3;
}

.marquee-divider {
  font-size: 1.5rem;
  color: rgba(221,178,86,0.3);
  align-self: center;
}

/* -- Nav logo glow + pulse on load --------------------------─ */
.nav-logo {
  animation: logoEntry 1s ease-out both;
}

@keyframes logoEntry {
  0%   { opacity: 0; transform: scale(0.8) rotate(-5deg); filter: drop-shadow(0 0 0px rgba(221,178,86,0)); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 10px rgba(221,178,86,0.35)); }
}

/* -- Line decorators ------------------------------------------ */
.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(221,178,86,0));
  margin-bottom: 24px;
  border-radius: 2px;
}

/* -- Stagger delay helpers ------------------------------------ */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* -- Reduced motion override ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  #lucida-cursor, #lucida-cursor-trail { display: none; }
}

/* -- Subtle grid background pattern -------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(221,178,86,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,178,86,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Preserve highlight color inside h1 */
.hero h1 .highlight {
  background: linear-gradient(135deg, #DDB256, #f5d080, #DDB256);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 2.5s linear infinite;
}

/* -- Section h2 underline accent ------------------------------ */
section h2:not(.hero h2) {
  position: relative;
  display: block;
  width: fit-content;
}
section h2:not(.hero h2)::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  transition: width 0.5s ease;
}
section h2:not(.hero h2):hover::after {
  width: 100%;
}

/* -- Glass card 3D tilt + glow -------------------------------- */
.glass-card {
  will-change: transform;
  transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(221,178,86,0.2), 0 0 30px rgba(221,178,86,0.08);
}

/* Mouse-tracked radial glow (set via JS) */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(221,178,86,0.12),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.glass-card:hover::before { opacity: 1; }

/* -- Premium image hover with golden glow --------------------─ */
.premium-img {
  will-change: transform;
  filter: brightness(0.92) saturate(1.1);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.5s ease,
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}
.premium-img:hover {
  filter: brightness(1.05) saturate(1.2);
  transform: scale(1.04);
  border-color: rgba(221,178,86,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(221,178,86,0.15);
}

/* -- Floating WPP animated ------------------------------------ */
.floating-wpp {
  will-change: transform;
}
.floating-wpp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(221,178,86,0.4);
  animation: wppRipple 1.8s ease-out infinite;
}

@keyframes wppRipple {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* -- Metrics Marquee strip ------------------------------------ */
.metrics-marquee {
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(15,12,5,0.6) 50%, rgba(10,10,10,0) 100%);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.metrics-marquee::before,
.metrics-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.metrics-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-darker), transparent); }
.metrics-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-darker), transparent); }

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item .metric-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
}

.marquee-item .metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 120px;
  line-height: 1.3;
}

.marquee-divider {
  font-size: 1.5rem;
  color: rgba(221,178,86,0.3);
  align-self: center;
}

/* -- Nav logo glow + pulse on load --------------------------─ */
.nav-logo {
  animation: logoEntry 1s ease-out both;
}

@keyframes logoEntry {
  0%   { opacity: 0; transform: scale(0.8) rotate(-5deg); filter: drop-shadow(0 0 0px rgba(221,178,86,0)); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 10px rgba(221,178,86,0.35)); }
}

/* -- Line decorators ------------------------------------------ */
.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(221,178,86,0));
  margin-bottom: 24px;
  border-radius: 2px;
}

.section-line--center {
  margin-left: auto !important;
  margin-right: auto !important;
  background: linear-gradient(90deg, transparent, var(--primary), transparent) !important;
}

.title-center {
  display: block !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.title-center::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(90deg, transparent, var(--primary), transparent) !important;
}

/* -- Stagger delay helpers ------------------------------------ */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* -- Reduced motion override ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  #lucida-cursor, #lucida-cursor-trail { display: none; }
}

/* -- Subtle grid background pattern -------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(221,178,86,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,178,86,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* -- FAQ active gold border ----------------------------------─ */
.faq-item.active {
  border-bottom-color: rgba(221,178,86,0.4);
}
.faq-item.active .faq-question {
  color: var(--primary);
}

/* ===============================================================
   CUSTOM CURSOR
=============================================================== */
#lc-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: #DDB256;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#lc-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(221,178,86,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
#lc-dot.grow  { width: 14px; height: 14px; background: rgba(221,178,86,0.8); }
#lc-ring.grow { width: 56px; height: 56px; border-color: rgba(221,178,86,0.9); }
body:has(#lc-dot) { cursor: none !important; }
body:has(#lc-dot) * { cursor: none !important; }

/* ===============================================================
   SCROLL PROGRESS BAR
=============================================================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #DDB256, #f5d080, #DDB256);
  background-size: 200% auto;
  z-index: 9999;
  transform-origin: left;
  animation: progressShimmer 2s linear infinite;
}
@keyframes progressShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===============================================================
   PARALLAX BACKGROUND SECTION
=============================================================== */
.parallax-bg-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.pbs-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
  z-index: 0;
  will-change: transform;
}
.pbs-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0;
}
.pbs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 0;
}

/* ===============================================================
   SALÃO GALLERY SECTION
=============================================================== */
.salao-gallery-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0c05 50%, #0a0a0a 100%);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

/* subtle golden noise texture via pseudo */
.salao-gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(221,178,86,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(221,178,86,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.salao-gallery-header {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
  position: relative;
}
.salao-gallery-header > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.salao-gallery-header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-main);
  display: block !important; /* override inline-block from h2 animation */
}
.salao-gallery-header p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.salao-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

/* Every odd card is larger for visual rhythm */
.salao-card:nth-child(5),
.salao-card:nth-child(6) {
  grid-column: span 1;
}
.salao-card:nth-child(9),
.salao-card:nth-child(10) {
  grid-column: span 1;
}

.salao-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.salao-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.salao-card:hover {
  border-color: rgba(221,178,86,0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(221,178,86,0.12);
}

.salao-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.salao-card:hover img { transform: scale(1.06); }

.salao-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px 20px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  background: transparent;
}
.salao-card figcaption::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 8px;
}

/* Gallery responsive */
@media (max-width: 768px) {
  .salao-gallery-section { padding: 64px 18px; }
  .salao-gallery-grid { grid-template-columns: 1fr; gap: 18px; }
  .salao-card { border-radius: 16px; }
}

/* ===============================================================
   MARQUEE KEYFRAME (CSS fallback)
=============================================================== */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============================================================
   HERO SHIMMER TEXT
=============================================================== */
.hero h1 {
  background: linear-gradient(135deg, #fff 0%, #f0e6c8 40%, #DDB256 65%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 5s linear infinite;
}

/* ===============================================================
   HERO CINEMATOGRÁFICO — Ken Burns
=============================================================== */
.hero-cinematic {
  background: none !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.14) translate(-2%, -2%); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 4, 1, 0.92) 0%,
    rgba(10, 8, 2, 0.75) 50%,
    rgba(10, 8, 2, 0.50) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 0) !important;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollHintFade 2s ease-in-out infinite alternate;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollHintLine 2s ease-in-out infinite;
}
@keyframes scrollHintFade { from { opacity: 0.3; } to { opacity: 0.8; } }
@keyframes scrollHintLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===============================================================
   SPLIT SECTION COM BACKGROUND PARALLAX
=============================================================== */
.split-section--bg {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}

.split-bg-img {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  opacity: 0.18;
}

.split-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 6, 1, 0.97) 0%,
    rgba(8, 6, 1, 0.88) 60%,
    rgba(8, 6, 1, 0.70) 100%
  );
}

/* Pain stats (dentro do glass-card da seção dores) */
.pain-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pain-stat:last-of-type { border-bottom: none; }
.pain-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  min-width: 130px;
  flex-shrink: 0;
}
.pain-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ===============================================================
   SECTION — PARALLAX BACKGROUND GENÉRICO
=============================================================== */
.section-parallax-bg {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.spb-img {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.spb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(12,10,2,0.85) 100%);
}

.spb-content {
  position: relative;
  z-index: 1;
}

/* Card icon number */
.card-icon {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity 0.3s;
}
.glass-card:hover .card-icon { opacity: 0.5; }

/* ===============================================================
   SEÇÃO DE AGENTES DE IA
=============================================================== */
.agents-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.agents-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  opacity: 0.08;
}

.agents-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10,10,10,0.6) 50%, var(--bg-darker) 100%);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.agent-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 8, 4, 0.45);
  border: 1px solid rgba(221, 178, 86, 0.15);
  border-radius: 24px;
  padding: 40px 32px 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  min-height: 420px;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.agent-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(221, 178, 86, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
              0 0 40px rgba(221, 178, 86, 0.08);
}

.agent-card:hover::before {
  opacity: 1;
}
/* Avatar do agente */
.agent-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-initial {
  display: none;
}

.agent-avatar-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  opacity: 0.65;
  filter: blur(14px);
  animation: agentPulse 3.5s ease-in-out infinite;
}

@keyframes agentPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.18); opacity: 0.9; }
}

/* Cores individuais dos agentes */
.agent-avatar--cleo  { background: radial-gradient(circle, #c084fc 0%, #7c3aed 100%); }
.agent-avatar--cleo .agent-avatar-glow  { background: #c084fc; }

.agent-avatar--aura  { background: radial-gradient(circle, #fcd34d 0%, #d97706 100%); }
.agent-avatar--aura .agent-avatar-glow  { background: #fcd34d; }

.agent-avatar--nexus { background: radial-gradient(circle, #38bdf8 0%, #0284c7 100%); }
.agent-avatar--nexus .agent-avatar-glow { background: #38bdf8; }

.agent-avatar--vera  { background: radial-gradient(circle, #34d399 0%, #059669 100%); }
.agent-avatar--vera .agent-avatar-glow  { background: #34d399; }

.agent-avatar--pulse { background: radial-gradient(circle, #f472b6 0%, #db2777 100%); }
.agent-avatar--pulse .agent-avatar-glow { background: #f472b6; }

.agent-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid rgba(15, 12, 6, 1);
  animation: blink 2.5s ease-in-out infinite;
  z-index: 3;
}

@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Info do agente */
.agent-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  opacity: 0.85;
}

.agent-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-main);
  font-weight: 600;
}

.agent-bio {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.agent-skills span {
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(221, 178, 86, 0.06);
  border: 1px solid rgba(221, 178, 86, 0.18);
  color: var(--primary);
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.agent-card:hover .agent-skills span {
  background: rgba(221, 178, 86, 0.12);
  border-color: rgba(221, 178, 86, 0.35);
  transform: translateY(-1px);
}

/* Fluxo de integração entre agentes */
.agents-flow {
  background: rgba(15, 12, 6, 0.4);
  border: 1px solid rgba(221, 178, 86, 0.12);
  border-radius: 24px;
  padding: 48px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.agents-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at 50% 50%, rgba(221, 178, 86, 0.03), transparent 70%);
  pointer-events: none;
}

.flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-4px);
  background: rgba(221, 178, 86, 0.02);
  border-color: rgba(221, 178, 86, 0.2);
}

.flow-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #b8860b);
  color: var(--bg-darker);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(221, 178, 86, 0.35);
}

.flow-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.flow-step p strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 4px;
}

.flow-arrow {
  font-size: 1.6rem;
  color: var(--primary);
  opacity: 0.35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulseArrow 2s ease-in-out infinite alternate;
}

@keyframes pulseArrow {
  from { transform: translateX(-2px); opacity: 0.2; }
  to { transform: translateX(2px); opacity: 0.6; }
}
/* ===============================================================
   GALERIA HORIZONTAL SCROLL-SNAP
=============================================================== */
.snap-gallery-section {
  padding: 80px 0 0;
  overflow: hidden;
}

.snap-gallery-header {
  text-align: center;
  padding: 0 24px 60px;
}

.snap-gallery-tag {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.snap-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.snap-gallery-track:active { cursor: grabbing; }
.snap-gallery-track::-webkit-scrollbar { display: none; }

.snap-slide {
  flex: 0 0 calc(100vw - 48px);
  max-width: 900px;
  height: 520px;
  scroll-snap-align: center;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin: 0 12px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.snap-slide:hover { transform: scale(1.01); }

.snap-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,4,1,0.9) 0%, rgba(5,4,1,0.2) 60%, transparent 100%);
}

.snap-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 1;
}
.snap-slide-content span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.snap-slide-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.snap-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px 48px;
}

.snap-nav-btn {
  background: rgba(221,178,86,0.12);
  border: 1px solid rgba(221,178,86,0.3);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.snap-nav-btn:hover {
  background: var(--primary);
  color: var(--bg-darker);
  transform: scale(1.1);
}

.snap-dots {
  display: flex;
  gap: 8px;
}
.snap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.snap-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* CTA final section */
.cta-final-section { padding: 140px 0; }

/* ===============================================================
   RESPONSIVE — Agentes, Galeria e Layouts
=============================================================== */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-section--bg .grid-2 {
    display: flex;
    flex-direction: column-reverse;
  }
  .agent-card {
    flex-direction: column;
    text-align: center;
  }
  .agent-avatar {
    margin: 0 auto;
  }
  .agent-skills {
    justify-content: center;
  }
  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .flow-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 12px;
  }
  .snap-slide {
    height: 360px;
    flex: 0 0 calc(100vw - 32px);
  }
  .agents-flow {
    padding: 24px;
  }
  .pain-num { font-size: 1.6rem; min-width: 60px; }
}

@media (max-width: 480px) {
  .snap-slide { height: 300px; }
  .agent-card { padding: 24px; }
}

/* Cinematic Gate (Hall de Entrada / Recepção) */
#cinematic-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  overflow: hidden;
  pointer-events: all;
  transition: opacity 0.8s ease-in-out;
}

.gate-door {
  position: absolute;
  top: 0;
  width: 50.1%;
  height: 100%;
  background: radial-gradient(circle at center, #161616 0%, #0a0a0a 100%);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gate-door-left {
  left: 0;
  border-right: 1px solid var(--primary);
}

.gate-door-right {
  right: 0;
  border-left: 1px solid var(--primary);
}

.gate-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 100000;
  width: 90%;
  max-width: 600px;
  color: white;
  transition: opacity 0.8s ease;
}

.gate-logo {
  width: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(221, 178, 86, 0.4));
  animation: logo-pulse 2s infinite ease-in-out;
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 20px rgba(221, 178, 86, 0.7)); }
}

.gate-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gate-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #a0a0a0;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.gate-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 16px 48px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px rgba(221, 178, 86, 0.1);
}

.gate-btn:hover {
  background: var(--primary);
  color: var(--bg-darker);
  box-shadow: 0 0 30px rgba(221, 178, 86, 0.5);
  transform: scale(1.05);
}

/* Open states */
.gate-open .gate-door-left {
  transform: translateX(-100%);
}

.gate-open .gate-door-right {
  transform: translateX(100%);
}

.gate-open .gate-content {
  opacity: 0;
  pointer-events: none;
}

/* Page Exit Transitions wrapper */
.page-wrapper {
  opacity: 0;
  transition: opacity 0.6s ease;
  min-height: 100vh;
}

.page-wrapper.page-loaded {
  opacity: 1;
}

.page-wrapper.page-exiting {
  opacity: 0;
}
