/* ═══════════════════════════════════════════════════════════════════
   WS Studio — Premium Design System
   Paleta: Gold Premium + Dark Matte
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Gold */
  --gold-primary: #B19A6D;
  --gold-light: #E3D095;
  --gold-soft: #CBB27A;
  --gold-dark: #8A7652;
  --gold-glow: rgba(177, 154, 109, 0.35);

  /* Dark */
  --dark-primary: #212528;
  --dark-secondary: #2C2F34;
  --dark-soft: #3A3D42;
  --dark-muted: #5E6368;

  /* Neutrals */
  --white-soft: #F5F5F5;
  --white-dim: #C8CACC;
  --gray-light: #A0A4A8;
  --gray-mid: #6B6F74;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-soft) 100%);
  --gradient-gold-v: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);

  /* Typography */
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py: 7rem;
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--dark-primary);
  color: var(--white-soft);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* Custom luxury cursor logic */
}
@media (max-width: 1024px) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }

/* ── UTILITIES ──────────────────────────────────────────────────── */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }
.section-dark-primary { background: var(--dark-primary); }
.section-dark-secondary { background: var(--dark-secondary); }

.glow:hover { box-shadow: 0 0 30px var(--gold-glow); }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,0.08);
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(177, 154, 109, 0.3);
}
.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(177, 154, 109, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(177, 154, 109, 0.12);
  box-shadow: 0 0 24px rgba(177, 154, 109, 0.2);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  color: var(--dark-primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 2px 12px rgba(177, 154, 109, 0.3);
}
.btn-nav-cta:hover {
  box-shadow: 0 4px 20px rgba(177, 154, 109, 0.5);
  transform: translateY(-2px);
}

/* ── SECTION HEADER ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-soft);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(33, 37, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(177, 154, 109, 0.15);
  padding: 0.8rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  transition: 0.3s;
}
.nav-logo-img:hover {
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.menu-close {
  display: none;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width 0.3s var(--ease-smooth);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

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

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
}

/* ── HERO CINEMATIC ──────────────────────────────────────────────── */
.hero.hero-cinematic {
  padding: 0;
  min-height: 100vh;
  display: block;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  will-change: transform;
  transition: transform 0.12s linear;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 27, 0.30);
  z-index: 1;
}
.hero-bg-gradient-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(21,24,27,0.97) 0%,
    rgba(21,24,27,0.93) 22%,
    rgba(21,24,27,0.72) 40%,
    rgba(21,24,27,0.22) 58%,
    transparent 74%
  );
}
.hero-bg-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(21,24,27,0.85) 0%, transparent 100%);
}
.hero-bg-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(to top, var(--dark-primary) 0%, transparent 100%);
}
.hero-cinematic-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  gap: 2rem;
}
.hero-cinematic-content .hero-text {
  flex: 0 0 52%;
  max-width: 660px;
}
.hero-cards-layer {
  flex: 1;
  position: absolute;
  right: 0;
  bottom: 120px;
  margin-bottom: 50px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;

}
.hero-gold-line {
  width: 140px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin-top: 0.8rem;
  align-self: flex-end;
  box-shadow: 0 0 18px rgba(177,154,109,0.45);
  animation: goldLinePulse 3s ease-in-out infinite;
}
@keyframes goldLinePulse {
  0%,100% { opacity:0.55; box-shadow:0 0 16px rgba(177,154,109,0.4); }
  50% { opacity:0.9; box-shadow:0 0 30px rgba(177,154,109,0.7); }
}

/* Particles */
#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80vh) scale(1.5); }
}

/* Glow Orbs */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 3;
}
.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(177,154,109,0.13) 0%, transparent 70%);
  top: -100px;
  left: 4%;
  animation: orbPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(177,154,109,0.09) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  animation: orbPulse 8s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(177,154,109,0.12);
  border: 1px solid rgba(177,154,109,0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(227,208,149,0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--white-soft); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Stats Strip (Full Width Pill) */
.hero-stats-strip {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 10;
}
.hero-stats-pill {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  padding: 1.25rem 2.5rem;
  background: rgba(177,154,109,0.06);
  border: 1px solid rgba(177,154,109,0.22);
  border-radius: 100px; /* Pill Shape */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}
.stat-item { 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white-soft);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(177,154,109,0.25);
  align-self: center;
}

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-image-frame {
  position: relative;
  display: inline-block;
}
.hero-image-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,154,109,0.2) 0%, transparent 70%);
  animation: orbPulse 4s ease-in-out infinite;
}
.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(177,154,109,0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { inset: -30px; animation-delay: 0s; }
.ring-2 { inset: -60px; animation-delay: 1s; opacity: 0.5; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.hero-photo {
  width: min(480px, 90vw);
  height: min(560px, 90vw);
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(177,154,109,0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(177,154,109,0.1);
  position: relative;
  z-index: 1;
}

/* Floating Cards */
.hero-floating-card {
  background: rgba(24, 28, 32, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(177,154,109,0.28);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  margin-top: 30px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: floatCard 3.5s ease-in-out infinite;
  min-width: 210px;
}
/* Cinematic: cards relativos, alinhados à direita */
.hero-cards-layer .card-1 { position: relative; animation-delay: 0s; }
.hero-cards-layer .card-2 { position: relative; animation-delay: 1.8s; }
/* Legado: posição absoluta dentro do frame */
.hero-image-frame .card-1 { position: absolute; bottom: 10%; left: -5%; animation-delay: 0s; }
.hero-image-frame .card-2 { position: absolute; top: 12%; right: -8%; animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.float-card-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
}
.float-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white-soft);
}
.float-card-sub {
  font-size: 0.72rem;
  color: var(--gray-light);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-mid);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 6;
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--dark-soft);
  border-top: 1px solid rgba(177,154,109,0.15);
  border-bottom: 1px solid rgba(177,154,109,0.15);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.marquee-dot { color: var(--gold-soft) !important; font-size: 0.7rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ═══════════════════════════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════════════════════════ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-image-wrapper {
  position: relative;
  display: inline-block;
}
.sobre-image-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  background: rgba(177,154,109,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(177,154,109,0.15);
}
.sobre-photo {
  width: 100%;
  max-width: 500px;
  height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(177,154,109,0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.sobre-badge-card {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: rgba(33,37,40,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(177,154,109,0.3);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.sobre-logo-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
}
.sobre-experience-card {
  position: absolute;
  top: 25px;
  left: -50px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(177, 154, 109, 0.3);
  min-width: 100px;
  height: 100px;
}
.exp-number {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 800;
  display: block;
  background: var(--dark-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}
.exp-text {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--dark-primary);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sobre-content { padding-left: 1rem; }
.sobre-text {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.sobre-text strong { color: var(--white-soft); font-weight: 700; }
.sobre-text em { color: var(--gold-soft); font-style: italic; }

.sobre-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0;
}
.skill-tag {
  background: rgba(177,154,109,0.1);
  border: 1px solid rgba(177,154,109,0.25);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: all 0.3s;
}
.skill-tag:hover {
  background: rgba(177,154,109,0.2);
  box-shadow: 0 0 12px rgba(177,154,109,0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-secondary);
  border: 1px solid rgba(177,154,109,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(177,154,109,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px rgba(177,154,109,0.1);
  transform: translateY(-8px);
}
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  background: rgba(177,154,109,0.06);
  border-color: rgba(177,154,109,0.35);
  box-shadow: 0 8px 32px rgba(177,154,109,0.1);
}
.service-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-gold);
  color: var(--dark-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(177,154,109,0.1);
  border: 1px solid rgba(177,154,109,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(177,154,109,0.18);
  box-shadow: 0 0 20px rgba(177,154,109,0.2);
}
.service-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-features span {
  font-size: 0.8rem;
  color: var(--gold-soft);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   COMPARE
   ═══════════════════════════════════════════════════════════════════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid;
}
.compare-bad {
  background: rgba(180, 40, 40, 0.08);
  border-color: rgba(180, 40, 40, 0.25);
}
.compare-good {
  background: rgba(177,154,109,0.06);
  border-color: rgba(177,154,109,0.3);
  box-shadow: 0 0 32px rgba(177,154,109,0.1);
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare-icon.bad {
  width: 36px;
  height: 36px;
  background: rgba(220, 60, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E04040;
  font-size: 1.2rem;
  font-weight: 700;
}
.compare-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
}
.compare-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white-soft);
}
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--gray-light);
}
.x-icon { color: #E04040; font-size: 1rem; font-weight: 700; min-width: 20px; }
.check-icon { color: var(--gold-primary); font-size: 1rem; font-weight: 700; min-width: 20px; }

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════════════ */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-light);
  border: 1px solid rgba(177,154,109,0.15);
  background: transparent;
  transition: all 0.3s var(--ease-smooth);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-gold);
  color: var(--dark-primary);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(177,154,109,0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-item { transition: all 0.4s var(--ease-smooth); }
.portfolio-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  display: none;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(177,154,109,0.12);
  background: var(--dark-secondary);
  transition: all 0.4s var(--ease-smooth);
}
.portfolio-card:hover {
  border-color: rgba(177,154,109,0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.portfolio-img-wrap { position: relative; overflow: hidden; height: 240px; }

/* Placeholders with gradients */
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gradient-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.gradient-2 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%); }
.gradient-3 { background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%); }
.gradient-4 { background: linear-gradient(135deg, #2d1b00 0%, #4a2e00 50%, #6b4200 100%); }
.gradient-5 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.gradient-6 { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }

.portfolio-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.pp-logo {
  width: 80px; height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-primary);
}
.pp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.pp-diamond {
  font-size: 3rem;
  color: var(--gold-primary);
  filter: drop-shadow(0 0 12px rgba(177,154,109,0.6));
}
.pp-screen {
  width: 140px; height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
}
.pp-screen-bar {
  height: 8px;
  background: var(--gradient-gold);
  border-radius: 4px;
  margin-bottom: 8px;
}
.pp-screen-line {
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin-bottom: 6px;
}
.pp-screen-line.short { width: 60%; }
.pp-app {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pp-app-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  opacity: 0.8;
}
.pp-app-lines { display: flex; flex-direction: column; gap: 6px; }
.pp-app-line { width: 80px; height: 6px; background: rgba(177,154,109,0.4); border-radius: 3px; }
.pp-app-line.short { width: 50px; }
.pp-landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pp-landing-hero {
  width: 160px; height: 60px;
  background: rgba(177,154,109,0.2);
  border-radius: 6px;
  border: 1px solid rgba(177,154,109,0.3);
}
.pp-landing-btn {
  width: 100px; height: 28px;
  background: var(--gradient-gold);
  border-radius: 4px;
  opacity: 0.8;
}
.pp-dashboard {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 80px;
}
.pp-dash-bar {
  width: 24px;
  background: var(--gradient-gold);
  border-radius: 4px 4px 0 0;
  height: 50%;
  opacity: 0.7;
  transition: 0.3s;
}
.pp-dash-bar.medium { height: 65%; opacity: 0.85; }
.pp-dash-bar.tall { height: 90%; opacity: 1; }
.pp-dash-bar.short { height: 35%; opacity: 0.6; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 37, 40, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}
.portfolio-card:hover .portfolio-overlay,
.atropos-active .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content { text-align: center; padding: 1.5rem; }
.portfolio-tag {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.portfolio-overlay-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.5rem;
}
.portfolio-overlay-content p {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 1.25rem;
}
.btn-portfolio-view {
  background: transparent;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-portfolio-view:hover {
  background: rgba(177,154,109,0.15);
  box-shadow: 0 0 16px rgba(177,154,109,0.3);
}

/* ── ATROPOS CUSTOM ──────────────────────────────────── */
.portfolio-atropos {
  width: 100%;
  height: 100%;
  display: block;
}
.portfolio-atropos .atropos-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-soft);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.atropos-shadow {
  background: rgba(0, 0, 0, 0.4) !important;
}
.atropos-highlight {
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent) !important;
}


.portfolio-meta {
  padding: 1.25rem 1.5rem;
}
.portfolio-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.portfolio-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-soft);
}
.portfolio-cta { text-align: center; margin-top: 3rem; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-swiper { padding: 1rem 0 4rem !important; }
.testimonial-card {
  background: var(--dark-soft);
  border: 1px solid rgba(177,154,109,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(177,154,109,0.08);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.testimonial-text {
  font-size: 0.98rem;
  color: var(--white-dim);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--dark-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-soft);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.testimonials-prev, .testimonials-next {
  color: var(--gold-primary) !important;
}
.testimonials-prev::after, .testimonials-next::after {
  font-size: 1.2rem !important;
}
.testimonials-pagination .swiper-pagination-bullet {
  background: var(--gray-mid) !important;
  opacity: 0.5;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  opacity: 1;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════════════ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(177,154,109,0.1);
  position: relative;
  transition: all 0.3s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { transform: translateX(10px); }

.step-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(177,154,109,0.2);
  line-height: 1;
  transition: color 0.3s;
}
.process-step:hover .step-number { color: var(--gold-soft); }

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.step-connector {
  width: 24px; height: 24px;
  border: 1.5px solid rgba(177,154,109,0.3);
  border-radius: 50%;
  background: rgba(177,154,109,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   PLANS LUXURY
   ═══════════════════════════════════════════════════════════════════ */
.plans-section { overflow: hidden; }

.plans-intro {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.8;
}

.plans-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

/* ── Card Base ── */
.plan-card-lux {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(177,154,109,0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth),
              border-color 0.4s,
              box-shadow 0.4s;
}
.plan-card-lux::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(177,154,109,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.plan-card-lux:hover {
  transform: translateY(-10px);
  border-color: rgba(177,154,109,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(177,154,109,0.1);
}

/* ── Featured Card ── */
.plan-lux-featured {
  background: rgba(177,154,109,0.07);
  border-color: rgba(177,154,109,0.5);
  box-shadow: 0 20px 60px rgba(177,154,109,0.18), 0 0 0 1px rgba(177,154,109,0.25);
  transform: translateY(-8px) scale(1.02);
}
.plan-lux-featured:hover {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 32px 80px rgba(177,154,109,0.25), 0 0 0 1px rgba(177,154,109,0.35);
}
.plan-lux-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(177,154,109,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* ── Popular Badge ── */
.plan-lux-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--dark-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.5rem;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(177,154,109,0.5);
}

/* ── Plan Header ── */
.plan-lux-header {
  margin-bottom: 1.75rem;
  padding-top: 1rem;
}
.plan-lux-badge {
  display: inline-block;
  background: rgba(177,154,109,0.1);
  border: 1px solid rgba(177,154,109,0.2);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.plan-lux-badge-gold {
  background: var(--gradient-gold);
  color: var(--dark-primary);
  border-color: transparent;
}
.plan-lux-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.5rem;
}
.plan-lux-desc {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.plan-lux-price {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-lux-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-soft);
  padding-bottom: 0.3rem;
}
.plan-lux-value {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white-soft);
  line-height: 1;
}

/* ── Feature List ── */
.plan-lux-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
  list-style: none;
}
.feat-yes, .feat-no {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.4;
}
.feat-yes { color: var(--gray-light); }
.feat-no  { color: var(--gray-mid); opacity: 0.55; text-decoration: line-through; }
.feat-icon {
  color: var(--gold-primary);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.feat-icon-no {
  color: var(--gray-mid);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Observation block ── */
.plan-lux-observation {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(177, 154, 109, 0.05);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.plan-lux-observation strong {
  display: block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
}
.plan-lux-observation p {
  margin: 0;
  opacity: 0.9;
}

/* ── Plans Note ── */
.plans-note {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--gray-mid);
  flex-wrap: wrap;
}
.plans-note svg { color: var(--gold-soft); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;

  gap: 0.75rem;
}
.faq-item {
  background: var(--dark-secondary);
  border: 1px solid rgba(177,154,109,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(177,154,109,0.35); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white-soft);
  text-align: left;
  transition: all 0.3s;
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
  color: var(--gold-primary);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}
.faq-answer p {
  padding: 0 1.75rem 1.4rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; }

.faq-cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(177,154,109,0.07);
  border: 1px solid rgba(177,154,109,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.faq-cta-icon {
  width: 56px; height: 56px;
  background: rgba(177,154,109,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.faq-cta-text { flex: 1; }
.faq-cta-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.25rem;
}
.faq-cta-text p {
  font-size: 0.88rem;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(177,154,109,0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.93rem;
  color: var(--white-soft);
  font-family: var(--font-sans);
  transition: all 0.3s;
  width: 100%;
  outline: none;
}
.form-input::placeholder { color: var(--gray-mid); }
.form-input:focus {
  border-color: var(--gold-primary);
  background: rgba(177,154,109,0.04);
  box-shadow: 0 0 0 3px rgba(177,154,109,0.1);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-sm);
  color: #6ee7b7;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.active {
  display: flex !important;
}

/* Contact Info */
.contact-logo-wrap { margin-bottom: 1.25rem; }
.contact-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 24px rgba(177,154,109,0.3);
}
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.35rem;
}
.contact-info-sub {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(177,154,109,0.12);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.contact-item:hover {
  border-color: rgba(177,154,109,0.3);
  background: rgba(177,154,109,0.06);
}
.contact-item-icon {
  width: 38px; height: 38px;
  background: rgba(177,154,109,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--white-soft);
  font-weight: 500;
}

.social-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 44px; height: 44px;
  background: rgba(177,154,109,0.08);
  border: 1px solid rgba(177,154,109,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  transition: all 0.3s var(--ease-smooth);
}
.social-link:hover {
  background: rgba(177,154,109,0.18);
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(177,154,109,0.3);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT LUXURY
   ═══════════════════════════════════════════════════════════════════ */
.contact-section-lux { position: relative; overflow: hidden; }

/* Decorative orbs */
.contact-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-orb-1 {
  width: 500px; height: 500px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(177,154,109,0.08) 0%, transparent 70%);
}
.contact-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(177,154,109,0.05) 0%, transparent 70%);
}

/* Main grid */
.contact-lux-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

/* Info sidebar */
.contact-info-lux {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Photo */
.contact-info-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(177,154,109,0.2);
}
.contact-info-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.92) saturate(0.9);
  transition: transform 0.6s var(--ease-smooth), filter 0.4s;
}
.contact-info-photo-wrap:hover .contact-info-photo {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.contact-info-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,24,27,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.contact-info-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(21,24,27,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(177,154,109,0.3);
  border-radius: 100px;
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  z-index: 1;
}
.contact-info-photo-badge img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.contact-info-photo-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

/* Info details */
.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white-soft);
  margin: 0;
}
.contact-info-role {
  font-size: 0.88rem;
  color: var(--gold-soft);
  margin: -0.75rem 0 0;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(177,154,109,0.12);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.contact-info-item:hover {
  border-color: rgba(177,154,109,0.3);
  background: rgba(177,154,109,0.05);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 38px; height: 38px;
  background: rgba(177,154,109,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.contact-item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.contact-item-value {
  font-size: 0.88rem;
  color: var(--white-soft);
  font-weight: 500;
  transition: color 0.3s;
}
a.contact-item-value:hover { color: var(--gold-light); }

/* Social buttons */
.contact-social-lux {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(177,154,109,0.06);
  border: 1px solid rgba(177,154,109,0.15);
  border-radius: var(--radius-md);
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}
.contact-social-btn:hover {
  background: rgba(177,154,109,0.14);
  border-color: rgba(177,154,109,0.4);
  color: var(--gold-light);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(177,154,109,0.15);
}

/* Form panel */
.contact-form-lux {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(177,154,109,0.18);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
}
.contact-form-header {
  margin-bottom: 2rem;
}
.contact-form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.4rem;
}
.contact-form-header p {
  font-size: 0.88rem;
  color: var(--gray-mid);
}

/* Form groups */
.form-row-lux {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group-lux {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-label-lux {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-input-lux {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(177,154,109,0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--white-soft);
  font-family: var(--font-sans);
  transition: all 0.3s;
  width: 100%;
  outline: none;
}
.form-input-lux::placeholder { color: var(--gray-mid); }
.form-input-lux:focus {
  border-color: var(--gold-primary);
  background: rgba(177,154,109,0.05);
  box-shadow: 0 0 0 3px rgba(177,154,109,0.12);
}
.form-input-lux option { background: var(--dark-secondary); color: var(--white-soft); }

/* Submit button */
.btn-submit-lux {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}
.btn-submit-lux svg { transition: transform 0.3s; }
.btn-submit-lux:hover svg { transform: translateX(4px) rotate(-20deg); }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
#form-contato {
  scroll-margin-top: 120px;
}

.footer { background: var(--dark-primary); }
.footer-top {
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(177,154,109,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: start;
}
.footer-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.75rem;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(177,154,109,0.08);
  border: 1px solid rgba(177,154,109,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  transition: all 0.3s;
}
.footer-social-link:hover {
  background: rgba(177,154,109,0.18);
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(177,154,109,0.3);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-mid);
  transition: all 0.3s;
}
.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.footer-contact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: color 0.3s;
}
.footer-contact-item:hover { color: var(--gold-light); }
.footer-contact-item svg { color: var(--gold-soft); flex-shrink: 0; }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.83rem; color: var(--gray-mid); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.83rem;
  color: var(--gray-mid);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════════
   PROJECT MODAL
   ═══════════════════════════════════════════════════════════════════ */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.project-modal.open { opacity: 1; pointer-events: all; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  background: var(--dark-secondary);
  border: 1px solid rgba(177,154,109,0.25);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-bounce);
}
.project-modal.open .modal-content { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(177,154,109,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-close:hover { background: rgba(177,154,109,0.15); color: var(--white-soft); }
.modal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.5rem;
}
.modal-body .modal-tag {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.modal-body p {
  font-size: 0.94rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal-meta-item {
  background: rgba(177,154,109,0.06);
  border: 1px solid rgba(177,154,109,0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.modal-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.modal-meta-value {
  font-size: 0.92rem;
  color: var(--white-soft);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s var(--ease-bounce);
  text-decoration: none;
  overflow: hidden; /* Ensure nothing leaks out */
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: white;
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none; /* Crucial: prevents animation from expanding hit area */
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── HERO CARDS — posicionamento no hero cinematic ─────────────────
   card-2 (avaliação)   → canto superior direito (sobre constelação)
   card-1 (projeto)     → parte inferior (sobre laptop / mesa)
   A hero-cards-layer é flex-column justify-center align-end,
   então usamos margin para afastar os cards verticalmente.
   ────────────────────────────────────────────────────────────────── */
.hero-cards-layer .card-2 {
  /* topo da coluna direita → área da constelação, acima do rosto */
  margin-bottom: auto;
  margin-top: 0;
  transform-origin: right top;
}
.hero-cards-layer .card-1 {
  /* parte inferior → sobre o laptop/mesa */
  margin-top: auto;
  margin-bottom: 0;
  transform-origin: right bottom;
}

/* ── BACK TO TOP ─────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(177, 154, 109, 0.12);
  border: 1px solid rgba(177, 154, 109, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  /* Estado inicial: invisível e deslocado para baixo */
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth),
              transform 0.35s var(--ease-smooth),
              background 0.25s,
              box-shadow 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: rgba(177, 154, 109, 0.22);
  box-shadow: 0 0 20px rgba(177, 154, 109, 0.3), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.back-to-top:active {
  transform: translateY(1px);
}

/* ── LUXURY CUSTOM CURSOR ───────────────────────────────────────── */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, border 0.3s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(177, 154, 109, 0.4);
  background: rgba(177, 154, 109, 0.03);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Hover State */
body.is-hovering .cursor-dot {
  transform: translate(-50%, -50%) scale(0.5);
  background: var(--white-soft);
}

body.is-hovering .cursor-outline {
  width: 70px;
  height: 70px;
  border-color: var(--gold-light);
  background: rgba(177, 154, 109, 0.1);
}

/* Visibility */
.cursor-visible {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   DIFERENCIAIS EXPANDED
   ═══════════════════════════════════════════════════════════════════ */
.diferenciais-section { position: relative; overflow: hidden; }
.diferenciais-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.diferenciais-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(177,154,109,0.07) 0%, transparent 70%);
}
.diferenciais-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(177,154,109,0.05) 0%, transparent 70%);
}

/* Feature cards */
.diferenciais-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0;
}
.dif-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(177,154,109,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s, box-shadow 0.4s;
}
.dif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}
.dif-card:hover::before { transform: scaleX(1); }
.dif-card:hover {
  transform: translateY(-8px);
  border-color: rgba(177,154,109,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(177,154,109,0.08);
}
.dif-card-icon {
  width: 52px; height: 52px;
  background: rgba(177,154,109,0.1);
  border: 1px solid rgba(177,154,109,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.dif-card:hover .dif-card-icon {
  background: rgba(177,154,109,0.18);
  box-shadow: 0 0 20px rgba(177,154,109,0.2);
}
.dif-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.6rem;
}
.dif-card-desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* Numbers strip (matched to Contact Bar) */
.dif-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 2.5rem;
  background: rgba(177,154,109,0.06);
  border: 1px solid rgba(177,154,109,0.18);
  border-radius: 100px; /* Pill Shape */
  flex-wrap: wrap;
  width: 100%;
  max-width: none;
  margin: 0 auto 3.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.dif-number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 2.5rem;
}
.dif-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-primary); /* Ensuring gold color */
}
.dif-number-label {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.dif-number-sep {
  color: rgba(177,154,109,0.25);
  font-size: 1rem;
  padding: 0 0.5rem;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS 3D COVERFLOW
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--dark-primary);
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}
.testimonials-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(177,154,109,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-coverflow-swiper {
  padding: 3rem 2rem 5rem !important;
  overflow: visible !important;
}
.testimonials-coverflow-swiper .swiper-wrapper {
  align-items: center;
}

.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(177,154,109,0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.swiper-slide-active .tcard {
  border-color: rgba(177,154,109,0.45);
  box-shadow: 0 20px 60px rgba(177,154,109,0.2), 0 0 0 1px rgba(177,154,109,0.15);
}
.tcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.swiper-slide-active .tcard::before { opacity: 1; }

.tcard-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(177,154,109,0.2);
  font-style: italic;
  margin-bottom: 0.5rem;
  pointer-events: none;
}
.tcard-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.tcard-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tcard-divider {
  height: 1px;
  background: rgba(177,154,109,0.15);
  margin-bottom: 1.25rem;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--dark-primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(177,154,109,0.3);
}
.tcard-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 0.1rem;
}
.tcard-role {
  font-size: 0.78rem;
  color: var(--gray-mid);
}
.tcard-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(177,154,109,0.1);
  border: 1px solid rgba(177,154,109,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.6rem;
  white-space: nowrap;
}

/* Swiper navigation custom */
.testimonials-cf-next,
.testimonials-cf-prev {
  color: var(--gold-primary) !important;
  background: rgba(177,154,109,0.1) !important;
  border: 1px solid rgba(177,154,109,0.25) !important;
  border-radius: 50% !important;
  width: 44px !important; height: 44px !important;
  transition: all 0.3s !important;
}
.testimonials-cf-next:hover,
.testimonials-cf-prev:hover {
  background: rgba(177,154,109,0.2) !important;
  box-shadow: 0 0 16px rgba(177,154,109,0.3) !important;
}
.testimonials-cf-next::after,
.testimonials-cf-prev::after { font-size: 14px !important; font-weight: 700 !important; }

.testimonials-cf-pagination .swiper-pagination-bullet {
  background: rgba(177,154,109,0.3) !important;
  opacity: 1 !important;
}
.testimonials-cf-pagination .swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT BAR (new contact info strip)
   ═══════════════════════════════════════════════════════════════════ */
.contact-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1.75rem 2.5rem;
  background: rgba(177,154,109,0.06);
  border: 1px solid rgba(177,154,109,0.18);
  border-radius: var(--radius-xl);
  margin-bottom: 2.5rem;
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 2rem;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a.contact-bar-item:hover { transform: translateY(-2px); }
a.contact-bar-item:hover .contact-bar-value { color: var(--gold-light); }
.contact-bar-icon {
  width: 40px; height: 40px;
  background: rgba(177,154,109,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.contact-bar-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.contact-bar-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-soft);
  transition: color 0.3s;
}
.contact-bar-sep {
  color: rgba(177,154,109,0.25);
  font-size: 0.8rem;
  padding: 0 0.25rem;
}
.contact-bar-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
}
.contact-bar-social {
  width: 36px; height: 36px;
  background: rgba(177,154,109,0.08);
  border: 1px solid rgba(177,154,109,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  transition: all 0.3s;
}
.contact-bar-social:hover {
  background: rgba(177,154,109,0.18);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(177,154,109,0.2);
}

/* Full-width contact form */
.contact-form-full {
  max-width: 100%;
}
.form-row-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER ENRICHED
   ═══════════════════════════════════════════════════════════════════ */
.footer-top {
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(177,154,109,0.15);
  background: var(--dark-primary);
}
.footer-contact-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  color: var(--gray-mid) !important;
  transition: color 0.3s !important;
}
.footer-contact-link:hover { color: var(--gold-light) !important; }
.footer-contact-items .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ═══════════════════════════════════════════════════════════════════
   GSAP / SCROLL FX UTILITIES
   ═══════════════════════════════════════════════════════════════════ */
/* Section parallax bg containers */
.parallax-section { overflow: hidden; }
.parallax-bg {
  will-change: transform;
}

/* Reveal animations (GSAP-driven, not AOS) */
.gs-fade-up {
  opacity: 0;
  transform: translateY(60px);
}
.gs-fade-left {
  opacity: 0;
  transform: translateX(-60px);
}
.gs-fade-right {
  opacity: 0;
  transform: translateX(60px);
}
.gs-scale-in {
  opacity: 0;
  transform: scale(0.85);
}

/* Floating gold orb for hero section bonus glow */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.06); }
}
.hero-glow-orb { animation: floatOrb 8s ease-in-out infinite; }

/* Horizontal scroll marquee for brand strip */
.marquee-section {
  overflow: hidden;
  background: rgba(177,154,109,0.05);
  border-top: 1px solid rgba(177,154,109,0.1);
  border-bottom: 1px solid rgba(177,154,109,0.1);
  padding: 1.25rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(177,154,109,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.marquee-item span { color: rgba(177,154,109,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTON SHIMMER EFFECT ───────────────────────────────────────── */
@keyframes btnShine {
  0% { left: -100%; }
  15%, 100% { left: 150%; }
}

.btn-gold, .btn-outline, .btn-submit-lux, .btn-nav-cta {
  position: relative;
  overflow: hidden !important;
}

.btn-gold::after, 
.btn-outline::after, 
.btn-submit-lux::after,
.btn-nav-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: btnShine 5s infinite;
  pointer-events: none;
}

.btn-outline::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(177, 154, 109, 0.2),
    transparent
  );
}
/* FAQ Styling */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(177, 154, 109, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open {
  border-color: var(--gold-primary);
  background: rgba(177, 154, 109, 0.05);
}
.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white-soft);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  color: var(--gold-soft);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 2rem; /* Initial padding zero top/bottom */
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem 2rem; /* Final padding with space at bottom */
}

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

@media (max-width: 900px) {
  :root { --section-py: 5rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-badge { margin: 0 auto 1.5rem; }
  .hero-subtitle { max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photo { width: 320px; height: 380px; }
  .hero-image-frame .card-1 { bottom: 2%; left: 0; }
  .hero-image-frame .card-2 { top: 0; right: 0; }

  /* Cinematic hero: mobile */
  .hero-cinematic-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 1.5rem 5rem;
    justify-content: flex-end;
    min-height: 100vh;
  }
  .hero-cinematic-content .hero-text {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .hero-bg-gradient-left {
    background: linear-gradient(
      to right,
      rgba(21,24,27,0.96) 0%,
      rgba(21,24,27,0.88) 40%,
      rgba(21,24,27,0.60) 70%,
      transparent 100%
    );
  }
  .hero-cards-layer { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-photo { max-width: 100%; height: 420px; }

  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card-featured { transform: none; }
  .plan-card-featured:hover { transform: translateY(-8px); }

  .plans-grid-luxury { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 2rem; }
  .plan-lux-featured { transform: none; }
  .plan-lux-featured:hover { transform: translateY(-10px); }

  .diferenciais-features { grid-template-columns: repeat(2, 1fr); }
  .dif-numbers { gap: 1rem; }
  .dif-number-item { padding: 0.75rem 1.5rem; }

  .contact-info-bar { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; align-items: center; text-align: center; }
  .contact-bar-item { padding: 0.5rem 1rem; flex-direction: column; text-align: center; }
  .contact-bar-sep { display: none; }

  .compare-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-experience-card { position: absolute;
  left: -20px;
  width: 80px;}
  .exp-number {
  font-size: 2rem;
  line-height: 1.3;
}
.exp-text {
  font-size: 0.52rem;
}
}

@media (max-width: 640px) {
  /* ── MOBILE MENU (Standardized) ── */
  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    height: 100%;
    width: 100%;
    position: fixed; /* Stronger scroll lock for mobile */
  }
  
  body.menu-open .navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--dark-primary); 
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(177, 154, 109, 0.12) 0%, transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(177, 154, 109, 0.12) 0%, transparent 40%);
    backdrop-filter: blur(25px); 
    -webkit-backdrop-filter: blur(25px);
    align-items: center; 
    justify-content: center; 
    gap: 2.5rem; 
    z-index: 2000; /* Higher than anything else */
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .nav-links.open { 
    display: flex; 
    opacity: 1;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: var(--gold-primary);
    background: rgba(177, 154, 109, 0.1);
    border: 1px solid rgba(177, 154, 109, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    z-index: 2001;
  }

  .menu-close:hover {
    background: rgba(177, 154, 109, 0.2);
    color: var(--gold-light);
    transform: rotate(90deg) scale(1.1);
  }

  .nav-links li { 
    font-size: 1.4rem; 
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-smooth);
  }

  .nav-links.open li {
    transform: translateY(0);
    opacity: 1;
  }

  /* Stagger menu item animations */
  .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.35s; }

  .hamburger { display: flex; }
  body.menu-open .hamburger { display: none; } /* Hide hamburger when open since we have close button */

  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-photo { width: 280px; height: 330px; }
  .hero-title { font-size: 2.2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .step-connector { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-lux { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr !important; }
  .faq-cta-card { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .modal-meta { grid-template-columns: 1fr; }
  .contact-form-lux { padding: 2rem 1.25rem; }
  .plans-grid-luxury { max-width: 100%; }
  .diferenciais-features { grid-template-columns: 1fr; }
  .dif-numbers { flex-direction: column; padding: 1.5rem; }
  .dif-number-sep { display: none; }
  .contact-bar-socials { padding: 0 1rem; }
  .testimonials-cf-next, .testimonials-cf-prev { display: none !important; }
  .sobre-experience-card { 
    position: absolute;
    top: 20px;
    left: calc(100% - 80px);
    width: fit-content;
    width: 90px;
  }
  .exp-number {
  font-size: 2rem;
  line-height: 1.3;
}
.exp-text {
  font-size: 0.52rem;
}
}
