/* =========================
   ABOUT SECTION (CSS COMPLETO ATUALIZADO)
   ========================= */

.about-section {
  position: relative;
  padding: clamp(104px, 8vw, 152px) 0;
}

/* Linha dourada inferior */
.about-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 48px));
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 154, 5, 0.25),
    rgba(201, 154, 5, 0.85),
    rgba(201, 154, 5, 0.25),
    transparent
  );
  border-radius: 999px;
  opacity: 0.9;
}

.about-container {
  width: min(1200px, calc(100% - 48px)); /* levemente maior no desktop */
  margin: 0 auto;
}

/* =========================
   GRID
   ========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 56px;
  align-items: center;
}

/* =========================
   TEXTOS
   ========================= */

.about-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-title {
  margin: 14px 0;
}

.about-description {
  max-width: 58ch;
  opacity: 0.92;
}

/* =========================
   LISTA
   ========================= */

.about-list {
  list-style: none;
  margin-top: 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.10);
}

/* =========================
   CTA
   ========================= */

.about-cta-row {
  margin-top: 26px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd700, #ffc400);
  color: #0b0b0b;
  font-weight: 800;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: transform 0.7s ease;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
}

.about-cta:hover::before {
  transform: translateX(100%);
}

/* =========================
   VISUAL (DESKTOP MAIOR)
   ========================= */

.about-visual {
  position: relative;
  width: 100%;
  max-width: 480px; /* 🔥 desktop padrão */
}

.about-card {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.about-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  max-height: 600px;
  overflow: hidden;
}

/* Foto ocupa todo o card */
.about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}

/* =========================
   DESKTOP GRANDE / ULTRAWIDE
   ========================= */

@media (min-width: 1280px) {
  .about-visual {
    max-width: 540px; /* 🔥 ainda maior */
  }

  .about-card-media {
    min-height: 420px;
    max-height: 680px;
  }

  .about-grid {
    gap: 64px;
  }
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .about-description,
  .about-list {
    margin-left: auto;
    margin-right: auto;
  }

  .about-visual {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .about-section {
    padding: clamp(80px, 10vw, 112px) 0;
  }

  .about-card-media {
    min-height: 260px;
    max-height: 420px;
  }

  .about-cta {
    width: 100%;
  }
}
