/* ═══════════════════════════════════════════
   PREMIUM PORTFOLIO — Design System
   ═══════════════════════════════════════════ */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --violet-glow: rgba(124, 58, 237, 0.35);
  --cyan: #22d3ee;
  --bg: #050508;
  --bg-2: #0a0a10;
  --surface: rgba(14, 14, 22, 0.75);
  --surface-solid: #0e0e16;
  --glass: rgba(255, 255, 255, 0.03);
  --text: #f4f4f5;
  --muted: #8b8b9a;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-hover: rgba(201, 168, 76, 0.45);
  --radius: 20px;
  --radius-sm: 14px;
  --nav-h: 76px;
  --max-w: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* ── Nav ── */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 48px);
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-simple .nav-links {
  position: static;
  flex-direction: row;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-logo {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--glass);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-left: 6px;
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--gold), #b8943f) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}

.nav-cta:hover {
  color: #0a0a0a !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.nav-toggle {
  display: none;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 10px 12px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 32px) clamp(20px, 5vw, 48px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 12s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--violet-glow), transparent 70%);
  top: -10%; right: -5%;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
  bottom: 10%; left: -8%;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08), transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 580px;
}

.hero-visual {
  flex: 0 1 auto;
  width: 100%;
  max-width: clamp(280px, 34vw, 380px);
  min-width: 0;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a8863a);
  color: #0a0a0a;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-glass {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  color: var(--text);
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ── Trust marquee ── */
.trust-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(10, 10, 16, 0.6);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding-left: 32px;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
  opacity: 0.5;
  font-weight: 400;
}

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

/* ── Value props (Why Me) ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.value-item {
  background: var(--surface-solid);
  padding: 32px 24px;
  transition: background var(--transition);
}

.value-item:hover {
  background: rgba(201, 168, 76, 0.04);
}

.value-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 16px;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--gold-light);
}

.value-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Process ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), transform var(--transition);
}

.process-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.process-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 88px 0 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 44px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%),
    var(--surface-solid);
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.cta-banner-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 440px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Contact upgrades ── */
.contact-lead {
  font-size: 1.08rem !important;
  max-width: 520px;
  margin: 0 auto 28px !important;
  color: var(--muted) !important;
}

.contact-hero-btn {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 340px;
  justify-content: center;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Sticky WhatsApp ── */
.sticky-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease infinite;
}

.sticky-whatsapp:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

.hero-metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}

.metric span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Photo showcase — fluid container chain */
.photo-showcase {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.photo-orbit {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  border: 1px solid var(--border-gold);
  opacity: 0.4;
  animation: spinSlow 20s linear infinite;
}

.photo-orbit::before {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
  transform: translateX(-50%);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: clamp(16px, 3vw, 24px);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface-solid);
  border: 1px solid var(--border-gold);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(124, 58, 237, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.photo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12) 0%,
    transparent 40%,
    transparent 60%,
    rgba(201,168,76,0.08) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.photo-frame picture {
  display: contents;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.photo-showcase:hover .hero-photo {
  transform: scale(1.06);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(10, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}

.float-card-1 { bottom: 12%; left: -12%; animation-delay: 0s; }
.float-card-2 { top: 14%; right: -10%; animation-delay: -2.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  font-size: 1.3rem;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 10px;
  border: 1px solid var(--border-gold);
}

.float-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.float-card small {
  font-size: 0.72rem;
  color: var(--muted);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
  will-change: transform, opacity;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero load animation */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Main ── */
main {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px) 80px;
}

main section { padding: 88px 0 0; }

.section-header { margin-bottom: 40px; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text);
}

.section-header p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 520px;
}

/* ── Premium cards ── */
.glass-card,
.premium-card {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.glass-card {
  padding: 32px 36px;
}

.glass-card:hover,
.premium-card:hover {
  border-color: var(--border-hover);
}

.glass-card p {
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.8;
  font-size: 1.02rem;
}

.glass-card p:last-child { margin-bottom: 0; }
.glass-card strong { color: var(--text); }

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.premium-card:hover .card-glow { opacity: 1; }

/* ── Services bento ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.premium-card.service-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.featured-service {
  grid-column: span 1;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(201, 168, 76, 0.05));
  border-color: rgba(124, 58, 237, 0.2);
}

.card-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(124, 58, 237, 0.1));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.premium-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Timeline ── */
.timeline-premium { padding-left: 32px; }

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--violet));
  border-radius: 2px;
  opacity: 0.5;
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  border: 3px solid var(--bg);
}

.timeline-role {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.timeline-company {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 6px 0 12px;
}

.timeline-desc {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.7;
}

/* ── Projects ── */
.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.premium-card.project-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,8,0.85) 100%);
  opacity: 0.7;
}

.project-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.project-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card p {
  flex: 1;
  margin: 0 0 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.view-project {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
  letter-spacing: 0.02em;
}

.view-project::after {
  content: "→";
  transition: transform var(--transition);
}

.view-project:hover { color: var(--gold-light); }
.view-project:hover::after { transform: translateX(5px); }

/* ── Skills ── */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-badge {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
  cursor: default;
}

.skill-badge:hover {
  border-color: var(--border-gold);
  background: var(--gold-dim);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── Certifications ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.premium-card.cert-card {
  padding: 28px 22px;
}

.cert-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.cert-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.cert-card a {
  display: inline-flex;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 28px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ── Contact ── */
.contact-card {
  text-align: center;
  padding: 56px 40px !important;
}

.contact-card > p {
  font-size: 1.08rem;
  max-width: 500px;
  margin: 0 auto 36px !important;
  color: var(--muted) !important;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
  background: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.social-link svg {
  width: 18px; height: 18px;
  fill: currentColor;
  opacity: 0.9;
}

/* ── Footer ── */
.footer-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px 36px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 600;
}

/* ── Modal ── */
.project-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalBg 0.3s ease;
}

.project-modal.is-open {
  display: flex;
}

@keyframes modalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--surface-solid);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  width: min(600px, 100%);
  height: min(600px, 85vh);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  animation: modalIn 0.4s var(--ease);
  overflow: hidden;
}

@keyframes modalIn {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--border);
  z-index: 2;
  transition: all var(--transition);
}

.close-modal:hover {
  color: var(--text);
  border-color: var(--border-gold);
}

.slider { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.slide.active { display: flex; }

.slide img, .slide video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
  transition: all var(--transition);
}

.prev { left: 14px; }
.next { right: 14px; }
.prev:hover, .next:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero-layout {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: clamp(28px, 4vw, 40px);
  }

  .hero-visual {
    order: -1;
    width: 100%;
    max-width: min(420px, 82vw);
    margin-inline: auto;
    align-self: center;
  }

  .photo-orbit {
    display: none;
  }

  .hero-photo {
    transform: none;
  }

  .hero-content {
    max-width: 640px;
    width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags,
  .hero-actions,
  .hero-metrics {
    justify-content: center;
  }

  .float-card-1 { left: -4%; }
  .float-card-2 { right: -4%; }
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-cta {
    margin: 8px 0 0 !important;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .project-list { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .cta-banner-text p { max-width: 100%; }
  .cta-banner-actions { width: 100%; justify-content: center; }
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-visual {
    max-width: 100%;
    margin-inline: 0;
    align-self: stretch;
  }
  .scroll-hint { display: none; }
  .float-card { display: none; }
  .hero-metrics { justify-content: center; }
  .metric-divider { display: none; }
  .glass-card { padding: 24px 22px; }
  .contact-card { padding: 40px 24px !important; }
  .social-link { flex: 1 1 calc(50% - 8px); justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .social-grid { flex-direction: column; }
  .social-link { width: 100%; }
  .sticky-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

.site-footer a:hover {
  color: var(--gold-light);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10002;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Certificate pages ── */
.cert-page {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 32px) clamp(20px, 5vw, 48px) 60px;
}

.cert-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.cert-nav a {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface);
  transition: all var(--transition);
}

.cert-nav a:hover {
  color: var(--text);
  border-color: var(--border-gold);
}

.cert-nav a.active {
  color: var(--gold-light);
  border-color: var(--border-gold);
  background: var(--gold-dim);
}

.cert-image-wrap {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.cert-image-wrap img {
  width: 100%;
  border-radius: 12px;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

/* ── Custom cursor (desktop) ── */
@media (pointer: fine) {
  body.custom-cursor,
  body.custom-cursor a,
  body.custom-cursor button,
  body.custom-cursor summary,
  body.custom-cursor .btn,
  body.custom-cursor label {
    cursor: none !important;
  }

  body.custom-cursor .navbar,
  body.custom-cursor .navbar * {
    cursor: pointer !important;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  will-change: transform;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.8);
  transition: opacity 0.25s ease, transform 0.08s ease;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  background: rgba(201, 168, 76, 0.04);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease),
              border-color 0.3s ease, background 0.3s ease, opacity 0.25s ease;
}

.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  border-width: 2px;
}

.cursor-ring.is-click {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-color: var(--violet-light);
  background: rgba(124, 58, 237, 0.15);
}

body.cursor-hidden .cursor-dot,
body.cursor-hidden .cursor-ring {
  opacity: 0 !important;
}

.cursor-dot.is-nav-hidden,
.cursor-ring.is-nav-hidden {
  opacity: 0 !important;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .animate-in { opacity: 1; transform: none; animation: none; }
}
