/* Ajuste da seção Sobre: foto compacta, alinhamento vertical e respiro entre seções. */
.about {
  display: grid;
  grid-template-columns: minmax(300px, 400px) minmax(0, 620px);
  justify-content: center;
  align-items: center;
  gap: clamp(65px, 8vw, 135px);
  min-height: 0;
  padding: 110px clamp(24px, 7vw, 112px);
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  justify-self: end;
  align-self: center;
}

.about-image img {
  width: 100%;
  height: clamp(480px, 34vw, 560px);
  object-fit: cover;
  object-position: center 22%;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 620px;
  padding: 0;
  align-self: center;
}

@media (max-width: 950px) {
  .about {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 90px clamp(24px, 8vw, 70px);
  }

  .about-image {
    width: min(100%, 400px);
    height: auto;
    justify-self: center;
  }

  .about-image img { height: 540px; }
  .about-copy { justify-self: center; }
}

@media (max-width: 600px) {
  .about {
    gap: 42px;
    padding: 75px 22px;
  }

  .about-image {
    width: min(100%, 340px);
    height: auto;
  }

  .about-image img { height: 460px; }
  .about-copy { padding: 0; }
}

/* Hero desktop fiel à composição original do Lovable. */
@media (min-width: 951px) {
  .hero {
    min-height: 0;
    align-items: start;
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .hero-copy {
    align-self: start;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(70px, 5.9vw, 108px);
  }

  .hero .lead {
    max-width: 700px;
  }

  .hero-image {
    width: calc(100% + 13px);
    align-self: start;
    transform: translateX(18px);
  }

  .hero-image::before {
    inset: -46px 46px 46px -46px;
  }

  .hero-image img {
    width: 100%;
    height: clamp(620px, 40vw, 738px);
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .hero .spark {
    display: none;
  }
}

.hero .spark { display: none; }
