/* ═══════════════════════════════════════════
   5. LIVROS
═══════════════════════════════════════════ */
.books-trio { display: flex; flex-direction: column; gap: 3rem; }

.book-featured {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  transition: border-color var(--transition);
}
.book-featured:hover { border-color: var(--gold-dim); }

.book-cover {
  aspect-ratio: 2/3;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.5);
  overflow: hidden;
  flex-shrink: 0;
}
.book-cover--1 { background: linear-gradient(160deg, #1a1a2e, #2d1b00); border-left: 4px solid var(--gold); }
.book-cover--2 { background: linear-gradient(160deg, #0d1b2a, #1a3a2a); border-left: 4px solid #7ABFAD; }
.book-cover--3 { background: linear-gradient(160deg, #1a0a2e, #2a1515); border-left: 4px solid #9B7FD4; }

.book-cover-inner {
  padding: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.book-cover-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  text-align: center;
}
.book-cover-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.book-cover-line {
  width: 24px; height: 1px;
  background: var(--gold);
  margin: 0.3rem auto;
}
.book-cover-rotary { margin-top: 0.3rem; color: var(--gold); }

.book-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.book-status--soon {
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}
.book-status--soon::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.book-status--production {
  background: rgba(122,191,173,0.1);
  border: 1px solid rgba(122,191,173,0.35);
  color: #7ABFAD;
}
.book-status--production::before { content: '◐'; font-size: 0.65rem; }

.book-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.book-featured-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.book-launch-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
}
.book-launch-row strong { color: var(--text); font-weight: 400; }
.book-rotary-notice {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(155,127,212,0.08);
  border: 1px solid rgba(155,127,212,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1rem 0;
}
.rotary-notice-icon { flex-shrink: 0; margin-top: 0.1rem; color: var(--gold); }
.rotary-notice-text {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}
.rotary-notice-text strong { color: var(--text); font-weight: 400; }
