/* ================================================
   Home + Sobre — dobra “Sobre nós” (grid copy + foto)
   ================================================ */
.home-about {
  position: relative;
  background: linear-gradient(165deg, #faf9f6 0%, #f0f4ee 48%, #e8f0e4 100%);
  padding: clamp(4rem, 9vw, 5.5rem) 0;
  border-top: 1px solid rgba(56, 75, 56, 0.08);
  overflow: hidden;
}

#manifesto.home-about {
  scroll-margin-top: clamp(5.5rem, 14vh, 7rem);
}

.home-about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 12% 22%, rgba(143, 208, 132, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 36% at 88% 78%, rgba(229, 160, 122, 0.085), transparent 50%);
}

.home-about-wrap {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.home-about-copy {
  max-width: 36rem;
  min-width: 0;
}

.home-about-kicker {
  font-family: var(--font-label, "aktiv-grotesk", sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(56, 75, 56, 0.62);
  margin-bottom: 0.85rem;
}

.home-about-title {
  font-family: var(--font-serif, "freight-big-pro", serif);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: #192419;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.home-about-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-primary, #384b38);
}

.home-about-lede,
.home-about-body {
  font-family: var(--font-sans, "aktiv-grotesk", sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.98rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: #4a584a;
  margin: 0 0 1rem;
  max-width: 42ch;
  text-wrap: pretty;
}

.home-about-body {
  margin-bottom: 0;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.75rem;
}

.home-about-actions .btn {
  flex: 0 0 auto;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 2rem;
  font-size: 0.8125rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.home-about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 2.25rem);
  min-height: min(400px, 50vh);
}

.home-about-frame {
  margin: 0;
  width: 100%;
  max-width: min(430px, 88%);
  aspect-ratio: 4 / 5;
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(56, 75, 56, 0.14);
  box-shadow:
    0 4px 0 rgba(56, 75, 56, 0.05),
    0 28px 56px rgba(13, 30, 12, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.65) 0%, rgba(242, 251, 241, 0.35) 100%);
  position: relative;
}

.home-about-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.home-about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Home — #sobre-preview: foto Cloudinary em formato mais horizontal */
#sobre-preview .home-about-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}

#sobre-preview .home-about-visual {
  padding: clamp(0.5rem, 1.5vw, 1rem);
  min-height: 0;
}

#sobre-preview .home-about-frame {
  max-width: min(720px, 100%);
  aspect-ratio: 16 / 10;
}

@media (max-width: 980px) {
  .home-about {
    padding: 3.25rem 0 3.75rem;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-about-copy {
    max-width: 100%;
  }

  .home-about-lede,
  .home-about-body {
    max-width: none;
  }

  .home-about-visual {
    min-height: 0;
    padding: 0.25rem 0 0;
  }

  .home-about-frame {
    max-width: min(340px, 92%);
    margin-inline: auto;
  }

  #sobre-preview .home-about-frame {
    max-width: min(560px, 96%);
    aspect-ratio: 3 / 2;
  }

}
