:root {
  --bg: #090909;
  --bg-alt: #000000;
  --surface: #1a1917;
  --surface-2: #262520;
  --yellow: #fcc513;
  --text: #f5f5f4;
  --text-dim: #a8a7a3;
  --border: rgba(245, 245, 244, 0.1);
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.accent { color: var(--yellow); }

.eyebrow {
  font-family: var(--font-display);
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.section { padding: 100px 0; }

.section-lead {
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--yellow);
  color: #0a0a0a;
}
.btn-primary:hover { transform: translateY(-2px); background: #ffd54a; }
.btn-outline {
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.logo-full { height: 34px; width: auto; display: block; }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--yellow); }

.nav-cta { padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  padding: 200px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(252, 197, 19, 0.08), transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 197, 19, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.75) 60%, var(--bg) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 24px;
}
.hero-lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sobre */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.sobre-text p { color: var(--text-dim); margin-bottom: 16px; }
.stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.6rem;
}
.stat span { color: var(--text-dim); font-size: 0.85rem; }

.sobre-visual { display: flex; justify-content: center; align-items: center; }
.bolt-image { width: 100%; max-width: 420px; height: auto; }

/* Equipe */
.equipe h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 48px; }
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.member {
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.member:hover { transform: translateY(-4px); border-color: var(--yellow); }
.member-photo {
  aspect-ratio: 4/5;
  margin: -40px -24px 20px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--surface);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.member h3 { font-size: 1.1rem; margin-bottom: 4px; }
.member p { color: var(--text-dim); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Cards / Serviços */
.servicos h2, .portfolio h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 48px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.card-icon { font-size: 1.8rem; margin-bottom: 16px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.92rem; }

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 9/16;
}
.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--surface-2), #0d0d0c);
  display: block;
}

/* Contato */
.contato-single {
  max-width: 560px;
  margin: 0 auto;
}
.contato-single h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.contato-single > p { margin-bottom: 40px; }
.contato-info { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contato-info li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.contato-info strong { font-family: var(--font-display); letter-spacing: 0.05em; }
.contato-info a { color: var(--yellow); text-decoration: none; }
.contato-info a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner .logo-full { height: 26px; }
.footer-inner p { color: var(--text-dim); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .cards-grid, .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-visual { order: -1; }
}

@media (max-width: 720px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .cards-grid, .equipe-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 160px 0 80px; }
  .section { padding: 70px 0; }
}
