@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f5f3ef;
  --gold: #B89A5A;
  --gold-light: #d4b97a;
  --mid: #1c1c1c;
  --muted: #666;
  --border: rgba(245,243,239,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Cursor */
.cursor { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transition: transform 0.15s ease; }
.cursor-ring { width: 32px; height: 32px; border: 1px solid rgba(184,154,90,0.4); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transition: all 0.25s ease; }

/* Nav */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; border-bottom: 1px solid transparent; transition: all 0.4s ease; }
#site-header.scrolled { background: rgba(10,10,10,0.95); border-bottom-color: var(--border); padding: 20px 60px; backdrop-filter: blur(12px); }
.site-logo img { height: 32px; width: auto; display: block; }
.site-logo { text-decoration: none; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,243,239,0.6); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 10px 22px; text-decoration: none; transition: all 0.2s; }
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 60px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--black); overflow: hidden; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: brightness(0.28) grayscale(30%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.92) 100%); pointer-events: none; }
.hero-line { position: absolute; top: 0; bottom: 0; left: 55%; width: 1px; background: var(--border); }
.hero-dots { position: absolute; top: 50%; right: 80px; transform: translateY(-50%); display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; opacity: 0.15; }
.hero-dot { width: 3px; height: 3px; background: var(--white); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); }
.hero-headline { font-weight: 200; font-size: clamp(52px, 7vw, 96px); line-height: 1.0; letter-spacing: -0.03em; color: var(--white); max-width: 780px; opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards; }
.hero-headline .gold { color: var(--gold-light); font-weight: 100; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 60px; opacity: 0; animation: fadeUp 0.9s ease 0.7s forwards; }
.hero-sub { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(245,243,239,0.55); max-width: 400px; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.hero-cta-btn { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); border: 1px solid rgba(245,243,239,0.3); padding: 14px 32px; text-decoration: none; transition: all 0.25s; display: inline-block; }
.hero-cta-btn:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,243,239,0.3); display: flex; align-items: center; gap: 10px; }
.hero-scroll::after { content: ''; width: 40px; height: 1px; background: rgba(245,243,239,0.2); }

/* Sections */
section { padding: 120px 60px; }
.section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 64px; display: flex; align-items: center; gap: 16px; }
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

/* Manifesto */
.manifesto { background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-text { font-weight: 200; font-size: clamp(28px, 3.5vw, 48px); line-height: 1.35; color: var(--white); max-width: 860px; letter-spacing: -0.02em; }
.manifesto-text .gold { color: var(--gold-light); font-weight: 100; }
.manifesto-sub { font-size: 15px; font-weight: 300; color: rgba(245,243,239,0.45); line-height: 1.8; max-width: 620px; margin-top: 48px; }

/* Serviços */
.services-section { padding: 100px 0; }
.services-header { padding: 0 60px; margin-bottom: 60px; }
.services-headline { font-weight: 200; font-size: clamp(32px,4vw,56px); line-height: 1.1; color: var(--white); letter-spacing: -0.02em; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.service-card { padding: 56px 48px; border-right: 1px solid var(--border); transition: background 0.3s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(184,154,90,0.04); }
.service-num { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 32px; }
.service-name { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
.service-desc { font-size: 14px; font-weight: 300; color: rgba(245,243,239,0.5); line-height: 1.75; margin-bottom: 36px; }
.service-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-items li { font-size: 12px; font-weight: 400; letter-spacing: 0.04em; color: rgba(245,243,239,0.4); padding-left: 16px; position: relative; }
.service-items li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }

/* Amanda */
.amanda-section { padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.amanda-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 476px; }
.amanda-photo { position: relative; overflow: hidden; background: #111; }
.amanda-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: grayscale(60%) contrast(0.9) brightness(0.55); }
.amanda-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.75) 100%); }
.amanda-photo-caption { position: absolute; bottom: 40px; left: 48px; }
.amanda-photo-caption .eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.amanda-photo-caption h2 { font-size: 40px; font-weight: 200; color: var(--white); line-height: 1.05; letter-spacing: -0.02em; }
.amanda-text { background: var(--mid); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
.amanda-quote { font-size: 22px; font-weight: 200; color: var(--white); line-height: 1.55; letter-spacing: -0.01em; border-left: 1px solid var(--gold); padding-left: 28px; margin-bottom: 40px; }
.amanda-bio { font-size: 14px; font-weight: 300; color: rgba(245,243,239,0.5); line-height: 1.85; margin-bottom: 40px; }
.amanda-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.amanda-tag { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,243,239,0.4); border: 1px solid var(--border); padding: 8px 16px; }

/* Time */
.team-section { padding: 80px 60px; background: var(--black); border-top: 1px solid var(--border); }
.team-headline { font-size: clamp(28px,3.5vw,44px); font-weight: 200; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 60px; }
.team-headline .gold { color: var(--gold-light); font-weight: 100; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.team-card { background: var(--black); padding: 40px 32px; transition: background 0.3s; }
.team-card:hover { background: #111; }
.team-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(184,154,90,0.1); border: 1px solid rgba(184,154,90,0.3); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 400; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 24px; }
.team-name { font-size: 15px; font-weight: 400; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.team-role { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.team-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.team-desc { font-size: 12px; font-weight: 300; color: rgba(245,243,239,0.4); line-height: 1.7; }

/* Diferenciais */
.diferencial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.diferencial-item { background: var(--black); padding: 56px 48px; transition: background 0.3s; }
.diferencial-item:hover { background: #111; }
.diferencial-num { font-size: 48px; font-weight: 100; color: rgba(184,154,90,0.2); margin-bottom: 16px; }
.diferencial-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 14px; letter-spacing: 0.02em; }
.diferencial-body { font-size: 14px; font-weight: 300; color: rgba(245,243,239,0.5); line-height: 1.75; }

/* CTA */
.cta-section { background: var(--mid); text-align: center; border-top: 1px solid var(--border); }
.cta-headline { font-weight: 200; font-size: clamp(36px,5vw,72px); line-height: 1.1; color: var(--white); margin-bottom: 24px; letter-spacing: -0.02em; }
.cta-headline .gold { color: var(--gold-light); font-weight: 100; }
.cta-sub { font-size: 15px; font-weight: 300; color: rgba(245,243,239,0.5); max-width: 480px; margin: 0 auto 56px; line-height: 1.75; }
.cta-btn { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 18px 48px; text-decoration: none; transition: background 0.2s; }
.cta-btn:hover { background: var(--gold-light); }

/* Footer */
#site-footer { padding: 48px 60px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-logo img { height: 22px; width: auto; display: block; opacity: 0.4; }
.footer-copy { font-size: 11px; color: rgba(245,243,239,0.2); letter-spacing: 0.06em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,243,239,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* WP overrides */
.wp-block-image img { max-width: 100%; height: auto; }
a { color: inherit; }
img { max-width: 100%; }
