/* ===========================
   Landing Livro - Estilo principal
=========================== */

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 150px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #050505;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.1) 70%, rgba(5,5,5,0) 100%),
    url("/images/23230190_book_cover_mockup_13.jpg") center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 320px;
}

.lp-hero-copy {
  max-width: 620px;
}

.lp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 10px;
}

.lp-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--white);
}

.lp-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lp-bullets {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lp-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.lp-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.lp-hero-cta {
  margin-top: 18px;
}

.lp-hero-note {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Botões com micro animação */
.lp-btn-accent {
  transition: transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
  border-radius: 999px;
  padding-inline: 26px;
}

.lp-btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* BLOCO FORMULÁRIO + IMAGEM */

.lp-lead-block {
  background: #0b0b0b;
}

.lp-lead-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gold);
}

.lp-lead-copy p {
  color: var(--muted);
  line-height: 1.7;
}

/* Form card */

.lp-hero-form {
  background: radial-gradient(circle at top left, rgba(198,166,97,0.18), transparent 60%),
              rgba(5,5,5,.96);
  border: 1px solid rgba(255,255,255,.16);
  padding: 35px;
  max-width: 420px;
  margin-left: auto;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.8);
  backdrop-filter: blur(4px);
  transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
}

.lp-hero-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0,0,0,.85);
  border-color: rgba(198,166,97,.8);
}

.lp-hero-form h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--gold);
}

.lp-form-text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lp-hero-form .form-group {
  margin-bottom: 12px;
}

.lp-hero-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--muted);
}

.lp-hero-form input[type="text"],
.lp-hero-form input[type="email"] {
  width: 100%;
  padding: 12px 0px 12px 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,10,10,.9);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  border-radius: 6px;
  transition: border-color .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
}

.lp-hero-form input[type="text"]:focus,
.lp-hero-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(198,166,97,.35);
  background: #050505;
}

.lp-form-note {
  margin: 4px 0 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.lp-submit {
  width: 100%;
  text-align: center;
  border-radius: 999px;
}

.lp-form-feedback {
  margin-top: 10px;
  font-size: 0.85rem;
}

.lp-form-feedback.success {
  color: #79d29d;
}

.lp-form-feedback.error {
  color: #ff8b8b;
}

.lp-success {
  color: var(--muted);
}

.lp-success h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1.1rem;
}

/* SECÇÕES GENÉRICAS */

.lp-section {
  padding: 100px;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.lp-section-alt {
  background: var(--bg-soft);
}

.lp-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gold);
}

.lp-section p {
  color: var(--muted);
  line-height: 1.7;
}

/* Layout 2 colunas */

.lp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 30px;
  align-items: center;
}

/* Imagens de apoio */

.lp-image-col {
  width: 100%;
}

.lp-image-box {
  width: 100%;
  padding-top: 62%;
  background: url("/images/417616851_11670075.jpg") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.7);
}

.lp-image-box-alt {
  background: url("/images/424597893_0d0b0aff-44c2-4cc6-bce8-e9955b2fc6af.jpg") center/cover no-repeat;
}

/* Ordem em mobile */

.lp-img-right .lp-image-col {
  order: 2;
}

.lp-img-right > div:first-child {
  order: 1;
}

.lp-img-left .lp-image-col {
  order: 1;
}

.lp-img-left > div:last-child {
  order: 2;
}

/* Listas */

.lp-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lp-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.lp-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.lp-list-check li::before {
  content: "✔";
}

/* Cards combinados (benefícios + filosofia) */

.lp-benefits-philo {
  background: radial-gradient(120% 140% at 0% 0%, rgba(198,166,97,0.12), transparent 55%),
              #050505;
}

.lp-cards-two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.lp-card {
  background: linear-gradient(to bottom right, rgba(17,17,17,0.98), rgba(8,8,8,0.98));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 22px 22px 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.85);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
}

.lp-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(198,166,97,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease-out;
  pointer-events: none;
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,.9);
  border-color: rgba(198,166,97,.7);
}

.lp-card:hover::before {
  opacity: 1;
}

.lp-card h2 {
  margin-top: 0;
}

.lp-wide-text {
  margin-top: 6px;
}

/* Texto largo reusado */
.lp-wide-text {
  max-width: 760px;
}

/* MINI HERO FINAL */

.lp-section-final {
  border-bottom: none;
}

.lp-hero-mini {
  position: relative;
  overflow: hidden;
  padding: 100px;
}

.lp-hero-mini-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.9), rgba(5,5,5,0.1), rgba(5,5,5,0.1)),
    url("/images/139406_t.jpg") center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.lp-hero-mini-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.lp-hero-mini-copy h2 {
  margin: 4px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--white);
}

.lp-hero-mini-copy p {
  max-width: 520px;
}

/* CTA final btn reusa .lp-btn-accent */
.lp-final-btn {
  margin-top: 8px;
}

/* Animações suaves */

@keyframes lpFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lpFade {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lp-anim-up {
  opacity: 0;
  transform: translateY(16px);
  animation: lpFadeUp .6s ease-out forwards;
}

.lp-anim-up-delayed {
  opacity: 0;
  transform: translateY(16px);
  animation: lpFadeUp .7s ease-out .08s forwards;
}

.lp-anim-fade {
  opacity: 0;
  transform: scale(0.98);
  animation: lpFade .7s ease-out forwards;
}

/* Responsivo */

@media (max-width: 900px) {
  .lp-hero {
    padding: 70px 0 60px;
  }

  .lp-hero-inner {
    min-height: auto;
  }

  .lp-two-col,
  .lp-cards-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero-form {
    margin: 0;
    max-width: 100%;
  }

  .lp-img-right .lp-image-col,
  .lp-img-right > div:first-child,
  .lp-img-left .lp-image-col,
  .lp-img-left > div:last-child {
    order: initial;
  }

  .lp-hero-mini-inner {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .lp-section {
    padding: 40px;
  }

  .lp-hero-mini {
    padding: 46px;
  }
}

@media (max-width: 480px) {
  .lp-hero {
    padding: 40px;
  }

  .lp-hero-copy h1 {
    font-size: 1.7rem;
  }

  .lp-hero-form {
    padding: 18px 16px 18px;
  }

  .lp-hero-mini-inner {
    flex-direction: column;
    gap: 16px;
  }

  .lp-final-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   Acordeão horizontal - Benefícios + Filosofia (refinado)
=========================== */

.lp-benefits-philo {
  background: radial-gradient(120% 140% at 0% 0%, rgba(198,166,97,0.12), transparent 55%),
              #050505;
}

.lp-accordion {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

/* Cada painel */
.lp-acc-item {
  position: relative;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  background: linear-gradient(to bottom right, rgba(17,17,17,0.98), rgba(8,8,8,0.98));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  padding: 0; /* vamos gerir padding no header/body */
  box-shadow: 0 18px 50px rgba(0,0,0,.85);
  overflow: hidden;
  transition:
    flex .35s ease,
    transform .22s ease-out,
    box-shadow .22s ease-out,
    border-color .22s ease-out,
    background .22s ease-out;
}

.lp-acc-item::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(198,166,97,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease-out;
  pointer-events: none;
}

/* Cabeçalho: padding igual em cima/baixo */
.lp-acc-header {
  position: relative;
  background-color: inherit;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lp-acc-header-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-acc-tag {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  color: var(--gold);
  margin: 0;
}

.lp-acc-header h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--white);
}

/* CTA "Saber mais" – dá ideia de clique */
.lp-acc-cta {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .15em;
    padding: 5px 15px;
    border-radius: 999px;
    border: 1px solid rgba(198, 166, 97, .4);
    flex-shrink: 1;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .18s ease;
}

/* Corpo */
.lp-acc-body {
  position: relative;
  z-index: 1;
  padding: 12px 18px 18px;
  max-height: 600px;
  opacity: 1;
  overflow: hidden;
  transition:
    max-height .35s ease,
    opacity .28s ease,
    padding-top .28s ease;
}

.lp-acc-body p {
  color: var(--muted);
}

/* Estado fechado – corpo recolhido */
.lp-acc-item:not(.is-active) .lp-acc-body {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* Estado fechado – visual mais “clicável” */
.lp-acc-item:not(.is-active) {
  background: radial-gradient(circle at top left, rgba(198,166,97,0.12), rgba(5,5,5,1));
  border-color: rgba(255,255,255,.08);
}

.lp-acc-item:not(.is-active) .lp-acc-header h2 {
  color: rgba(255,255,255,.78);
}

.lp-acc-item:not(.is-active) .lp-acc-cta {
  background: transparent;
  border-color: rgba(198,166,97,.25);
  color: rgba(198,166,97,.8);
}

/* Estado ativo – expande, destaca */
.lp-acc-item.is-active {
  flex: 2.1;
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,.9);
  border-color: rgba(198,166,97,.7);
}

.lp-acc-item.is-active::before {
  opacity: 1;
}

.lp-acc-item.is-active .lp-acc-cta {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* Hover */
.lp-acc-item:hover .lp-acc-cta {
  transform: translateY(-1px);
  border-color: rgba(198,166,97,.8);
}

/* Bullets dourados em círculo (consistentes com resto da LP) */
.lp-list.lp-list-check {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}

.lp-list.lp-list-check li {
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
  color: var(--muted);
}

.lp-list.lp-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Responsivo */
@media (max-width: 900px) {
  .lp-accordion {
    flex-direction: column;
  }

  .lp-acc-item,
  .lp-acc-item.is-active {
    flex: 1;
    transform: none;
  }

  .lp-acc-header {
    align-items: flex-start;
  }
}

/* ===========================
   AUTORES / LIDERANÇA ESTRATÉGICA
=========================== */

.lp-authors {
  background: var(--bg);
}

.lp-authors-head {
  max-width: 780px;
  margin-bottom: 48px;
}

.lp-authors-head .lp-eyebrow {
  margin-bottom: 8px;
}

.lp-authors-head h2 {
  margin: 0 0 12px;
}

.lp-authors-head .lp-lead {
  color: var(--muted);
}

/* GRID DOS AUTORES */
.lp-authors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD DO AUTOR */
.lp-author-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* FOTO */
.lp-author-photo {
  width: 160px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(198,166,97,.25);
}

.lp-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* INFO */
.lp-author-info h3 {
  margin: 0;
  font-size: 1.2rem;
}

.lp-author-role {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  margin: 4px 0 10px;
}

.lp-author-desc {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* LISTA */
.lp-author-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-author-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--muted);
}

.lp-author-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

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

@media (max-width: 900px) {
  .lp-authors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lp-author-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lp-author-photo {
    width: 100%;
    height: 260px;
  }
}
/* ─────────────────────────────────────────
   Pop-up Lista Prioritária
───────────────────────────────────────── */

.mcl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 15, 10, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mcl-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mcl-modal {
  background: #faf8f4;
  border-radius: 2px;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(28px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 32px 80px rgba(18, 15, 10, 0.28), 0 0 0 1px rgba(18, 15, 10, 0.06);
}

.mcl-overlay.is-visible .mcl-modal {
  transform: translateY(0);
}

/* Faixa dourada lateral */
.mcl-modal::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #b8924a 0%, #8a6830 100%);
}

/* ─── Cabeçalho ─── */
.mcl-modal-header {
  padding: 1.75rem 1.75rem 0 2.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mcl-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8924a;
  margin-bottom: 0.5rem;
}

.mcl-modal-title {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1a1610;
  max-width: 340px;
}

/* ─── Botão fechar ─── */
.mcl-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(18, 15, 10, 0.15);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b5e4a;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: 2px;
}

.mcl-close:hover {
  background: #1a1610;
  border-color: #1a1610;
  color: #faf8f4;
}

/* ─── Divisor ─── */
.mcl-divider {
  margin: 1.1rem 2.25rem 0;
  height: 1px;
  background: rgba(18, 15, 10, 0.1);
}

/* ─── Corpo ─── */
.mcl-modal-body {
  padding: 1.1rem 1.75rem 1.75rem 2.25rem;
}

.mcl-lead {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5a4f3e;
  margin-bottom: 1.1rem;
}

/* ─── Bullets de benefícios ─── */
.mcl-benefits {
  list-style: none;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mcl-benefits li {
  font-size: 0.85rem;
  color: #3d3528;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mcl-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8924a;
  flex-shrink: 0;
}

/* ─── Formulário ─── */
.mcl-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mcl-input {
  height: 40px;
  border: 1px solid rgba(18, 15, 10, 0.2);
  border-radius: 2px;
  background: #fff;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1a1610;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mcl-input::placeholder {
  color: #9e9082;
}

.mcl-input:focus {
  border-color: #b8924a;
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.12);
}

.mcl-submit {
  height: 40px;
  background: #1a1610;
  color: #faf8f4;
  border: none;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  margin-top: 0.25rem;
  position: relative;
  overflow: hidden;
}

.mcl-submit:hover  { background: #2e2820; }
.mcl-submit:active { transform: scale(0.985); }

.mcl-submit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.mcl-submit.is-loading .mcl-submit-inner { opacity: 0; }

.mcl-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.mcl-submit.is-loading .mcl-spinner { opacity: 1; }

.mcl-spinner::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(250, 248, 244, 0.3);
  border-top-color: #faf8f4;
  border-radius: 50%;
  animation: mcl-spin 0.7s linear infinite;
}

@keyframes mcl-spin { to { transform: rotate(360deg); } }

.mcl-note {
  font-size: 0.75rem;
  color: #9e9082;
  text-align: center;
}

.mcl-error {
  font-size: 0.8rem;
  color: #c0392b;
  display: none;
}

.mcl-error.is-visible { display: block; }

/* ─── Estado de sucesso ─── */
.mcl-success {
  display: none;
  padding: 2rem 2.25rem 2.25rem;
  text-align: center;
}

.mcl-success.is-visible { display: block; }

.mcl-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.12);
  border: 1px solid rgba(184, 146, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.mcl-success h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1610;
  margin-bottom: 0.65rem;
}

.mcl-success p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5a4f3e;
  max-width: 300px;
  margin: 0 auto;
}

/* ─── Responsivo ─── */
@media (max-width: 480px) {
  .mcl-modal-header { padding: 1.5rem 1.25rem 0 1.5rem; }
  .mcl-divider      { margin-inline: 1.5rem; }
  .mcl-modal-body   { padding: 1rem 1.25rem 1.5rem 1.5rem; }
  .mcl-success      { padding: 1.75rem 1.25rem; }
}


/* ══════════════════════════════════════════
   SECÇÃO 1 — AUTORES (destaque)
══════════════════════════════════════════ */
.lp-authors-compact-head {
  text-align: center;
  margin-bottom: 56px;
}
.lp-authors-compact-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lp-authors-compact-head p {
  color: #888;
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.lp-authors-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.lp-author-compact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, #1a1710 0%, #141414 100%);
  border: 1px solid rgba(198,166,97,0.2);
  border-radius: 14px;
  padding: 44px 36px 36px;
  transition: border-color 0.25s, transform 0.25s;
}
.lp-author-compact-card:hover {
  border-color: rgba(198,166,97,0.5);
  transform: translateY(-4px);
}
.lp-author-compact-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C6A661;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px rgba(198,166,97,0.08);
}
.lp-author-compact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.lp-author-compact-role {
  font-size: 11px;
  color: #C6A661;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.lp-author-compact-bio {
  font-size: 14px;
  color: #999;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   SECÇÃO 2 — PREFÁCIO & POSFÁCIOS (discreto)
══════════════════════════════════════════ */
.lp-endorsements-head {
  text-align: center;
  margin-bottom: 40px;
}
.lp-endorsements-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lp-endorsements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Prefácio: Rafael + Cláudio together in one card */
.lp-endorsement-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-endorsement-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C6A661;
  display: block;
  margin-bottom: 2px;
}

.lp-endorsement-quote {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.lp-endorsement-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lp-endorsement-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.lp-endorsement-name {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  display: block;
  margin-bottom: 1px;
}
.lp-endorsement-role {
  font-size: 11px;
  color: #4a4a4a;
  display: block;
  margin-bottom: 3px;
  line-height: 1.3;
}
.lp-endorsement-link {
  font-size: 10px;
  color: #4a4a4a;
  text-decoration: none;
}
.lp-endorsement-link:hover { color: #888; }

/* Prefácio card: two authors stacked */
.lp-endorsement-authors-pair {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .lp-authors-compact-grid { grid-template-columns: 1fr; }
  .lp-endorsements-grid { grid-template-columns: 1fr; }
}