/* =====================================================================
   PRESSÁGIO COMUNICAÇÃO — styles.css
   Mobile-first. Tokens no :root. Nenhum hex solto fora desta declaração.
   ===================================================================== */

:root {
  /* base */
  --ameixa:        #2C2039;  /* fundo principal */
  --ameixa-prof:   #1E1629;  /* fundo escuro, hero overlay, footer */
  --malva:         #6E6378;  /* cards, seções secundárias */
  --malva-claro:   #8B8095;  /* bordas, hover sobre escuro */
  /* ação */
  --ambar:         #F8B01C;  /* CTAs, destaques, acentos */
  --ambar-queim:   #D49016;  /* hover de botões, ativos */
  /* texto e claros */
  --offwhite:      #F4F0F2;  /* texto no escuro + fundo claro */
  --lavanda:       #B8AEC2;  /* texto secundário, labels */
  --placeholder:   #5C5466;  /* placeholder de inputs */
  /* acento cultural */
  --vinho:         #7A3B52;  /* Manifesto, Produção Cultural */
  /* texto sobre âmbar */
  --sobre-ambar:   #2C2039;
  /* tipografia */
  --font-titulo: 'Playfair Display', Georgia, serif;
  --font-corpo:  'Inter', system-ui, sans-serif;
  /* raios */
  --r-botao: 4px; --r-card-sm: 6px; --r-card-lg: 8px;
  --r-pill: 20px; --r-frame: 12px;
  /* espaçamento de seção */
  --sec-pad-y: clamp(4rem, 10vw, 8rem);
  --sec-pad-x: clamp(1.25rem, 5vw, 4rem);
  /* overlay do hero (rgba derivado de --ameixa) */
  --hero-overlay: rgba(44, 32, 57, 0.65);
  --nav-bg: rgba(44, 32, 57, 0.7);
  /* largura máxima de conteúdo */
  --maxw: 1200px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-corpo);
  font-size: 15px;
  line-height: 1.7;
  color: var(--offwhite);
  background: var(--ameixa);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Placeholder visível e elegante quando um asset ainda não foi enviado */
.asset--missing {
  display: flex; align-items: center; justify-content: center;
  min-height: 2.5rem; padding: 0 1rem;
  background: var(--malva); color: var(--lavanda);
  font-family: var(--font-corpo); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 0.5px dashed var(--malva-claro); border-radius: var(--r-card-sm);
}

/* ===================== TIPOGRAFIA ===================== */
h1 {
  font-family: var(--font-titulo); font-weight: 400;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.15;
}
h2 {
  font-family: var(--font-titulo); font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px); line-height: 1.25;
}
h3 {
  font-family: var(--font-corpo); font-weight: 500;
  font-size: 16px; line-height: 1.3;
}
p { font-size: 14px; }

.overline {
  font-family: var(--font-corpo); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lavanda); margin-bottom: 1rem;
}
.overline--vinho { color: var(--vinho); }

@media (min-width: 768px) {
  h3 { font-size: 18px; }
  p { font-size: 15px; }
}

/* ===================== BOTÕES ===================== */
.btn-primary {
  display: inline-block;
  background: var(--ambar); color: var(--sobre-ambar);
  padding: 14px 30px; border-radius: var(--r-botao);
  font-family: var(--font-corpo); font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; border: none; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn-primary:hover { background: var(--ambar-queim); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 2px solid var(--offwhite); outline-offset: 3px; }

/* ===================== LAYOUT DE SEÇÃO ===================== */
main > section { padding: var(--sec-pad-y) var(--sec-pad-x); }

.section-head { max-width: var(--maxw); margin: 0 auto 3rem; }
.section-head h2 { max-width: 14ch; }

/* ===================== NAV [REQ-01] ===================== */
.nav {
  position: fixed; top: 0; left: 0; z-index: 100; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem var(--sec-pad-x);
  background: var(--nav-bg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(139, 128, 149, 0.18);
}
.nav__logo { height: 30px; width: auto; }
.nav__brand .asset--missing {
  font-family: var(--font-titulo); font-size: 18px; letter-spacing: 0.18em;
  color: var(--offwhite); background: transparent; border: none; min-height: 0;
}

.nav__menu {
  display: none; list-style: none; gap: 2rem; align-items: center;
}
.nav__menu a {
  font-size: 13px; letter-spacing: 0.04em; color: var(--lavanda);
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--offwhite); }
.nav__cta {
  color: var(--ambar) !important; border: 0.5px solid var(--ambar);
  padding: 8px 18px; border-radius: var(--r-botao);
}
.nav__cta:hover { background: var(--ambar); color: var(--sobre-ambar) !important; }

/* Botão hambúrguer (mobile) */
.nav__toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: none;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--offwhite);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile aberto */
.nav__menu.is-open {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem;
  position: absolute; top: 100%; left: 0; width: 100%;
  padding: 1.5rem var(--sec-pad-x) 2rem;
  background: var(--ameixa-prof);
  border-bottom: 0.5px solid rgba(139, 128, 149, 0.18);
}
.nav__menu.is-open a { font-size: 16px; }

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__menu { display: flex; }
}

/* ===================== HERO [REQ-02] ===================== */
.hero {
  position: relative; height: 100dvh; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--ameixa-prof);
}
.hero__media, .hero__overlay, .hero__grain {
  position: absolute; inset: 0;
}
.hero__img, .hero__video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media.asset--missing {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(122, 59, 82, 0.35), transparent 60%),
    linear-gradient(160deg, var(--ameixa), var(--ameixa-prof));
  border: none; border-radius: 0;
}
.hero__overlay { background: var(--hero-overlay); }
.hero__grain {
  /* textura sutil de "filme"; pointer-events none para não bloquear o CTA */
  pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content { position: relative; z-index: 2; padding: 0 1.25rem; }
.hero__logo { height: 56px; width: auto; margin: 0 auto 2rem; }
.hero__logo.asset--missing {
  font-family: var(--font-titulo); font-size: clamp(28px, 7vw, 44px);
  letter-spacing: 0.2em; color: var(--offwhite); background: transparent;
  border: none; min-height: 0; margin-bottom: 1.5rem;
}
.hero__tagline {
  font-style: italic; color: var(--offwhite); margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(30, 22, 41, 0.6);
}
.hero__tagline span { color: var(--ambar); }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 44px; height: 44px;
  display: flex; align-items: flex-start; justify-content: center;
}
.hero__scroll-line {
  width: 1px; height: 36px; background: var(--lavanda);
  transform-origin: top; animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ===================== MANIFESTO [REQ-03] ===================== */
.manifesto {
  background: var(--offwhite); color: var(--ameixa);
  position: relative;
}
.manifesto__inner {
  max-width: 760px; margin: 0 auto;
  border-left: 3px solid var(--vinho); padding-left: clamp(1.25rem, 4vw, 2.5rem);
}
.manifesto__text {
  font-family: var(--font-titulo); font-weight: 400;
  font-size: clamp(22px, 3vw, 32px); line-height: 1.45; color: var(--ameixa);
  margin-bottom: 1.5rem;
}
.manifesto__text em { font-style: italic; color: var(--vinho); }
.manifesto__tagline {
  font-family: var(--font-titulo); font-size: clamp(18px, 2.4vw, 26px);
  font-style: italic; color: var(--vinho);
  padding-top: 1.25rem; border-top: 1px solid rgba(122, 59, 82, 0.25);
  margin-bottom: 1.5rem;
}
.manifesto__signature {
  font-family: var(--font-corpo); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--vinho);
}

/* ===================== SERVIÇOS [REQ-04] ===================== */
.servicos { background: var(--ameixa); }
.servicos__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.card-servico {
  background: var(--malva); border-radius: var(--r-card-sm);
  border-left: 2px solid var(--ambar);
  padding: 1.5rem 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-servico:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 22, 41, 0.35);
}
.card-servico h3 {
  font-family: var(--font-titulo); font-size: 20px; font-weight: 400;
  color: var(--offwhite); margin-bottom: 0.5rem;
}
.card-servico p { font-size: 13px; color: var(--lavanda); }

@media (min-width: 768px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .servicos__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== PORTFÓLIO [REQ-05] ===================== */
.portfolio { background: var(--ameixa-prof); }

.portfolio__filters {
  max-width: var(--maxw); margin: 0 auto 2.25rem;
  display: flex; gap: 0.65rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  white-space: nowrap; scrollbar-width: none; padding-bottom: 4px;
}
.portfolio__filters::-webkit-scrollbar { display: none; }

.filter-pill {
  flex: 0 0 auto;
  background: transparent; color: var(--lavanda);
  border: 0.5px solid var(--malva-claro); border-radius: var(--r-pill);
  padding: 9px 18px; min-height: 40px;
  font-size: 13px; letter-spacing: 0.04em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-pill:hover { border-color: var(--ambar); color: var(--offwhite); }
.filter-pill.is-active {
  background: var(--ambar); color: var(--sobre-ambar);
  border-color: var(--ambar); font-weight: 500;
}

.portfolio__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 480px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
@media (min-width: 1024px) { .portfolio__grid { grid-template-columns: repeat(3, 1fr); } }

.case {
  position: relative; overflow: hidden; border-radius: var(--r-card-lg);
  aspect-ratio: 4 / 3; background: var(--malva);
  border: none; padding: 0; text-align: left; width: 100%;
  transition: opacity .3s ease, transform .3s ease;
}
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case.asset--missing { display: block; }
.case .case__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--malva), var(--ameixa));
  color: var(--lavanda); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; text-align: center; padding: 1rem;
}
.case__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(30,22,41,0.85) 0%, rgba(30,22,41,0.1) 60%, transparent 100%);
  transition: background .3s ease;
}
.case__cat {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 0.25rem;
}
.case__title {
  font-family: var(--font-titulo); font-size: 18px; color: var(--offwhite);
}
.case:hover img { transform: scale(1.06); }
.case:hover .case__overlay {
  background: linear-gradient(to top, rgba(30,22,41,0.85), rgba(248,176,28,0.20));
}
.case:focus-visible { outline: 2px solid var(--ambar); outline-offset: 3px; }
.case.is-hidden { display: none; }

/* ===================== CLIENTES [REQ-06] ===================== */
.clientes { background: var(--offwhite); color: var(--ameixa); }
.clientes .overline { color: var(--vinho); }
.clientes h2 { color: var(--ameixa); }
.clientes__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  align-items: center; justify-items: center;
}
.clientes__logo {
  width: 100%; height: 60px;
  object-fit: contain; object-position: center;
  filter: grayscale(1) opacity(0.55);
  transition: filter .3s ease, transform .3s ease;
}
.clientes__logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.04); }
.clientes__logo.asset--missing {
  background: transparent; border: 0.5px dashed var(--malva-claro);
  color: var(--malva); filter: none;
}
@media (min-width: 768px) { .clientes__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .clientes__grid { grid-template-columns: repeat(6, 1fr); } }

/* ===================== CONTATO [REQ-07] ===================== */
.contato { background: var(--malva); }
.contato__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
.contato__intro h2 { color: var(--offwhite); }   /* texto grande sobre malva: OK [REQ-11] */
.contato__intro .overline { color: var(--ameixa-prof); }
.contato__lead { color: var(--offwhite); margin-top: 1rem; max-width: 38ch; }

.contato__form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--offwhite);
}
.field input, .field select, .field textarea {
  font-family: var(--font-corpo); font-size: 15px; color: var(--offwhite);
  background: var(--ameixa-prof); border: 0.5px solid var(--malva-claro);
  border-radius: var(--r-botao); padding: 12px 14px; width: 100%;
  transition: border-color .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--placeholder); }
.field select { appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ambar);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--vinho); }
.field__error { font-size: 12px; color: var(--ambar); min-height: 1em; }

/* Honeypot oculto [REQ-07] */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

.contato__submit { align-self: flex-start; margin-top: 0.5rem; }
.contato__status { font-size: 14px; min-height: 1.2em; }
.contato__status.is-ok { color: var(--ameixa-prof); font-weight: 500; }
.contato__status.is-error { color: var(--ambar); }

@media (min-width: 900px) {
  .contato__inner { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
}

/* ===================== FOOTER ===================== */
.footer { background: var(--ameixa-prof); padding: 3.5rem var(--sec-pad-x); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.footer__logo { height: 36px; width: auto; margin: 0 auto 1.25rem; }
.footer__logo.asset--missing {
  font-family: var(--font-titulo); letter-spacing: 0.18em; color: var(--offwhite);
  background: transparent; border: none; min-height: 0;
}
.footer__tag {
  font-family: var(--font-titulo); font-style: italic; font-size: 18px;
  color: var(--ambar); margin-bottom: 1rem;
}
.footer__meta { font-size: 12px; color: var(--lavanda); line-height: 1.8; }
.footer__meta a { color: var(--lavanda); text-decoration: underline; }
.footer__meta a:hover { color: var(--offwhite); }

/* ===================== WHATSAPP FLUTUANTE [REQ-08] ===================== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;   /* verde oficial do WhatsApp — exceção de marca */
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===================== MODAL [REQ-05] ===================== */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex;
  align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(30, 22, 41, 0.8);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__panel {
  position: relative; z-index: 2; background: var(--ameixa);
  border-radius: var(--r-frame); overflow: hidden;
  width: 100%; max-width: 720px; max-height: 92dvh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.modal__close {
  position: absolute; top: 10px; right: 14px; z-index: 3;
  width: 44px; height: 44px; background: rgba(30,22,41,0.5); border: none;
  color: var(--offwhite); font-size: 28px; line-height: 1; border-radius: 50%;
}
.modal__media { width: 100%; aspect-ratio: 16 / 9; background: var(--ameixa-prof); position: relative; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* Trilha de thumbnails para grupos */
.modal__nav {
  display: flex; gap: 0.5rem; padding: 0.6rem 1rem;
  overflow-x: auto; background: var(--ameixa-prof);
  scrollbar-width: none;
}
.modal__nav::-webkit-scrollbar { display: none; }

.modal__nav-thumb {
  flex: 0 0 auto; width: 96px; aspect-ratio: 16 / 9;
  border-radius: var(--r-card-sm); overflow: hidden;
  border: 2px solid transparent; background: var(--malva);
  padding: 0; transition: border-color .2s ease;
}
.modal__nav-thumb.is-active { border-color: var(--ambar); }
.modal__nav-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal__nav-label {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 4px;
  font-size: 10px; color: var(--lavanda); text-align: center;
  line-height: 1.3;
}

/* Título do item ativo dentro do grupo */
.modal__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 1rem; color: var(--ambar); font-size: 13px;
  letter-spacing: 0.04em; transition: opacity .2s;
}
.modal__link:hover { opacity: 0.75; }
.modal__link[hidden] { display: none; }

.modal__subtitulo {
  font-size: 13px; color: var(--lavanda); font-style: italic;
  margin-top: -0.6rem; margin-bottom: 0.75rem; min-height: 1em;
}
.modal__item-titulo {
  font-size: 13px; color: var(--ambar); margin-bottom: 0.5rem;
  letter-spacing: 0.04em; min-height: 1em;
}

/* Badge de contagem no card do grid */
.case__badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: rgba(30, 22, 41, 0.78); color: var(--ambar);
  font-family: var(--font-corpo); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; padding: 3px 10px;
  border-radius: var(--r-pill); backdrop-filter: blur(4px);
  pointer-events: none;
}
.modal__media .case__placeholder { position: relative; height: 100%; }
.modal__body { padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem) 2.25rem; }
.modal__body h2 { color: var(--offwhite); margin-bottom: 1rem; }
.modal__body p { color: var(--lavanda); }
.modal__body .overline { color: var(--ambar); }

/* Mobile: modal em fullscreen [REQ-05] */
@media (max-width: 600px) {
  .modal { padding: 0; }
  .modal__panel { max-width: 100%; max-height: 100dvh; height: 100dvh; border-radius: 0; }
}

/* ===================== REVELAÇÃO NO SCROLL ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================== AVISO DE PRIVACIDADE (banner) ===================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1rem var(--sec-pad-x);
  background: var(--ameixa-prof);
  border-top: 1px solid rgba(139, 128, 149, 0.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { font-size: 13px; color: var(--lavanda); flex: 1 1 auto; }
.cookie-banner__text a { color: var(--ambar); text-decoration: underline; }
.cookie-banner__btn {
  flex: 0 0 auto; white-space: nowrap;
  background: var(--ambar); color: var(--sobre-ambar);
  border: none; border-radius: var(--r-botao);
  padding: 8px 20px; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .2s ease;
}
.cookie-banner__btn:hover { background: var(--ambar-queim); }

/* ===================== POLÍTICA DE PRIVACIDADE ===================== */
.pg-privacidade { background: var(--offwhite); }
.politica {
  background: var(--offwhite); color: var(--ameixa);
  padding-top: calc(var(--sec-pad-y) + 64px);
  min-height: 100dvh;
}
.politica__inner { max-width: 760px; margin: 0 auto; }
.politica h1 {
  font-family: var(--font-titulo); font-weight: 400;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.2;
  color: var(--ameixa); margin-bottom: 0.5rem;
}
.politica__meta {
  font-size: 12px; color: var(--malva);
  letter-spacing: 0.04em; margin-bottom: 3rem;
}
.politica__section {
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(44, 32, 57, 0.12);
}
.politica__section:last-of-type { border-bottom: none; }
.politica__section h2 {
  font-family: var(--font-titulo); font-weight: 400;
  font-size: clamp(20px, 2.5vw, 26px); color: var(--ameixa);
  margin-bottom: 1rem;
}
.politica__section h3 {
  font-size: 15px; font-weight: 500; color: var(--ameixa);
  margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.politica__section p {
  font-size: 14px; color: var(--ameixa);
  margin-bottom: 0.75rem; line-height: 1.75;
}
.politica__section ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.politica__section li {
  font-size: 14px; color: var(--ameixa);
  margin-bottom: 0.4rem; line-height: 1.7;
}
.politica__section a { color: var(--vinho); text-decoration: underline; }
.politica__section a:hover { color: var(--ameixa); }

.politica__table-wrap { overflow-x: auto; margin-top: 1rem; }
.politica__table { width: 100%; border-collapse: collapse; font-size: 13px; }
.politica__table th {
  background: var(--ameixa); color: var(--offwhite);
  padding: 10px 14px; text-align: left;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.politica__table td {
  padding: 10px 14px; vertical-align: top; color: var(--ameixa);
  border-bottom: 1px solid rgba(44, 32, 57, 0.1);
}
.politica__table tr:last-child td { border-bottom: none; }
.politica__vigencia {
  font-size: 11px; color: var(--malva);
  letter-spacing: 0.06em; margin-top: 3rem;
}

/* ===================== MOVIMENTO REDUZIDO [REQ-11/12] ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll-line { animation: none; }
}
