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

:root {
  --orange: #FF6B00;
  --orange-light: #FF9A3C;
  --pink: #EC4899;
  --purple: #7C3AED;
  --dark: #0A0A0F;
  --dark-2: #12121A;
  --dark-3: #1A1A28;
  --text: #F8F8FF;
  --text-muted: #9CA3AF;
}

html, body { min-height: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

/* ── background ── */
.bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .45; }
.blob-1 { width: 600px; height: 600px; background: rgba(124,58,237,.2); top: -200px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: rgba(255,107,0,.12); bottom: -100px; right: -100px; }

/* ── nav ── */
nav { position: relative; z-index: 10; border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; text-decoration: none; background: linear-gradient(135deg, var(--orange-light), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-back { font-size: .85rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.nav-back:hover { color: var(--text); }

/* ── container ── */
.container { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 64px 24px 80px; }

/* ── grid ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* ── foto ── */
.sobre-img-wrap { position: sticky; top: 32px; }
.sobre-foto {
  width: 100%; border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  object-fit: cover; aspect-ratio: 3/4;
  display: block;
}
.sobre-badge {
  position: absolute; bottom: 20px; left: -16px;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 10px 16px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.sobre-badge strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 800; background: linear-gradient(135deg, var(--orange), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sobre-badge span { font-size: .72rem; color: var(--text-muted); white-space: nowrap; }

/* ── conteúdo ── */
.sobre-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 12px; }
h1 { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 28px; }
.grad-text { background: linear-gradient(135deg, var(--orange-light), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.sobre-content p { color: #C8C8D8; font-size: 1rem; line-height: 1.75; margin-bottom: 18px; }
.sobre-content strong { color: var(--text); }
.sobre-content .destaque { color: var(--orange-light); }

/* ── credentials ── */
.credentials { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.cred {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 14px 16px;
}
.cred-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.cred span:last-child { font-size: .875rem; color: #B0B0C0; line-height: 1.55; }

/* ── CTAs ── */
.sobre-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 20px rgba(255,107,0,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,0,.45); }
.btn-outline {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text); font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .25s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }

/* ── footer ── */
footer { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.07); padding: 24px; text-align: center; }
footer p { color: rgba(255,255,255,.2); font-size: .8rem; }
footer a { color: rgba(255,255,255,.35); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,.6); }

/* ── mobile ── */
@media (max-width: 768px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-wrap { position: relative; max-width: 320px; margin: 0 auto; }
  h1 { font-size: 2rem; }
  .container { padding: 40px 20px 64px; }
  .sobre-badge { left: 12px; bottom: 12px; }
}

    /* ── footer padrão ── */
    .site-footer { border-top: 1px solid rgba(255,255,255,.07); padding: 28px 24px; text-align: center; }
    .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 14px; }
    .footer-social a { color: rgba(255,255,255,.35); transition: color .2s, transform .2s; display: flex; }
    .footer-social a:hover { color: rgba(255,255,255,.7); transform: translateY(-2px); }
    .site-footer p { color: rgba(255,255,255,.2); font-size: .78rem; line-height: 1.8; }
    .site-footer a { color: rgba(255,255,255,.3); text-decoration: none; }
    .site-footer a:hover { color: rgba(255,255,255,.6); }
