/* ========================================
   SOBRE
======================================== */

.sobre {
  position: relative;
  padding: 120px 7%;
  background:
    radial-gradient(circle at top left, rgba(212,160,23,0.10), transparent 30%),
    linear-gradient(180deg, #f7f4ef 0%, #ffffff 100%);
  overflow: hidden;
}

.sobre-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ========================================
   IMAGEM
======================================== */

.sobre-image {
  position: relative;
}

.sobre-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.18);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,255,255,0.6);
}

.sobre-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.25), transparent);
  z-index: 1;
}

.sobre-image-wrapper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: 0.6s ease;
}

.sobre-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ========================================
   TEXTO
======================================== */

.sobre-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 0.9rem;
}

.sobre-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.sobre-content p {
  color: rgba(0,0,0,0.72);
  line-height: 1.9;
  margin-bottom: 22px;
  font-size: 1.03rem;
  text-align: justify;
}

.sobre-content strong {
  color: #111;
}

/* ========================================
   CARDS
======================================== */

.sobre-destaques {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sobre-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(212,160,23,0.14);
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.sobre-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,160,23,0.4);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    0 0 25px rgba(212,160,23,0.08);
}

.sobre-card h3 {
  color: #b8860b;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.sobre-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.72);
}

/* ========================================
   REVEAL ANIMATION
======================================== */

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 992px) {

  .sobre {
    padding: 90px 24px;
  }

  .sobre-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sobre-image-wrapper img {
    height: 500px;
  }

  .sobre-destaques {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .sobre-content h2 {
    font-size: 3rem;
  }

  .sobre-content p {
    font-size: 1rem;
  }

  .sobre-image-wrapper img {
    height: 420px;
  }

}