/* About Page Styles */
.about-container {
  margin-top: 50px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.about-content {
  max-width: 900px;
  width: 100%;
}

.about-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
}

/* Seções com layout lado a lado */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* Linha 2: Inverte a ordem (imagem à esquerda, texto à direita) */
.about-section.linha2 {
  grid-auto-flow: dense;
}

.about-section.linha2 .about-image {
  grid-column: 1;
}

.about-section.linha2 .about-text {
  grid-column: 2;
}

.about-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.5px;
  color: #000000;
  font-weight: 300;
  text-align: left;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fallback para layout legado */
.about-section-legacy {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.5px;
  color: #000000;
  font-weight: 300;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .about-container {
    padding: 40px 20px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .about-section.linha2 .about-image,
  .about-section.linha2 .about-text {
    grid-column: auto;
  }

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