/* ═══════════ SEÇÃO ORIGEM (a-voyzer-tech.html) ═══════════ */
.origem-section {
  position: relative;
  overflow: hidden;
  background: var(--black)
}

.origem-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.origem-photo-frame {
  position: relative;
  padding: 14px;
  max-width: 340px;
  justify-self: start;
}

.origem-photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--brand);
  border-left: 2px solid var(--brand);
}

.origem-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
}

.origem-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: grayscale(.12) contrast(1.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.origem-photo-tag {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(7, 7, 8, .72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(254, 80, 0, .4);
  color: var(--white);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .45em .9em;
  border-radius: 2px;
}

.origem-text .eyebrow {
  margin-bottom: .8rem
}

.origem-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.origem-text p {
  color: var(--white-dim);
  line-height: 1.85;
  font-size: 1.03rem
}

.origem-text strong {
  color: var(--white);
  font-weight: 500
}

.origem-text .sobre-aside {
  margin-top: 2.2rem
}

@media (max-width:860px) {
  .origem-grid {
    grid-template-columns: 1fr;
    text-align: left
  }

  .origem-photo-frame {
    max-width: 280px;
    margin-bottom: .5rem
  }
}
