/* ── SEÇÃO DESTAQUE PANORÂMICA ── */
.spotlight-section {
  position: relative;
  background: #1F2A30;
  overflow: hidden;
}

.spotlight-header {
  position: absolute;
  top: 2rem;
  left: 3rem;
  z-index: 10;
}
.spotlight-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,216,195,0.6);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.spotlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #E8D8C3;
  font-weight: 400;
  margin: 0;
}

.spotlight-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotlight-slide {
  min-width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31,42,48,0.92) 0%,
    rgba(31,42,48,0.6) 50%,
    rgba(31,42,48,0.2) 100%
  );
}

.spotlight-content {
  position: relative;
  z-index: 2;
  padding: 3rem 3rem 3rem 3rem;
  max-width: 560px;
}

.spotlight-cat {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,216,195,0.65);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.spotlight-nome {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F5F5F3;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.spotlight-prof {
  font-size: 0.85rem;
  color: rgba(245,245,243,0.55);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.spotlight-local {
  font-size: 0.75rem;
  color: rgba(245,245,243,0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.spotlight-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.spl-btn {
  display: inline-block;
  border: 1px solid rgba(232,216,195,0.4);
  color: #E8D8C3;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
}
.spl-btn:hover {
  background: #E8D8C3;
  color: #1F2A30;
  border-color: #E8D8C3;
}

/* Navegação */
.spotlight-nav {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.spl-nav-btn {
  background: rgba(245,245,243,0.15);
  border: 1px solid rgba(245,245,243,0.2);
  color: #F5F5F3;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.spl-nav-btn:hover { background: rgba(245,245,243,0.3); }

.spl-dots {
  display: flex;
  gap: 0.4rem;
}
.spl-dot {
  width: 6px;
  height: 6px;
  background: rgba(245,245,243,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.spl-dot.active { background: #E8D8C3; }

@media (max-width: 768px) {
  .spotlight-slide { height: 480px; }
  .spotlight-content { padding: 2rem 1.5rem; }
  .spotlight-nome { font-size: 1.6rem; }
  .spotlight-header { left: 1.5rem; top: 1rem; }
}
