/* ═══════════════════════════ sorteio.css ═══════════════════════════ */

.sorteio { padding-block: 0; }
.sorteio-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  background: var(--grad-blue);
  border-radius: var(--r-xl);
  padding: 56px 56px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.sorteio-glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(230,57,70,.35) 0%, transparent 65%);
  pointer-events: none;
}

.sorteio-content { position: relative; z-index: 2; }
.sorteio-content .eyebrow { color: #ffd2d6; }
.sorteio-content h2 { color: #fff; margin-bottom: 16px; }
.sorteio-content h2 .red-text { color: #ff8a93; }
.sorteio-content > p { color: rgba(255,255,255,.85); margin-bottom: 22px; max-width: 480px; }

.sorteio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.sorteio-list li { color: rgba(255,255,255,.92); font-size: 0.96rem; }

.sorteio-visual { position: relative; z-index: 2; }
.sorteio-photo {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
}
.sorteio-photo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.sorteio-photo.no-img::after {
  content: "🎁";
  font-size: 90px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.3));
}

@media (max-width: 860px) {
  .sorteio-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; gap: 32px; }
  .sorteio-content .eyebrow,
  .sorteio-content > p,
  .sorteio-list { margin-inline: auto; }
  .sorteio-list { max-width: 420px; text-align: left; }
  .sorteio-visual { max-width: 320px; margin-inline: auto; width: 100%; order: -1; }
}
