/* ================= ABOUT ================= */
.about {
  width: 100%;
  background: #000;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

/* ================= INNER ================= */
.about-inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================= TEXTO ================= */
.about-text {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.about-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-kicker {
  font-size: 14px;
  letter-spacing: 4px;
  color: #ffcc66;
  margin-bottom: 20px;
  display: inline-block;
}

.about-text h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #ffffff;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 22px;
}

.about-highlight {
  font-size: 22px;
  font-weight: 700;
  color: #ffcc66;
  margin-top: 30px;
}

/* ================= VISUAL / SLIDER ================= */
.about-visual {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

/* imagens do slider */
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* slide ativo */
.about-slide.active {
  opacity: 1;
  z-index: 2;
}

/* overlay sutil para estética */
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 3;
}
@media (max-width: 900px) {

  /* 🔥 REDUZ ESPAÇO NO INÍCIO DA SESSÃO */
  .about {
    padding: 70px 0 90px; /* topo menor, base equilibrada */
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;

    justify-items: center;   /* centraliza os blocos */
    text-align: center;      /* centraliza textos */
  }

  .about-text {
    display: flex;
    flex-direction: column;
    align-items: center;     /* centraliza conteúdo textual */
  }

  .about-text h2 {
    font-size: 38px;
  }

  .about-text p {
    max-width: 520px;        /* leitura confortável */
  }

  .about-highlight {
    text-align: center;
  }

  .about-visual {
    width: 100%;
    max-width: 520px;        /* visual bem enquadrado */
    height: 320px;
  }
}


