/* =============================================
   SECTION 6 — SOBRE MIM
   ============================================= */

.about-me {
  background: var(--color-cream);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.about-me__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.about-me__visual {
  position: relative;
  min-height: 550px;
}

.about-me__main-frame {
  width: 75%;
  height: 620px;
  position: relative;
  z-index: 1;
}

.about-me__main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-me__polaroid-1 {
  position: absolute;
  width: 150px;
  height: 190px;
  bottom: 40px;
  right: -10px;
  z-index: 3;
  transform: rotate(4deg);
}

.about-me__polaroid-2 {
  position: absolute;
  width: 130px;
  height: 165px;
  top: 60px;
  right: 30px;
  z-index: 2;
  transform: rotate(-3deg);
}

.about-me__content {
  padding-left: 0;
}

.about-me__label {
  margin-bottom: var(--space-md);
}

.about-me__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  color: var(--color-wine-deep);
  line-height: 1.0;
  margin-bottom: var(--space-lg);
}

.about-me__title .italic-accent {
  color: var(--color-wine);
}

.about-me__text {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  color: var(--color-brown-dark);
  line-height: 1.9;
  max-width: 440px;
}

.about-me__text p {
  margin-bottom: var(--space-sm);
}

.about-me__text p:first-child {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--color-wine);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-me__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-me__visual {
    order: -1;
    min-height: 400px;
    display: flex;
    justify-content: center;
  }

  .about-me__main-frame {
    width: 65%;
    height: 480px;
  }

  .about-me__content {
    text-align: center;
  }

  .about-me__text {
    margin: 0 auto;
  }
}
