/* ============================================
   DIEGO KAMUI — sobre.css
   Estilos exclusivos da página Sobre
   ============================================ */

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  padding: clamp(160px, 18vw, 240px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.sobre-eyebrow,
.blog-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transform: none;
}

.sobre-eyebrow::before,
.blog-eyebrow::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--orange);
  text-shadow: 0 0 6px rgba(245, 160, 32, 0.7);
}

.sobre-headline {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.sobre-headline em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ SOBRE GRID ============ */
.sobre-section {
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

/* ============ IMAGEM ============ */
.sobre-img-col {
  position: sticky;
  top: 100px;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.sobre-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(13, 13, 13, 0.7) 100%
  );
  pointer-events: none;
}

.sobre-img-wrap::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(245, 160, 32, 0.2);
  z-index: -1;
  transition: opacity 0.3s;
}

.sobre-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sobre-tag-code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--orange);
  opacity: 0.7;
}

.sobre-tag-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============ TEXTO ============ */
.sobre-text-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.sobre-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre-block p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-light);
}

.sobre-block--destaque {
  padding: 28px 32px;
  border-left: 2px solid var(--orange);
  background: rgba(245, 160, 32, 0.04);
}

.sobre-block--destaque p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
}

/* ============ CTA SOBRE ============ */
.sobre-cta {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sobre-cta-frase {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--gray-light);
  margin-bottom: 32px;
}

.sobre-cta-frase em {
  font-style: italic;
  color: var(--white);
}

/* ============ NÚMEROS ============ */
.numeros-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.numero-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px);
  background: var(--black);
}

.numero-val {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.numero-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============ NAV LINK ATIVO ============ */
.nav-link--active {
  color: var(--white) !important;
}

.nav-link--active::after {
  width: 100% !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-img-col {
    position: static;
    max-width: 420px;
  }

  .numeros-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sobre-headline { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .sobre-img { aspect-ratio: 4 / 5; }
  .sobre-block--destaque { padding: 20px; }
  .sobre-cta-frase { font-size: 1rem; }
  .numero-item { padding: 28px 20px; }
}
