/* css/sections/about.css */

.about {
  background-color: var(--color-base);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__visual {
  position: relative;
  width: 100%;
}

.about__img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
  border: 1px solid oklch(73.55% 0.134 83.18 / 0.2);
}

.about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Detalhe dourado ornamental no fundo da foto */
.about__visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--color-gold-primary);
  border-left: 1px solid var(--color-gold-primary);
  pointer-events: none;
  z-index: -1;
}

.about__content {
  display: flex;
  flex-direction: column;
}

.about__tag {
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  color: var(--color-gold-primary);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.about__title {
  margin-bottom: var(--space-xl);
  font-weight: var(--weight-light);
}

.about__title strong {
  font-weight: var(--weight-semibold);
  color: var(--color-gold-primary);
}

.about__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about__text--highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text-main);
  line-height: var(--lh-heading);
  border-left: 2px solid var(--color-gold-primary);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about__credential-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--size-small);
  color: var(--color-text-main);
  font-weight: var(--weight-medium);
}

.about__credential-item svg {
  color: var(--color-gold-primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .about__grid {
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about__visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .about__credentials {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}
