/* Print Livros — layout espelhando modelo/estatico */
:root {
  --paper: #F8F7F4;
  --ink: #171717;
  --muted: #525252;
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --night: #0F172A;
  --radius: 14px;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.pl-grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 50; opacity: 0.035;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
}
.pl-wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }

/* ===== NAV ===== */
.pl-nav-shell { position: fixed; top: 12px; left: 12px; right: 12px; z-index: 100; }
.pl-nav {
  width: min(1120px, 100%); margin: 0 auto; height: 64px; padding: 0 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: 1rem; background: var(--glass);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.35); box-shadow: var(--shadow);
}
.pl-brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.pl-brand-mark { height: 44px; width: auto; border-radius: 8px; }
.pl-brand-word { height: 26px; width: auto; }
.pl-nav-links {
  display: none; align-items: center; gap: 1.25rem;
  font-weight: 600; font-size: 15px; color: #404040;
}
.pl-nav-links > a:hover, .pl-mega-trigger:hover { color: var(--blue); }
.pl-mega { position: relative; }
.pl-mega-trigger {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: none; border: 0; cursor: pointer; font: inherit; font-weight: 600; color: inherit; padding: 0.5rem 0;
}
.pl-mega-panel {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.75rem; width: min(760px, calc(100vw - 2rem)); z-index: 110;
}
.pl-mega:hover .pl-mega-panel, .pl-mega:focus-within .pl-mega-panel { display: block; }
.pl-mega-card {
  background: var(--glass); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.4); border-radius: 1rem; padding: 1.35rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.2);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem 1.4rem;
}
.pl-mega-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 0.45rem;
}
.pl-mega-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
.pl-mega-col a {
  display: block; font-size: 13.5px; font-weight: 600; color: #404040; line-height: 1.3;
  padding: 0.2rem 0;
}
.pl-mega-col a:hover { color: var(--blue); }
.pl-nav-login {
  display: none; align-items: center; font-weight: 700; font-size: 14px;
  color: #404040; padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid #d4d4d4; flex-shrink: 0;
}
.pl-nav-login:hover { border-color: var(--blue); color: var(--blue); }
.pl-nav-toggle {
  width: 42px; height: 42px; border: 0; border-radius: 10px; background: transparent; cursor: pointer;
  display: grid; place-items: center; flex-shrink: 0;
}
.pl-nav-toggle span { display: block; width: 18px; height: 2px; background: #171717; margin: 3px 0; border-radius: 2px; }
.pl-drawer { display: none; position: fixed; inset: 0; z-index: 120; background: rgba(15,23,42,0.45); backdrop-filter: blur(6px); }
.pl-drawer.is-open { display: block; }
.pl-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(360px, 90vw); height: 100%;
  background: #FDFCF9; padding: 1.25rem; overflow: auto;
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
}
.pl-drawer-close { float: right; border: 0; background: transparent; font-size: 1.5rem; cursor: pointer; }
.pl-drawer-panel a { display: block; padding: 0.75rem 0.25rem; border-bottom: 1px solid #e5e5e5; font-weight: 600; }
.pl-drawer-group { margin: 1rem 0 0.35rem; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue); text-transform: uppercase; }
.pl-drawer-panel .pl-drawer-sub { font-size: 0.92rem; font-weight: 500; color: #525252; padding-left: 0.5rem; }

@media (min-width: 1024px) {
  .pl-nav-links, .pl-nav-login { display: flex; }
  .pl-nav-toggle { display: none; }
}
@media (max-width: 419px) { .pl-brand-word { display: none; } }

/* ===== HERO ===== */
.pl-hero {
  padding: 7.5rem 0 3.5rem; position: relative;
  display: grid; align-items: center;
}
.pl-hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.045; pointer-events: none;
  background-image: linear-gradient(#171717 1px, transparent 1px), linear-gradient(90deg, #171717 1px, transparent 1px);
  background-size: 72px 72px;
}
.pl-hero-grid {
  display: grid; gap: 2.5rem; align-items: center; position: relative;
}
@media (min-width: 1024px) {
  .pl-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 3rem; }
}
.pl-badge-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.85rem 0 1.25rem; }
.pl-badge {
  border: 1px solid #d4d4d4; color: #404040; font-size: 10px; font-weight: 700;
  padding: 0.35rem 0.7rem; border-radius: 999px; letter-spacing: 0.04em; white-space: nowrap;
}
.pl-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05; margin: 0 0 1rem; letter-spacing: -0.02em;
}
.pl-hero h1 .anton { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: -0.01em; display: block; }
.pl-hero h1 .garamond { font-family: 'EB Garamond', serif; font-style: italic; font-weight: 400; color: #525252; display: block; font-size: 0.72em; }
.pl-hero-lead {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--muted); max-width: 32rem; margin: 0 0 1.5rem; line-height: 1.45;
}
.pl-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.pl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 0; border-radius: 999px; padding: 0.95rem 1.4rem; font-weight: 700; font-size: 1.02rem; cursor: pointer;
  transition: transform .2s, background .2s, filter .2s;
}
.pl-btn:hover { transform: translateY(-1px); }
.pl-btn-dark { background: #171717; color: #fff; }
.pl-btn-dark:hover { background: var(--blue); }
.pl-btn-ghost-play {
  display: inline-flex; align-items: center; gap: 0.65rem; background: none; border: 0;
  font-weight: 700; color: #262626; cursor: pointer; padding: 0;
}
.pl-btn-ghost-play .play {
  width: 44px; height: 44px; border-radius: 999px; border: 2px solid #171717;
  display: grid; place-items: center;
}
.pl-btn-primary { background: var(--blue); color: #fff; }
.pl-btn-primary:hover { background: var(--blue-hover); }
.pl-btn-wa { background: #25D366; color: #fff; }
.pl-btn-outline { background: transparent; border: 1.5px solid #d4d4d4; color: var(--ink); }

.pl-spotlight {
  position: relative; width: 100%; max-width: 28rem; margin: 0 auto;
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: #171717;
  box-shadow: var(--shadow);
}
.pl-spotlight video, .pl-spotlight img { width: 100%; height: 100%; object-fit: cover; }
.pl-spotlight-label {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--glass); backdrop-filter: blur(10px);
  border-radius: 999px; padding: 0.4rem 1rem; font-size: 12px; font-weight: 700;
}
.pl-spotlight-play {
  position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.92); display: grid; place-items: center; border: 0; cursor: pointer;
}

/* ===== HERO QUEM SOMOS (foto equipe, sem reels) ===== */
.pl-hero--quem .pl-spotlight--equipe {
  max-width: none;
  width: 100%;
  aspect-ratio: auto;
  height: auto;
  background: transparent;
  box-shadow: var(--shadow);
}
.pl-hero--quem .pl-spotlight--equipe img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 1024px) {
  .pl-hero--quem .pl-hero-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.75rem;
    align-items: center;
  }
  .pl-hero--quem .pl-hero-lead {
    max-width: 28rem;
    margin-bottom: 0;
  }
}
.pl-reels {
  display: flex; justify-content: center; align-items: end; gap: 0.4rem;
  margin-top: 1.25rem; max-width: 28rem; margin-inline: auto; overflow: hidden;
}
.pl-reel-thumb {
  width: 11%; max-width: 3.1rem; aspect-ratio: 9/16; border-radius: 8px; overflow: hidden;
  border: 0; padding: 0; cursor: pointer; opacity: 0.55; background: #ddd; flex-shrink: 1;
}
.pl-reel-thumb.is-active { opacity: 1; outline: 2px solid var(--blue); outline-offset: 2px; transform: scale(1.1); }
.pl-reel-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== MARQUEE ===== */
.pl-marquee {
  border-block: 1px solid rgba(23,23,23,0.1); background: #171717; color: #F8F7F4;
  padding: 1rem 0; overflow: hidden; user-select: none;
}
.pl-marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: pl-marquee 40s linear infinite;
}
.pl-marquee-item {
  display: flex; align-items: center; gap: 2.5rem; white-space: nowrap;
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
}
.pl-marquee-item em { font-family: 'EB Garamond', serif; font-style: italic; letter-spacing: normal; font-size: 15px; color: #a3a3a3; font-weight: 400; }
.pl-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); flex-shrink: 0; }
@keyframes pl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== MANIFESTO / CONTENT ===== */
.pl-manifesto { padding: 4.5rem 0 2rem; }
.pl-manifesto-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.28em; color: #DC2626; margin: 0 0 0.75rem;
}
.pl-manifesto-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.02em; margin: 0 0 3rem; max-width: 36rem; line-height: 1.15;
}
.pl-manifesto-title em { font-family: 'EB Garamond', serif; font-style: italic; font-weight: 500; color: #737373; }
.pl-chapter {
  display: grid; gap: 1.75rem; align-items: center; margin-bottom: 4rem;
}
@media (min-width: 800px) {
  .pl-chapter { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .pl-chapter.is-flip > :first-child { order: 2; }
}
.pl-chapter-media { position: relative; }
.pl-chapter-num-bg {
  position: absolute; top: -2.5rem; left: -0.25rem;
  font-family: 'Anton', sans-serif; font-size: 7rem; line-height: 1; color: rgba(23,23,23,0.07); pointer-events: none;
}
.pl-chapter-frame {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: #e7e5e0;
  box-shadow: var(--shadow);
}
.pl-chapter-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Contato: formulário no lugar da foto do capítulo */
.pl-chapter-frame.pl-contato-form-frame {
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: #fff;
  padding: 1.35rem 1.35rem 1.5rem;
  box-sizing: border-box;
}
.pl-contato-form-frame .pl-fields label { color: #525252; }
.pl-contato-form-frame .pl-opt { opacity: 0.7; font-weight: 500; text-transform: none; letter-spacing: 0; }
.pl-contato-form-frame .pl-fields input,
.pl-contato-form-frame .pl-fields textarea {
  background: #F8F7F4;
  border: 1.5px solid #e5e5e5;
  color: #171717;
}
.pl-contato-form-frame .pl-fields input::placeholder,
.pl-contato-form-frame .pl-fields textarea::placeholder { color: #a3a3a3; }
.pl-contato-form-frame .pl-fields input:focus,
.pl-contato-form-frame .pl-fields textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: #fff;
  color: #171717;
}
.pl-contato-form-frame .pl-fields .hint { color: #737373; }
.pl-contato-form-frame .pl-btn-wa { width: 100%; justify-content: center; }
.pl-contato-form-frame .pl-msg.is-ok { background: #ecfdf5; color: #065f46; }
.pl-contato-form-frame .pl-msg.is-err { background: #fef2f2; color: #991b1b; }

/* Contato: sem “01”; títulos + form + info alinhados/centralizados no desktop */
.pl-contato-chapter .pl-chapter-num-bg,
.pl-contato-chapter .pl-chapter-num { display: none; }
@media (min-width: 1024px) {
  .pl-contato-atendimento .pl-manifesto-kicker,
  .pl-contato-atendimento .pl-manifesto-title,
  .pl-contato-atendimento .pl-contato-chapter {
    max-width: 920px;
    width: 100%;
    margin-inline: auto;
  }
  .pl-contato-atendimento .pl-manifesto-title {
    max-width: 920px;
  }
  .pl-contato-aside h3 { margin-top: 0; }
}
.pl-chapter-num { font-family: 'Anton', sans-serif; color: var(--blue); font-size: 1.1rem; }
.pl-chapter h3 {
  margin: 0.35rem 0 0.75rem; font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 700; letter-spacing: -0.02em;
}
.pl-chapter-text {
  font-family: 'EB Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--muted);
  line-height: 1.55; margin: 0; max-width: 28rem;
}
.pl-prose { font-size: 1.02rem; line-height: 1.65; color: #404040; font-weight: 500; }
.pl-prose p { margin: 0 0 0.9rem; }
.pl-prose a { color: var(--blue); font-weight: 600; }
.pl-prose a:hover { text-decoration: underline; }
.pl-prose h3 { font-family: 'Rajdhani', sans-serif; font-style: normal; font-size: 1.15rem; color: var(--ink); margin: 1.2rem 0 0.5rem; }
.pl-faq details {
  border: 1px solid #e5e5e5; border-radius: 12px; background: #fff; padding: 0.85rem 1rem; margin-bottom: 0.55rem;
}
.pl-faq summary { cursor: pointer; font-weight: 700; font-size: 1.02rem; }
.pl-faq .pl-faq-a {
  margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid #ececec;
  font-family: 'EB Garamond', serif; font-style: italic; color: var(--muted);
}

/* ===== QUOTE / FORM ===== */
.pl-quote {
  background: var(--night); color: #e2e8f0; padding: 4rem 0 4.5rem; margin-top: 1rem;
}
.pl-quote-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.28em; color: #93c5fd; margin: 0 0 0.6rem; }
.pl-quote h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff; margin: 0 0 0.75rem; letter-spacing: -0.02em;
}
.pl-quote-lead {
  font-family: 'EB Garamond', serif; font-style: italic; color: #94a3b8;
  font-size: 1.2rem; max-width: 36rem; margin: 0 0 2rem;
}
.pl-quote-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .pl-quote-grid { grid-template-columns: 1fr 1.1fr; gap: 1.5rem; align-items: start; } }
.pl-quote-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.35rem;
}
.pl-quote-card h3 { margin: 0 0 0.5rem; color: #fff; font-size: 1.15rem; }
.pl-quote-card p { margin: 0 0 1rem; color: #94a3b8; font-size: 0.95rem; line-height: 1.45; }
.pl-fields { display: grid; gap: 0.75rem; }
.pl-fields .row2 { display: grid; gap: 0.75rem; }
@media (min-width: 560px) { .pl-fields .row2 { grid-template-columns: 1fr 1fr; } }
.pl-fields label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #94a3b8; margin-bottom: 0.3rem; }
.pl-fields input, .pl-fields textarea, .pl-fields select {
  width: 100%; border: 1.5px solid rgba(255,255,255,0.14); border-radius: 12px;
  padding: 0.85rem 1rem; background: rgba(255,255,255,0.06); color: #fff;
}
.pl-fields input:focus, .pl-fields textarea:focus, .pl-fields select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.25);
}
.pl-fields textarea { min-height: 120px; resize: vertical; }
.pl-fields .hint { font-size: 12px; color: #64748b; margin: 0; }
.pl-quote-actions { display: grid; gap: 0.65rem; margin-top: 0.5rem; }
.pl-msg { display: none; margin-top: 0.75rem; padding: 0.75rem 1rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; }
.pl-msg.is-ok { display: block; background: #14532d; color: #bbf7d0; }
.pl-msg.is-err { display: block; background: #7f1d1d; color: #fecaca; }

/* ===== FOOTER ===== */
.pl-foot { background: var(--night); color: #94A3B8; }
.pl-trust {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 0;
  display: grid; gap: 1.5rem;
}
@media (min-width: 800px) { .pl-trust { grid-template-columns: repeat(3, 1fr); } }
.pl-trust-item h4 { margin: 0 0 0.35rem; color: #fff; font-size: 1rem; }
.pl-trust-item p { margin: 0; font-size: 0.9rem; line-height: 1.45; }
.pl-foot-main { padding: 3rem 0 2rem; }
.pl-foot-grid {
  display: grid; gap: 1.75rem;
}
@media (min-width: 900px) {
  .pl-foot-grid { grid-template-columns: 1.3fr repeat(4, 1fr); gap: 1.5rem; }
}
.pl-foot .pl-brand-mark { height: 56px; border-radius: 12px; margin-bottom: 0.85rem; }
.pl-foot p { margin: 0 0 0.85rem; font-size: 0.92rem; line-height: 1.5; }
.pl-foot h3 {
  margin: 0 0 0.85rem; color: #fff; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700;
}
.pl-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.pl-foot li a { font-size: 0.9rem; line-height: 1.35; }
.pl-foot a:hover { color: #60A5FA; }
.pl-foot-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--blue); color: #fff !important; font-weight: 700; font-size: 0.9rem;
  padding: 0.55rem 1rem; border-radius: 999px; margin-top: 0.35rem;
}
.pl-foot-cta:hover { background: var(--blue-hover); color: #fff !important; }
.pl-foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0 1.75rem; font-size: 0.85rem;
}
.pl-foot-contact { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: grid; gap: 1rem;
}
@media (min-width: 700px) { .pl-foot-contact { grid-template-columns: repeat(3, 1fr); } }
