﻿/* Design: Rosa Republicana
   Tokens em oklch, iguais aos do layout de referÃªncia.
   AlternÃ¢ncia de fundos: branco -> rosa pastel -> branco */

/* Public Latin subsets, self-hosted from the Google Fonts releases (SIL OFL 1.1).
   Both files are variable fonts; these ranges cover every weight used by the
   public styles without a separate request per weight. */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
}

:root {
  --brand: oklch(0.65 0.18 10);
  --brand-dark: oklch(0.55 0.18 10);
  --brand-soft: oklch(0.65 0.18 10 / 0.1);
  --brand-line: oklch(0.65 0.18 10 / 0.4);

  --pastel: oklch(0.96 0.02 10);
  --pastel-deep: oklch(0.92 0.04 10);

  --ink: oklch(0.25 0.01 250);
  --body: oklch(0.45 0.02 250);
  --muted: oklch(0.55 0.02 250);
  --line: oklch(0.9 0.02 10);

  --footer-bg: oklch(0.25 0.05 340);
  --footer-line: oklch(0.4 0.05 340);
  --footer-text: oklch(0.75 0.02 250);
  --footer-dim: oklch(0.65 0.02 250);
  --footer-accent: oklch(0.8 0.1 10);
  --footer-hover: oklch(0.85 0.12 10);

  --gold: oklch(0.75 0.06 75);

  /* aliases legados usados em estilos inline */
  --pink: var(--brand);
  --pink-dark: var(--brand-dark);

  --header-h: 72px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 136px;
  height: 44px;
  flex: none;
  border-radius: 0;
  display: block;
  background-color: transparent;
  background-image: url("../images/logo-rosa.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
}

.brand-text {
  display: none;
}

.brand-text small {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:not(.button) {
  position: relative;
  padding: 4px 0;
  color: oklch(0.35 0.01 250);
  transition: color 200ms ease;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 300ms ease;
}

.nav-links a:not(.button):hover,
.nav-links a.active {
  color: var(--brand-dark);
}

.nav-links a:not(.button):hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 8px;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: oklch(0.35 0.01 250);
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px oklch(0.65 0.18 10 / 0.2);
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.button:hover {
  background: var(--brand-dark);
  transform: scale(0.97);
}

.button:active {
  transform: scale(0.95);
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--brand-soft);
}

.button.small {
  padding: 8px 20px;
  font-size: 14px;
  box-shadow: none;
}

.button.gold {
  background: var(--gold);
}

.nav-links .button {
  padding: 8px 20px;
  font-size: 14px;
  box-shadow: none;
}

.link-more {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 600;
  transition: color 200ms ease;
}

.link-more:hover {
  color: var(--brand);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--pastel), #fff 50%, var(--pastel-deep));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.hero-copy {
  animation: fade-in-up 600ms ease-out both;
}

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 500;
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.hero-logo-title {
  max-width: 100%;
  margin: 24px 0;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.hero-lockup {
  width: min(598px, 100%);
  container-type: inline-size;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.campaign-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  color: #d8017c;
}

.campaign-number span {
  display: block;
  width: 100%;
  font-size: clamp(14px, 4.7cqi, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.campaign-number strong {
  color: #d8017c;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(90px, 35cqi, 210px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .campaign-number span {
    font-size: clamp(10px, 3.2cqi, 13px);
    letter-spacing: clamp(0.08em, 0.8cqi, 0.2em);
  }

  .campaign-number strong {
    font-size: clamp(64px, 25cqi, 112px);
    letter-spacing: -0.04em;
  }
}

.bio-logo {
  display: block;
  width: min(460px, 100%);
  height: auto;
  object-fit: contain;
}

.bio-logo {
  width: min(420px, 100%);
}

.pink {
  color: var(--brand);
}

.lead {
  margin: 0 0 16px;
  max-width: 32rem;
  color: var(--body);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.65;
}

.support {
  margin: 0 0 32px;
  max-width: 32rem;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.portrait-wrap {
  position: relative;
  justify-self: center;
  animation: fade-in 800ms ease-out both;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, oklch(0.65 0.18 10 / 0.2), oklch(0.75 0.06 75 / 0.1));
  filter: blur(40px);
}

.portrait {
  position: relative;
  width: min(384px, 78vw);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-2xl);
  background: #fff;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.photo-label {
  position: absolute;
  right: -8px;
  top: calc(min(384px, 78vw) - 8px);
  bottom: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.photo-label svg {
  color: var(--brand);
}

.hero-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(384px, 78vw);
  max-width: 100%;
  margin-top: 64px;
  color: var(--brand-dark);
}

.hero-handle {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in oklab, var(--brand) 25%, transparent);
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-social-links a:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.hero-social-links a:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
  background: #fff;
}

.section.soft {
  background: var(--pastel);
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow {
  padding: 0;
  background: none;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-head .button {
  margin-top: 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ---------- Cards ---------- */

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.card:hover {
  border-color: var(--brand-line);
  box-shadow: var(--shadow-lg);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--pastel);
  color: var(--brand);
  transition: background 300ms ease;
}

.card:hover .icon {
  background: var(--brand-soft);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.card p,
.article p,
.page-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-copy p,
.article p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* ---------- Article cards ---------- */

.article-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.article-card:hover {
  border-color: var(--brand-line);
  box-shadow: var(--shadow-lg);
}

.article-card h2,
.article-card h3 {
  margin: 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  transition: color 200ms ease;
}

.article-card:hover h2,
.article-card:hover h3 {
  color: var(--brand-dark);
}

.article-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.article-card .date {
  color: var(--muted);
  font-size: 12px;
}

.article-list {
  display: grid;
  gap: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pastel);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
}

.category {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.share-row button,
.share-row a,
.tool-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 9px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* ---------- Inner page hero ---------- */

.page-hero {
  padding: 128px 0 64px;
  background: linear-gradient(to bottom, var(--pastel), #fff);
}

.page-hero h1,
.page-head > h2 {
  max-width: 900px;
  margin: 20px 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.article-image {
  min-height: 240px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--pastel), var(--pastel-deep));
  margin-bottom: 18px;
}

.article-body h2 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
}

.source-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 18px;
  color: var(--muted);
}

.source-list a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.timeline {
  border-left: 3px solid var(--brand-line);
  padding-left: 22px;
  display: grid;
  gap: 16px;
}

.timeline strong {
  color: var(--brand-dark);
}

/* ---------- Filters & forms ---------- */

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.filter-btn:hover {
  border-color: var(--brand-line);
}

.filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--brand-line);
  outline-offset: 1px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* ---------- Admin ---------- */

/* ---------- Footer ---------- */

.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-grid p {
  max-width: 20rem;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer .brand-text small {
  color: var(--footer-accent);
  font-size: 14px;
}

.site-footer h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-links a {
  color: var(--footer-text);
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--footer-hover);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transition: background 200ms ease;
}

.social-row a:hover {
  background: oklch(0.75 0.14 10);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--footer-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--footer-dim);
  font-size: 12px;
}

/* ---------- Animations ---------- */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-copy,
  .portrait-wrap {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .button {
    padding: 12px 20px;
  }

  .hero-grid,
  .two-col,
  .grid-2,
  .grid-3,
  .footer-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 40px 0 64px;
    gap: 40px;
  }

  .portrait-wrap {
    order: -1;
  }

  .lead,
  .support {
    max-width: none;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .brand-mark {
    width: 120px;
    height: 38px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 38px);
    overflow-wrap: break-word;
  }

  .hero-copy .lead,
  .hero-copy .support {
    margin-left: auto;
    margin-right: auto;
  }

  .campaign-number {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-signature {
    gap: 10px;
    margin-top: 72px;
  }
}

@media (max-width: 375px) {
  .hero-signature {
    flex-wrap: wrap;
    row-gap: 8px;
    margin-top: 64px;
  }

}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Paginas internas
   ============================================================ */

.kicker {
  display: block;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-head {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.page-head h1 {
  margin: 12px 0 24px;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.page-head .lead {
  max-width: none;
  margin: 0;
}

.container.narrow {
  max-width: 896px;
}

.container.tight {
  max-width: 672px;
}

.container.mid {
  max-width: 1024px;
}

/* Chips / abas */

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chips.scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--pastel);
  color: var(--body);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.chip:hover {
  background: var(--pastel-deep);
}

.chip.active {
  background: var(--brand);
  color: #fff;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 500;
}

.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pastel);
  color: var(--body);
  font-size: 12px;
  font-weight: 500;
}

.status.ok {
  background: #dcfce7;
  color: #15803d;
}

.status.wip {
  background: #fef9c3;
  color: #a16207;
}

/* Bio (Quem Sou) */

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.portrait.md {
  width: min(320px, 78vw);
  box-shadow: var(--shadow-lg);
}

/* Timeline */

.tl {
  max-width: 48rem;
  margin: 0 auto;
}

.tl-item {
  display: flex;
  gap: 24px;
}

.tl-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-dot {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 999px;
  background: var(--brand);
  border: 4px solid var(--pastel);
}

.tl-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  margin-top: 8px;
  background: var(--line);
}

.tl-body {
  padding-bottom: 40px;
}

.tl-item:last-child .tl-body {
  padding-bottom: 0;
}

.tl-body .kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.tl-body h3 {
  margin: 4px 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.tl-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Split 2/3 (Contato) */

.split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-ico {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--pastel);
  color: var(--brand);
}

.info-row .info-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.info-row strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

/* Formularios */

.form-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: oklch(0.98 0.01 10);
}

.form-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.field {
  display: block;
  margin-bottom: 20px;
}

.field > span {
  display: block;
  margin-bottom: 6px;
  color: oklch(0.35 0.01 250);
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-size: 14px;
  background: #fff;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: oklch(0.35 0.01 250);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 200ms ease;
}

.check:hover {
  border-color: var(--brand-line);
}

.check input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  accent-color: var(--brand);
}

.button.block {
  width: 100%;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
}

.form-note {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.searchbar {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.search-wrap {
  position: relative;
  flex: 1;
}

.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-wrap input {
  padding-left: 48px;
  border-radius: 12px;
}

.searchbar .button {
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: none;
}

/* Acordeao (Propostas) */

.accordion {
  display: grid;
  gap: 16px;
}

.acc {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.acc[open] {
  border-color: var(--brand-line);
  box-shadow: var(--shadow-lg);
}

.acc summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc summary .icon {
  margin-bottom: 0;
  flex: none;
}

.acc-txt {
  flex: 1;
}

.acc-txt h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.acc-txt p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.acc-chevron {
  flex: none;
  color: var(--muted);
  transition: transform 300ms ease;
}

.acc[open] .acc-chevron {
  transform: rotate(180deg);
}

.acc-body {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
}

.acc-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.acc-body li {
  position: relative;
  padding-left: 20px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.acc-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
}

/* Agenda */

.event {
  display: flex;
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 300ms ease;
}

.event:hover {
  border-color: var(--brand-line);
}

.event-date {
  width: 80px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date .dow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.event-date .dnum {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.event-date svg {
  margin-top: 4px;
  color: var(--brand);
}

.event-info {
  flex: 1;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.event-info h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Noticias */

.news-feature {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(to right, var(--pastel), var(--pastel-deep));
}

.news-feature h2 {
  margin: 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.news-feature p {
  margin: 0 0 16px;
  color: var(--body);
  line-height: 1.7;
}

.source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.source strong {
  font-weight: 500;
}

/* Linhas genericas */

.row-list {
  display: grid;
  gap: 12px;
}

.row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 300ms ease;
}

.row-card:hover {
  border-color: var(--brand-line);
}

.row-card > svg {
  flex: none;
  color: var(--brand);
}

.row-main {
  flex: 1;
}

.row-main h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.row-main .sub {
  color: var(--muted);
  font-size: 12px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsivo das paginas internas */

@media (max-width: 1023px) {
  .split,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bio-grid .portrait-wrap {
    order: -1;
  }
}

@media (max-width: 639px) {
  .field-row,
  .check-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px;
  }

  .event {
    gap: 12px;
    padding: 16px;
  }

  .event-info {
    padding-left: 16px;
  }

  .searchbar {
    flex-direction: column;
  }
}

/* Faixa de filtros/abas sob o hero */

.section-strip {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

/* Titulos auxiliares */

.bio-title {
  margin: 12px 0 24px;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.split-title {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.split-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.form-title svg {
  color: var(--brand);
}

.panel-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.panel-desc {
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.sub-title {
  margin-bottom: 12px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: oklch(0.35 0.01 250);
}

.sub {
  color: var(--muted);
  font-size: 12px;
}

/* Cards de artigo */

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-meta.between {
  justify-content: space-between;
  gap: 16px;
}

.card-meta h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.card-meta .dot {
  color: var(--muted);
  font-size: 12px;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.card-foot .link-more {
  font-size: 14px;
}

.article-card .card-meta + h3 {
  margin-top: 0;
}

/* Noticias: cards com texto longo */

.article-list .article-card h2,
.news-feature h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.article-list .article-card h2 {
  margin: 8px 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.article-list .article-card p,
.news-feature p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.article-list .article-card .source,
.news-feature .source {
  margin-bottom: 16px;
}

.source span:not(:last-child)::after {
  content: "\00b7";
  margin-left: 10px;
}

.article-list .source-list {
  margin-bottom: 4px;
}

/* Paineis (pesquisa) */

.panel[hidden] {
  display: none;
}

[data-panel-view][hidden] {
  display: none !important;
}

a.chip {
  text-decoration: none;
}

.form-done {
  text-align: center;
  padding: 48px 32px;
  animation: fade-in 400ms ease-out both;
}

.form-done-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
}

.form-done h2 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.form-done p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Complementos da agenda */

.event-date .dmon {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.event-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.event-desc em {
  color: var(--body);
  font-style: italic;
}

/* ============================================================
   Area editorial (login / painel / post)
   ============================================================ */

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: linear-gradient(to bottom right, var(--pastel), #fff 55%, var(--pastel-deep));
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-card .brand {
  justify-content: center;
  margin-bottom: 24px;
}

.login-card h1 {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}

.login-card .login-sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.login-card .field {
  text-align: left;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.central-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 10px;
  margin: 20px 0;
}

.central-form input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.central-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.central-pipeline div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--pastel);
}

.central-pipeline span,
.central-pipeline strong {
  display: block;
}

.approval-empty {
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.agenda-calendar { margin: 1.25rem 0; border: 1px solid rgba(40, 20, 30, .1); border-radius: 14px; overflow: hidden; background: #fff; }
.calendar-title { padding: .85rem 1rem; color: var(--pink, #e84d72); font-weight: 700; text-transform: capitalize; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.calendar-weekdays { background: #fff1f4; padding: .55rem; text-align: center; color: #687182; font-size: .78rem; }
.calendar-day { min-height: 76px; border-top: 1px solid rgba(40, 20, 30, .08); border-right: 1px solid rgba(40, 20, 30, .08); padding: .45rem; display: flex; flex-direction: column; gap: .22rem; }
.calendar-day:nth-child(7n) { border-right: 0; }
.calendar-day b { font-size: .82rem; }
.calendar-day small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #b62f56; font-size: .68rem; }
.calendar-day.has-events { background: #fff9fa; }
.publication-form textarea { min-height: 96px; grid-column: 1 / -1; }
.publication-form select[multiple] { min-height: 92px; }
.profile-summary small, .user-list small, [data-publications-table] small { display: block; color: #687182; margin-top: .25rem; }

@media (max-width: 680px) {
  .calendar-day { min-height: 58px; padding: .28rem; }
  .calendar-day small { font-size: .58rem; }
  .calendar-weekdays { font-size: .68rem; }
  .publication-form { grid-template-columns: 1fr; }
  .publication-form textarea { grid-column: auto; }
  .central-form select[multiple] { min-height: 110px; }
}

.central-grid {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.social-connection-grid,
.user-list {
  display: grid;
  gap: 10px;
}

.social-connection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-connection-grid span,
.user-list span,
.profile-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--pastel);
}

.social-connection-grid strong,
.user-list small,
.profile-summary span,
.profile-summary small {
  color: var(--muted);
  font-size: 12px;
}

.central-pipeline span {
  color: var(--muted);
  font-size: 12px;
}

.central-pipeline strong {
  margin-top: 4px;
  color: var(--brand-dark);
  font-size: 24px;
}

@media (max-width: 800px) {
  .central-form,
  .central-pipeline,
  .central-grid,
  .social-connection-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--brand-dark);
}

.password-eye-closed {
  display: none;
}

.password-toggle[aria-pressed="true"] .password-eye-open {
  display: none;
}

.password-toggle[aria-pressed="true"] .password-eye-closed {
  display: block;
}

.login-back {
  display: inline-block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.login-back:hover {
  color: var(--brand-dark);
}

.form-error {
  display: none;
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: oklch(0.95 0.05 25);
  color: oklch(0.45 0.16 25);
  font-size: 14px;
  text-align: left;
}

.form-error.show {
  display: block;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: oklch(0.98 0.003 300);
}

.admin-side {
  padding: 24px 20px;
  background: var(--footer-bg);
  color: #fff;
}

.admin-side .brand {
  margin-bottom: 28px;
}

.admin-side .brand-text small {
  color: var(--footer-accent);
}

.admin-side .side-label {
  display: block;
  margin: 0 12px 8px;
  color: var(--footer-dim);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.admin-side a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 2px;
  border-radius: 10px;
  color: var(--footer-text);
  font-size: 14px;
  font-weight: 500;
  transition: background 200ms ease, color 200ms ease;
}

.admin-side a:not(.brand):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-side a.active {
  background: var(--brand);
  color: #fff;
}

.admin-side hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--footer-line);
}

.admin-main {
  padding: 32px;
  min-width: 0;
}

.admin-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.admin-head h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
}

.admin-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.stat .stat-label {
  display: block;
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat .stat-value {
  display: block;
  margin: 6px 0 2px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
}

.stat .stat-sub {
  color: var(--muted);
  font-size: 13px;
}

.admin-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.admin-card + .admin-card {
  margin-top: 24px;
}

.admin-card h2 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.admin-toolbar input,
.admin-toolbar select {
  width: auto;
  min-height: 44px;
  font-size: 14px;
}

.admin-toolbar input[type="search"] {
  flex: 1;
  min-width: 220px;
}

.admin-toolbar .button {
  margin-left: auto;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: none;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  white-space: nowrap;
}

.table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--body);
}

.table tr:last-child td {
  border-bottom: 0;
}

.table tbody tr:hover {
  background: var(--pastel);
}

.table .t-title {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.table .t-slug {
  color: var(--muted);
  font-size: 12px;
}

.table .row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.table .row-actions .tool-btn {
  padding: 6px 12px;
  font-size: 12px;
}

.status.draft {
  background: var(--pastel);
  color: var(--body);
}

.status.sched {
  background: #e0e7ff;
  color: #3730a3;
}

.status.archived {
  background: oklch(0.93 0.005 300);
  color: var(--muted);
}

.empty-row td {
  padding: 32px 12px;
  color: var(--muted);
  text-align: center;
}

/* Editor de post */

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.editor-title {
  width: 100%;
  min-height: 60px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}

.slug-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.slug-row input {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 13px;
}

.toolbar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: oklch(0.98 0.01 10);
  margin-bottom: 0;
}

.toolbar .tool-btn {
  min-width: 38px;
  padding: 7px 11px;
  font-size: 13px;
  border-radius: 8px;
}

.toolbar .sep {
  width: 1px;
  margin: 4px 4px;
  background: var(--line);
}

.editor-body {
  min-height: 420px;
  border-radius: 0 0 12px 12px;
  font-size: 15px;
  line-height: 1.75;
}

.side-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.side-card + .side-card {
  margin-top: 16px;
}

.side-card h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.side-card .field {
  margin-bottom: 14px;
}

.side-card .field:last-of-type {
  margin-bottom: 0;
}

.side-card input,
.side-card select,
.side-card textarea {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 13px;
}

.side-card textarea {
  min-height: 90px;
}

.btn-stack {
  display: grid;
  gap: 8px;
}

.btn-stack .button {
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 12px;
  box-shadow: none;
}

.btn-danger {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 20px;
  background: #fff;
  color: oklch(0.5 0.16 25);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn-danger:hover {
  background: oklch(0.97 0.02 25);
}

.source-fields {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.source-fields:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-side {
    padding: 16px;
  }

  .admin-side .brand {
    margin-bottom: 16px;
  }

  .admin-side nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .admin-side hr,
  .admin-side .side-label {
    display: none;
  }

  .admin-main {
    padding: 20px 16px;
  }
}

@media (max-width: 560px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar .button {
    margin-left: 0;
    width: 100%;
  }
}

/* 10775 — foto de apoio local */
.profile-10775-page { min-width: 0; background: linear-gradient(160deg, #fff7fb 0%, #fff 52%, #fde7f2 100%); }
.profile-10775 { width: min(100%, 540px); min-height: 100svh; margin: 0 auto; padding: 22px 18px 42px; text-align: center; overflow: hidden; }
.profile-10775-brand { display: inline-flex; margin: 0 auto 22px; }
.profile-10775-brand img { width: 164px; height: auto; object-fit: contain; }
.profile-10775-step { animation: profile10775in .25s ease-out; }
.profile-10775-step[hidden] { display: none; }
@keyframes profile10775in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.profile-10775-kicker, .profile-10775-step-number { margin: 0 0 7px; color: var(--brand); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.profile-10775 h1, .profile-10775 h2 { max-width: 440px; margin: 0 auto 9px; color: #25101e; font: 700 clamp(1.8rem, 8vw, 2.65rem)/1.04 "Playfair Display", Georgia, serif; }
.profile-10775 h1 strong { display: block; color: var(--brand); font: 800 clamp(2.4rem, 13vw, 4.2rem)/.85 "DM Sans", Arial, sans-serif; letter-spacing: -.07em; }
.profile-10775-step > p:not(.profile-10775-kicker):not(.profile-10775-step-number):not(.profile-10775-status) { margin: 0 auto 18px; color: var(--ink-light); }
.profile-10775-art { width: min(100%, 378px); margin: 12px auto 18px; overflow: visible; clip-path: circle(47% at 50% 50%); filter: drop-shadow(0 18px 24px rgba(72, 18, 51, .16)); }
.profile-10775-art img { display: block; width: 100%; }
.profile-10775-primary { min-height: 52px; text-transform: uppercase; font-weight: 800; letter-spacing: .025em; }
.profile-10775-primary[aria-disabled="true"] { pointer-events: none; opacity: .6; }
.profile-10775-canvas-wrap { width: min(100%, 456px); margin: 18px auto 14px; overflow: visible; clip-path: circle(47% at 50% 50%); filter: drop-shadow(0 16px 24px rgba(72, 18, 51, .16)); background: transparent; touch-action: none; }
.profile-10775-canvas-wrap canvas { display: block; width: 100%; height: auto; touch-action: none; }
.profile-10775-canvas-wrap canvas[hidden], .profile-10775-result-image[hidden] { display: none; }
.profile-10775-result-image { display: block; width: 100%; height: auto; -webkit-touch-callout: default; }
.profile-10775-save-hint { max-width: 360px; margin: 12px auto 0; color: #6d2450; font-size: .88rem; }
.profile-10775-help { max-width: 380px; font-size: .94rem; }
.profile-10775-zoom { display: flex; align-items: center; gap: 12px; width: min(100%, 400px); margin: 0 auto 12px; }
.profile-10775-icon { flex: 0 0 48px; width: 48px; height: 48px; border: 1px solid #f2bed8; border-radius: 50%; background: #fff; color: var(--brand); font-size: 1.75rem; font-weight: 700; line-height: 1; cursor: pointer; }
.profile-10775-icon:focus-visible, .profile-10775-reset:focus-visible, .profile-10775-link:focus-visible { outline: 3px solid #5c18ef; outline-offset: 3px; }
.profile-10775-range { flex: 1; }
.profile-10775-range input { width: 100%; accent-color: var(--brand); }
.profile-10775-reset, .profile-10775-link { display: block; width: fit-content; margin: 0 auto 16px; border: 0; background: transparent; color: #6d2450; font: 700 .9rem "DM Sans", Arial, sans-serif; text-decoration: underline; cursor: pointer; }
.profile-10775-link { margin-top: 15px; margin-bottom: 0; }
.profile-10775-step[data-profile-step="form"] { margin-top: 34px; }
.profile-10775-form { margin-top: 16px; text-align: left; }
.profile-10775-form .check { align-items: flex-start; margin: 14px 0; text-align: left; }
.profile-10775-form .check input { flex: 0 0 auto; margin-top: .25rem; }
.profile-10775-status { min-height: 1.35em; margin: 8px 0 12px; color: #a30b35; font-size: .9rem; text-align: left; }
.profile-10775-status.is-progress { color: #6d2450; }
.profile-10775-status.is-success { color: #12683b; }

/* ---------- Santinho online ---------- */
.santinho-page { min-height: 100svh; overflow: hidden; background: #b60061; }
.santinho { position: relative; display: grid; min-height: 100svh; height: 100svh; overflow: hidden; place-items: center; padding: clamp(10px, 2.2vh, 24px); isolation: isolate; background: linear-gradient(145deg, #f653a0 0%, #dd0079 38%, #ae0059 100%); }
.santinho::before { position: absolute; z-index: -2; inset: 0; content: ""; opacity: .34; background: repeating-linear-gradient(-33deg, transparent 0 34px, rgba(255,255,255,.1) 35px 36px); }
.santinho-glow { position: absolute; z-index: -1; width: 42vw; aspect-ratio: 1; border-radius: 50%; filter: blur(10px); background: rgba(255, 230, 116, .36); }
.santinho-glow-one { top: -19vw; left: -12vw; }
.santinho-glow-two { right: -21vw; bottom: -25vw; background: rgba(101, 26, 203, .35); }
.santinho-card { display: grid; width: min(100%, 960px); height: 100%; max-height: 760px; grid-template-rows: auto 1fr auto auto; gap: clamp(6px, 1.25vh, 13px); padding: clamp(14px, 2.3vh, 25px) clamp(15px, 3.6vw, 42px) 8px; border: 1px solid rgba(255,255,255,.35); border-radius: clamp(20px, 3vw, 32px); color: #fff; background: linear-gradient(135deg, rgba(255,255,255,.17), rgba(137,0,73,.09)); box-shadow: 0 28px 68px rgba(70,0,35,.35), inset 0 1px 0 rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.santinho-top, .santinho-bottom, .santinho-layout { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.santinho-logo { display: block; width: min(190px, 42vw); height: auto; padding: 8px 10px; border-radius: 11px; object-fit: contain; background: #fff; box-shadow: 0 7px 20px rgba(94,0,47,.22); }
.santinho-logo img { display: block; width: 100%; height: auto; }
.santinho-office, .santinho-kicker, .santinho-call, .santinho-legal { margin: 0; font: 800 clamp(.58rem, 1.5vw, .8rem)/1.1 "DM Sans", Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.santinho-office { max-width: 220px; text-align: right; }
.santinho-layout { min-height: 0; align-items: stretch; }
.santinho-copy { display: flex; min-width: 0; flex: 1; flex-direction: column; align-items: flex-start; justify-content: center; }
.santinho-kicker { margin-bottom: 5px; color: #ffe87f; }
.santinho-copy h1 { margin: 0; font: 400 clamp(2.05rem, 6vw, 4.55rem)/.8 "DM Sans", Arial, sans-serif; letter-spacing: -.07em; }
.santinho-copy h1 strong { display: block; font-weight: 900; }
.santinho-call { margin-top: 11px; font-size: clamp(.78rem, 1.8vw, 1.12rem); }
.santinho-call b { color: #ffe638; }
.santinho-number { margin: 4px 0 0; color: #ffe438; font: 900 clamp(4.3rem, 13vw, 9.2rem)/.76 "DM Sans", Arial, sans-serif; letter-spacing: -.09em; text-shadow: 0 6px 0 rgba(119, 0, 65, .2); }
.santinho-portrait { position: relative; width: min(41%, 320px); min-width: 170px; aspect-ratio: 1; align-self: center; margin: 0; overflow: hidden; border: clamp(4px, .7vw, 8px) solid #fff; border-radius: 50%; background: #8e004b; box-shadow: 0 14px 30px rgba(87,0,44,.3), 0 0 0 7px rgba(255,228,56,.9); }
.santinho-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 25%; }
.santinho-actions { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 8px; }
.santinho-button { position: relative; display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; overflow: hidden; padding: 10px 14px; border: 1px solid rgba(255,255,255,.45); border-radius: 14px; color: #fff; font: 800 clamp(.76rem, 1.75vw, .96rem)/1 "DM Sans", Arial, sans-serif; text-align: center; text-decoration: none; box-shadow: 0 9px 20px rgba(91,0,48,.27), inset 0 1px 0 rgba(255,255,255,.45); transition: transform .18s ease, filter .18s ease; }
.santinho-actions .santinho-whatsapp, .santinho-actions .santinho-community { width: min(92%, 340px); min-height: 48px; }
.santinho-button::before { position: absolute; top: 0; left: 12%; width: 76%; height: 45%; content: ""; border-radius: 0 0 50% 50%; background: rgba(255,255,255,.22); }
.santinho-button:hover { filter: brightness(1.06); transform: translateY(-2px); }
.santinho-button:focus-visible, .santinho-socials a:focus-visible, .santinho-downloads a:focus-visible, .santinho-logo:focus-visible { outline: 3px solid #ffe438; outline-offset: 3px; }
.santinho-button svg { z-index: 1; width: 21px; height: 21px; fill: currentColor; }
.santinho-button span { z-index: 1; }
.santinho-whatsapp { background: linear-gradient(140deg, #24c76d, #119653); }
.santinho-community { background: linear-gradient(140deg, #6636df, #4a1cb8); }
.santinho-bottom { min-height: 35px; }
.santinho-socials, .santinho-downloads { display: flex; align-items: center; gap: 7px; }
.santinho-download-label { max-width: 190px; color: #fff; font: 800 clamp(.56rem, 1.15vw, .72rem)/1.1 "DM Sans", Arial, sans-serif; text-align: right; text-transform: uppercase; }
.santinho-socials a { position: relative; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: #fff; }
.santinho-socials a::before { position: absolute; width: 29px; height: 29px; content: ""; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(255,255,255,.12); }
.santinho-socials svg { position: relative; z-index: 1; width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.santinho-socials a:nth-child(2) svg, .santinho-socials a:nth-child(3) svg { fill: currentColor; stroke: none; }
.santinho-socials span { margin-left: 2px; font: 700 clamp(.65rem, 1.5vw, .82rem) "DM Sans", Arial, sans-serif; }
.santinho-downloads a { display: inline-flex; min-width: 46px; align-items: center; justify-content: center; padding: 7px 10px; border-radius: 9px; color: #77003e; font: 800 clamp(.65rem, 1.4vw, .78rem) "DM Sans", Arial, sans-serif; text-decoration: none; background: #fff; box-shadow: 0 4px 12px rgba(93,0,49,.17); }
.santinho-downloads a:first-child { min-width: 70px; color: #fff; background: linear-gradient(135deg, #ffcf16, #f28a14); }
.santinho-legal { align-self: end; padding-top: 1px; color: rgba(255,255,255,.82); font-size: clamp(.43rem, .83vw, .57rem); letter-spacing: .035em; text-align: center; }
@media (max-width: 560px) { .santinho { padding: 7px; } .santinho-card { max-height: none; padding: 12px 14px 7px; border-radius: 18px; } .santinho-office { max-width: 135px; font-size: .58rem; } .santinho-logo { width: 142px; padding: 7px 8px; } .santinho-layout { min-height: 0; } .santinho-copy h1 { font-size: clamp(1.8rem, 9.4vw, 2.6rem); } .santinho-number { font-size: clamp(4rem, 22vw, 6rem); } .santinho-call { margin-top: 6px; font-size: .72rem; } .santinho-portrait { width: min(43vw, 224px); min-width: 130px; border-width: 4px; box-shadow: 0 10px 22px rgba(87,0,44,.28), 0 0 0 4px rgba(255,228,56,.9); } .santinho-actions { gap: 7px; } .santinho-button { min-height: 42px; padding: 8px 9px; border-radius: 12px; font-size: .72rem; } .santinho-button svg { width: 18px; height: 18px; } .santinho-bottom { gap: 8px; } .santinho-socials { gap: 0; } .santinho-socials a::before { width: 25px; height: 25px; } .santinho-socials span { font-size: .61rem; } .santinho-downloads { gap: 5px; } .santinho-download-label { max-width: 108px; font-size: .48rem; } .santinho-downloads a { padding: 6px 8px; font-size: .62rem; } }
@media (max-width: 360px), (max-height: 610px) { .santinho-card { gap: 4px; padding-top: 8px; } .santinho-logo { width: 122px; } .santinho-office { font-size: .49rem; } .santinho-kicker { margin-bottom: 2px; font-size: .5rem; } .santinho-copy h1 { font-size: 1.6rem; } .santinho-call { margin-top: 3px; font-size: .62rem; } .santinho-number { font-size: 3.65rem; } .santinho-portrait { min-width: 112px; } .santinho-button { min-height: 37px; font-size: .64rem; } .santinho-button svg { width: 16px; height: 16px; } .santinho-socials { gap: 0; } .santinho-socials a { margin-right: -7px; } .santinho-socials a::before { width: 22px; height: 22px; } .santinho-socials span { display: none; } .santinho-downloads a { padding: 5px 7px; font-size: .58rem; } .santinho-legal { font-size: .39rem; } }
@media (prefers-reduced-motion: reduce) { .santinho-button { transition: none; } }
@media (max-width: 380px) { .profile-10775 { padding-inline: 13px; } .profile-10775-art { width: min(100%, 340px); } }

/* ---------- Santinho oficial fornecido pela campanha ---------- */
.santinho-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.santinho-official-page { background: #e50075; }
.santinho-official { padding: clamp(5px, 1vh, 12px); background: linear-gradient(135deg, #e80077, #8c0049); }
.santinho-official-card { position: relative; width: min(100%, 1030px); height: auto; max-height: 100%; grid-template-rows: auto auto auto auto; gap: clamp(5px, .9vh, 9px); padding: clamp(5px, .9vh, 10px); border-color: rgba(255,255,255,.62); border-radius: clamp(10px, 2vw, 20px); background: linear-gradient(145deg, rgba(245,0,120,.68), rgba(151,0,81,.48)); box-shadow: 0 18px 45px rgba(68,0,37,.37), inset 0 1px rgba(255,255,255,.33); backdrop-filter: blur(7px); }
.santinho-artwork { display: grid; min-height: 0; margin: 0; place-items: center; overflow: hidden; border-radius: clamp(7px, 1.3vw, 14px); background: transparent; }
.santinho-artwork img { display: block; width: auto; height: auto; max-width: 100%; max-height: calc(100svh - 164px); object-fit: contain; box-shadow: 0 8px 20px rgba(87,0,44,.18); }
.santinho-share-intro { margin: 0; color: #fff; font: 800 clamp(.61rem, 1.5vw, .82rem)/1.2 "DM Sans", Arial, sans-serif; text-align: center; text-transform: uppercase; text-shadow: 0 2px 8px rgba(89,0,48,.35); }
.santinho-share-intro p { margin: 0; }
.santinho-share-intro p + p { margin-top: 2px; color: #fff0aa; font-size: .86em; letter-spacing: .03em; text-transform: none; }
.santinho-share-intro strong { color: #ffe538; }
.santinho-official-actions { grid-template-columns: 1fr 1fr; gap: clamp(5px, 1vw, 10px); }
.santinho-official-actions .santinho-button { min-height: 44px; padding: 8px 10px; font-size: clamp(.66rem, 1.8vw, .88rem); }
.santinho-official-bottom { display: grid; min-height: 38px; grid-template-columns: minmax(0, 1fr) auto; gap: 6px; }
.santinho-official-socials { min-width: 0; gap: 4px; }
.santinho-official-socials a { display: inline-flex; width: 44px; min-width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); text-decoration: none; }
.santinho-official-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.santinho-official-socials a:nth-child(2) svg, .santinho-official-socials a:nth-child(3) svg { fill: currentColor; stroke: none; }
.santinho-official-socials a::before { display: none; }
.santinho-official-socials a:focus-visible { outline-color: #791047; }
.santinho-official-bottom .santinho-downloads { gap: 4px; }
.santinho-official-bottom .santinho-downloads a { display: inline-flex; min-height: 44px; align-items: center; padding: 6px 8px; font-size: clamp(.55rem, 1.35vw, .7rem); }
.santinho-disclaimer { margin: -2px 0 0; color: rgba(255,255,255,.9); font: 800 clamp(.37rem, .75vw, .55rem)/1.2 "DM Sans", Arial, sans-serif; letter-spacing: .02em; text-align: center; }
@media (min-width: 1180px) { .santinho-share-intro { position: absolute; z-index: 2; top: 25%; left: max(-17vw, -190px); width: min(17vw, 185px); padding: 14px 12px; border: 1px solid rgba(255,255,255,.4); border-radius: 18px; background: rgba(255,255,255,.1); box-shadow: 0 12px 26px rgba(76,0,41,.18); } .santinho-share-intro p:first-child { font-size: 1.05rem; } .santinho-share-intro strong { display: block; margin-top: 4px; font-size: 1.2em; } }
@media (max-width: 360px), (max-height: 610px) { .santinho-official-card { gap: 4px; padding: 4px; } .santinho-share-intro { font-size: .53rem; } .santinho-official-actions .santinho-button { min-height: 44px; padding: 6px 5px; font-size: .59rem; } .santinho-official-bottom { min-height: 44px; gap: 3px; } .santinho-official-socials { gap: 2px; } .santinho-official-socials a { width: 44px; min-width: 44px; height: 44px; } .santinho-official-bottom .santinho-downloads { gap: 2px; } .santinho-official-bottom .santinho-downloads a { min-height: 44px; padding: 4px 5px; font-size: .51rem; } .santinho-disclaimer { font-size: .33rem; } }

/* ---------- Propostas: folder em HTML ---------- */
.propostas-page { overflow-x: hidden; overflow-y: auto; background: #f7e6ef; }
.propostas { width: min(100%, 1160px); margin: 0 auto; padding: clamp(16px, 4vw, 52px) clamp(14px, 3vw, 34px) 0; color: #65103d; font-family: "DM Sans", Arial, sans-serif; }
.propostas-hero { position: relative; overflow: hidden; padding: clamp(20px, 4vw, 44px); border: 1px solid rgba(255,255,255,.54); border-radius: clamp(22px, 3vw, 34px); color: #fff; background: linear-gradient(126deg, #d90074 0%, #be075f 58%, #8d064e 100%); box-shadow: 0 22px 48px rgba(112, 5, 59, .26); }
.propostas-hero::before { position: absolute; inset: 0; content: ""; opacity: .22; background: repeating-linear-gradient(-34deg, transparent 0 45px, rgba(255,255,255,.2) 46px 47px); pointer-events: none; }
.propostas-hero::after { position: absolute; top: -28%; left: -9%; width: 43%; aspect-ratio: 1; content: ""; border-radius: 50%; background: #ffb8bb; filter: blur(24px); opacity: .3; pointer-events: none; }
.propostas-hero-top, .propostas-hero-content, .propostas-action-bar { position: relative; z-index: 1; }
.propostas-hero-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.propostas-logo { display: block; width: min(228px, 48vw); height: auto; padding: 9px 13px; border-radius: 12px; background: #fff; box-shadow: 0 9px 20px rgba(83, 0, 40, .17); }
.propostas-hero-top p { max-width: 190px; margin: 9px 0 0; font-size: clamp(.64rem, 1.25vw, .78rem); font-weight: 800; line-height: 1.15; letter-spacing: .07em; text-align: right; text-transform: uppercase; }
.propostas-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, .7fr); align-items: center; gap: clamp(22px, 5vw, 74px); margin-top: clamp(22px, 4vw, 45px); }
.propostas-kicker, .propostas-call, .propostas-tagline { margin: 0; font-weight: 800; text-transform: uppercase; }
.propostas-kicker { color: #ffeb4f; font-size: clamp(.67rem, 1.5vw, .83rem); letter-spacing: .08em; }
.propostas-hero h1 { margin: 4px 0 10px; color: #fff; font-size: clamp(2.5rem, 6.1vw, 5.6rem); font-weight: 400; line-height: .81; letter-spacing: -.065em; text-transform: uppercase; }
.propostas-hero h1 strong { display: block; font-weight: 900; }
.propostas-call { margin-top: 16px; font-size: clamp(.78rem, 1.75vw, 1.15rem); letter-spacing: .02em; }
.propostas-call b { color: #ffe332; }
.propostas-number { margin: 5px 0 7px; color: #ffe333; font-size: clamp(4.7rem, 12vw, 9rem); font-weight: 900; line-height: .77; letter-spacing: -.09em; text-shadow: 0 5px rgba(93, 0, 47, .17); }
.propostas-tagline { color: #fff; font-size: clamp(.8rem, 1.6vw, 1.05rem); letter-spacing: .04em; }
.propostas-portrait { width: min(100%, 326px); aspect-ratio: 1; justify-self: center; margin: 0; overflow: hidden; border: clamp(4px, .6vw, 7px) solid #fff; border-radius: 50%; outline: clamp(4px, .7vw, 7px) solid #f4cd33; background: #76043f; box-shadow: 0 18px 32px rgba(82, 0, 41, .25); }
.propostas-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.propostas-action-bar { display: flex; justify-content: flex-end; gap: 10px; margin-top: clamp(18px, 3vw, 30px); }
.propostas-action-button { display: grid; width: 54px; height: 54px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.88); border-radius: 14px; color: #fff; cursor: pointer; background: #d41448; box-shadow: 0 8px 16px rgba(88,0,42,.2), inset 0 1px rgba(255,255,255,.25); transition: transform .16s ease, background-color .16s ease; }
.propostas-action-button:hover { transform: translateY(-2px); background: #ed174f; }
.propostas-action-button[aria-pressed="true"] { color: #d41448; background: #fff; }
.propostas-action-button svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.propostas-action-button:focus-visible, .propostas-socials a:focus-visible, .propostas-contact a:focus-visible, .propostas-downloads a:focus-visible { outline: 3px solid #ffdf35; outline-offset: 4px; }
.propostas-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.propostas-intro, .propostas-section, .propostas-continuity, .propostas-connect, .propostas-downloads { margin-top: clamp(30px, 6vw, 74px); }
.propostas-intro { max-width: 820px; margin-inline: auto; padding: clamp(26px, 5vw, 52px); text-align: center; }
.propostas-eyebrow { margin: 0 0 8px; color: #b70a5d; font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.propostas-intro h2, .propostas-section h2, .propostas-continuity h2, .propostas-connect h2, .propostas-downloads h2 { margin: 0; color: #8d064e; font-size: clamp(1.8rem, 4.3vw, 3.2rem); line-height: .98; letter-spacing: -.04em; }
.propostas-intro > p:last-child { margin: 20px 0 0; color: #65103d; font-size: clamp(1rem, 1.9vw, 1.18rem); line-height: 1.55; }
.propostas-section { padding-top: 6px; }
.propostas-section-heading { max-width: 660px; margin-bottom: 24px; }
.propostas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proposta-card { min-height: 100%; padding: clamp(22px, 3vw, 31px); border: 1px solid #edc1d7; border-radius: 18px; background: #fff; box-shadow: 0 10px 25px rgba(124, 5, 65, .08); }
.proposta-index { margin: 0 0 23px; color: #f3c922; font-size: 1rem; font-weight: 900; letter-spacing: .08em; }
.proposta-card h3 { margin: 0; color: #b4095b; font-size: clamp(1.18rem, 2vw, 1.48rem); line-height: 1.05; }
.proposta-card p:last-child { margin: 17px 0 0; color: #65103d; line-height: 1.52; }
.propostas-continuity { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 23px 46px; padding: clamp(27px, 5vw, 52px); border-radius: 20px; color: #fff; background: #97064f; }
.propostas-continuity .propostas-eyebrow, .propostas-continuity h2 { color: #fff; }
.propostas-continuity > p { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.propostas-continuity > p:last-child { grid-column: 2; margin-top: -9px; }
.propostas-connect { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: clamp(25px, 4vw, 38px) 0; border-top: 1px solid #e6b3cd; border-bottom: 1px solid #e6b3cd; }
.propostas-socials { display: flex; gap: 9px; justify-content: flex-end; }
.propostas-socials a { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid #b4095b; border-radius: 50%; color: #b4095b; text-decoration: none; transition: background-color .16s ease, color .16s ease; }
.propostas-socials a:hover { color: #fff; background: #b4095b; }
.propostas-socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.propostas-socials a:nth-child(2) svg, .propostas-socials a:nth-child(3) svg { fill: currentColor; stroke: none; }
.propostas-contact { grid-column: 1 / -1; margin: -4px 0 0; font-size: .94rem; }
.propostas-contact a { color: #8d064e; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.propostas-contact span { margin: 0 8px; color: #c86698; }
.propostas-downloads { padding: clamp(28px, 5vw, 48px); border-radius: 20px 20px 0 0; text-align: center; background: #fff; }
.propostas-downloads > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.propostas-downloads a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 10px 18px; border: 1px solid #b4095b; border-radius: 8px; color: #b4095b; font-weight: 900; text-decoration: none; transition: background-color .16s ease, color .16s ease; }
.propostas-downloads a:first-child { border-color: #b4095b; color: #fff; background: #b4095b; }
.propostas-downloads a:hover { color: #fff; background: #8d064e; }
.propostas-legal { padding: 20px 12px 28px; color: #7c2852; font-size: .61rem; font-weight: 800; letter-spacing: .025em; text-align: center; }
@media (max-width: 700px) {
  .propostas { padding: 10px 0 0; }
  .propostas-hero { border-width: 0; border-radius: 0; }
  .propostas-hero-content { grid-template-columns: 1fr; gap: 25px; }
  .propostas-hero-copy { text-align: center; }
  .propostas-hero h1 { font-size: clamp(2.85rem, 15vw, 4.8rem); }
  .propostas-portrait { width: min(72vw, 280px); grid-row: 1; }
  .propostas-action-bar { justify-content: center; }
  .propostas-intro, .propostas-section, .propostas-continuity, .propostas-connect, .propostas-downloads { margin-top: 35px; }
  .propostas-intro, .propostas-section, .propostas-connect { margin-inline: 18px; }
  .propostas-grid { grid-template-columns: 1fr; }
  .propostas-continuity { grid-template-columns: 1fr; border-radius: 0; }
  .propostas-continuity > p:last-child { grid-column: auto; margin-top: 0; }
  .propostas-connect { grid-template-columns: 1fr; }
  .propostas-socials { justify-content: flex-start; }
  .propostas-contact { grid-column: auto; margin: 0; line-height: 1.65; }
  .propostas-downloads { border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) { .propostas-action-button, .propostas-socials a, .propostas-downloads a { transition: none; } }

/* ---------- Santinho de uma tela: identidade + propostas ---------- */
.santinho-one-page { overflow: hidden; background: #d90076; }
.santinho-one-page::before { position: fixed; inset: 0; z-index: -1; content: ""; background: radial-gradient(circle at 10% 8%, #ff909e 0 11%, transparent 29%), radial-gradient(circle at 91% 94%, #6212bd 0 12%, transparent 30%), repeating-linear-gradient(-33deg, transparent 0 34px, rgba(255,255,255,.1) 35px 36px), #d90076; }
.santinho-one { display: grid; width: min(96vw, 1480px); height: 100svh; max-height: 100svh; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(10px, 1.6vw, 24px); align-items: center; margin: 0 auto; padding: clamp(10px, 2.2vh, 26px) 0; }
.santinho-center, .santinho-side { min-width: 0; height: min(92svh, 760px); border: 1px solid rgba(255,255,255,.52); border-radius: 25px; box-shadow: 0 18px 40px rgba(90,0,47,.24), inset 0 1px rgba(255,255,255,.25); }
.santinho-center { position: relative; display: grid; grid-template-rows: auto 1fr auto auto auto; gap: clamp(5px, 1vh, 10px); overflow: hidden; padding: clamp(14px, 2.2vw, 28px); color: #fff; background: linear-gradient(132deg, #e52386, #bc005d 76%); }
.santinho-center::before { position: absolute; inset: 0; content: ""; opacity: .16; background: repeating-linear-gradient(-33deg, transparent 0 34px, rgba(255,255,255,.28) 35px 36px); pointer-events: none; }
.santinho-center > * { position: relative; z-index: 1; }
.santinho-center-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.santinho-logo-box { display: grid; width: min(180px, 29vw); min-width: 110px; padding: 8px 11px; place-items: center; border-radius: 11px; background: #fff; box-shadow: 0 8px 17px rgba(88,0,45,.19); }
.santinho-logo-box img { display: block; width: 100%; height: auto; object-fit: contain; }
.santinho-center-top p { margin: 7px 0 0; white-space: nowrap; font: 800 clamp(.56rem, 1vw, .77rem)/1 "DM Sans",Arial,sans-serif; letter-spacing: .055em; text-transform: uppercase; }
.santinho-center-main { display: grid; grid-template-columns: 1fr minmax(145px, .7fr); align-items: center; gap: clamp(12px, 2.4vw, 34px); }
.santinho-center-copy > p { margin: 0; color: #ffe83b; font: 900 clamp(.58rem, 1vw, .76rem)/1 "DM Sans",Arial,sans-serif; letter-spacing: .07em; text-transform: uppercase; }
.santinho-center-copy h1 { margin: 4px 0 8px; color: #fff; font: 400 clamp(2rem, 4.3vw, 4.3rem)/.79 "DM Sans",Arial,sans-serif; letter-spacing: -.065em; text-transform: uppercase; }
.santinho-center-copy h1 strong { display: block; font-weight: 900; }
.santinho-center-copy > b, .santinho-center-copy small { display: block; font: 900 clamp(.62rem, 1.15vw, .89rem)/1.1 "DM Sans",Arial,sans-serif; letter-spacing: .025em; text-transform: uppercase; }
.santinho-center-copy > b em { color: #ffe634; font-style: normal; }
.santinho-center-copy > span { display: block; margin: 4px 0; color: #ffe535; font: 900 clamp(4rem, 8vw, 7.6rem)/.76 "DM Sans",Arial,sans-serif; letter-spacing: -.09em; text-shadow: 0 5px rgba(103,0,53,.18); }
.santinho-center-main figure { width: min(100%, 280px); aspect-ratio: 1; justify-self: center; margin: 0; overflow: hidden; border: 5px solid #fff; border-radius: 50%; outline: 5px solid #f6d328; background: #750340; }
.santinho-center-main figure img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.santinho-like-share { display: flex; justify-content: flex-end; gap: 7px; }
.santinho-like-share button { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 11px; color: #fff; cursor: pointer; background: #d8144b; }
.santinho-like-share button[aria-pressed="true"] { color: #d8144b; background: #fff; }
.santinho-like-share svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.santinho-one-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.santinho-contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.santinho-contact-actions a { display: grid; min-height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 12px; color: #fff; font: 800 clamp(.62rem, 1.15vw, .86rem)/1 "DM Sans",Arial,sans-serif; text-align: center; text-decoration: none; background: #09a658; }
.santinho-contact-actions a + a { background: #5226cb; }
.santinho-center-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.santinho-center-footer nav, .santinho-center-footer > div { display: flex; align-items: center; gap: 6px; }
.santinho-center-footer nav a { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; color: #fff; font-weight: 900; text-decoration: none; }
.santinho-center-footer span { font: 800 clamp(.48rem, .8vw, .64rem) "DM Sans",Arial,sans-serif; white-space: nowrap; }
.santinho-center-footer > div b { max-width: 145px; font: 800 clamp(.4rem, .7vw, .56rem)/1.1 "DM Sans",Arial,sans-serif; text-align: right; text-transform: uppercase; }
.santinho-center-footer > div a { padding: 7px 8px; border-radius: 8px; color: #860041; font: 900 clamp(.5rem, .74vw, .62rem) "DM Sans",Arial,sans-serif; text-decoration: none; background: #fff; }
.santinho-center-footer > div a:first-of-type { color: #fff; background: #ffad0b; }
.santinho-legal-one { margin: 0; font: 800 clamp(.33rem, .54vw, .48rem)/1 "DM Sans",Arial,sans-serif; text-align: center; }
.santinho-side { padding: clamp(22px, 3.2vw, 46px); color: #5e0738; background: rgba(255,245,250,.96); }
.santinho-side-kicker { margin: 0 0 8px; color: #ba075e; font: 900 clamp(.62rem, .9vw, .73rem) "DM Sans",Arial,sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.santinho-side h2 { margin: 0 0 18px; color: #a0004e; font: 900 clamp(1.55rem, 2.6vw, 2.5rem)/.97 Georgia,serif; }
.santinho-about { display: none; }
.santinho-proposals { display: grid; grid-template-rows: auto auto repeat(3,1fr); gap: clamp(8px, 1.5vh, 16px); }
.santinho-proposals article { padding: clamp(11px, 1.7vw, 19px); border: 1px solid #d8006e; border-radius: 13px; background: #ffe756; }
.santinho-proposals h3 { margin: 0; color: #171019; font: 900 clamp(.78rem, 1.25vw, 1.08rem)/1 "DM Sans",Arial,sans-serif; text-transform: uppercase; }
.santinho-proposals article p { margin: 6px 0 0; color: #26121d; font: 600 clamp(.64rem, .95vw, .82rem)/1.26 "DM Sans",Arial,sans-serif; }
.santinho-one a:focus-visible, .santinho-one button:focus-visible { outline: 3px solid #ffe63a; outline-offset: 3px; }
@media (max-width: 880px) { .santinho-one { width: 100vw; padding: 0; grid-template-columns: 1fr; grid-template-rows: 62svh 38svh; gap: 0; } .santinho-center, .santinho-side { width: 100%; height: 100%; border-radius: 0; } .santinho-center { padding: clamp(12px, 3.6vw, 20px); } .santinho-proposals { grid-template-columns: 1fr; grid-template-rows: auto auto repeat(3, 1fr); gap: 5px; padding: 8px 12px; } .santinho-proposals .santinho-side-kicker, .santinho-proposals h2 { grid-column: auto; margin: 0; } .santinho-proposals h2 { grid-row: 2; font-size: clamp(1rem, 4.5vw, 1.4rem); } .santinho-proposals article { display: grid; grid-template-columns: minmax(112px, .8fr) 1.2fr; align-items: center; min-height: 0; padding: 5px 9px; } .santinho-proposals h3 { font-size: clamp(.65rem, 2.7vw, .8rem); } .santinho-proposals article p { margin: 0; font-size: clamp(.58rem, 2.25vw, .72rem); } .santinho-center-main figure { width: min(42vw, 225px); } .santinho-center-copy h1 { font-size: clamp(1.7rem, 8.2vw, 3rem); } .santinho-center-copy > span { font-size: clamp(3.6rem, 16vw, 5.7rem); } .santinho-center-footer > div b { max-width: 100px; } }
@media (max-width: 390px), (max-height: 650px) { .santinho-one { grid-template-rows: 64svh 36svh; } .santinho-logo-box { width: 104px; padding: 5px 7px; } .santinho-center-top p { font-size: .44rem; } .santinho-center-main { grid-template-columns: 1fr 118px; gap: 7px; } .santinho-center-main figure { width: 112px; border-width: 3px; outline-width: 3px; } .santinho-center-copy h1 { font-size: 1.55rem; } .santinho-center-copy > p, .santinho-center-copy > b, .santinho-center-copy small { font-size: .48rem; } .santinho-center-copy > span { font-size: 3.2rem; } .santinho-like-share button { width: 34px; height: 34px; } .santinho-contact-actions a { min-height: 35px; font-size: .52rem; } .santinho-center-footer nav a { width: 23px; height: 23px; } .santinho-center-footer span { font-size: .4rem; } .santinho-center-footer > div { gap: 3px; } .santinho-center-footer > div b { max-width: 70px; font-size: .34rem; } .santinho-center-footer > div a { padding: 5px; font-size: .44rem; } .santinho-legal-one { font-size: .27rem; } .santinho-proposals article { grid-template-columns: 92px 1fr; padding: 3px 5px; } .santinho-proposals h3 { font-size: .48rem; } .santinho-proposals article p { font-size: .45rem; } }

/* Revisão visual: painéis de proposta inspirados diretamente no folder. */
.santinho-proposals { position: relative; color: #fff; border-color: rgba(255,255,255,.57); background: rgba(201,0,102,.18); backdrop-filter: blur(5px); }
.santinho-proposals::before { position: absolute; inset: 0; content: ""; opacity: .32; background: repeating-linear-gradient(-33deg, transparent 0 34px, rgba(255,255,255,.15) 35px 36px); pointer-events: none; }
.santinho-proposals > * { position: relative; z-index: 1; }
.santinho-proposals .santinho-story { margin: 0; color: #fff; font: 700 clamp(.7rem, 1.15vw, .92rem)/1.3 "DM Sans",Arial,sans-serif; }
.santinho-proposals h2 { margin: 0; color: #fff; font-family: Georgia,serif; text-shadow: 0 1px 1px rgba(0,0,0,.38); }
.santinho-proposals article { border: 2px solid #f3c72f; border-radius: 13px; background: rgba(255,255,255,.1); }
.santinho-proposals h3 { display: table; margin: calc(-1 * clamp(20px, 1.9vw, 26px)) auto 9px; padding: 6px 13px; border: 1px solid #fce37d; color: #fff; font-weight: 900; text-align: center; text-shadow: -1px -1px 0 #180e11, 1px -1px 0 #180e11, -1px 1px 0 #180e11, 1px 1px 0 #180e11; text-transform: uppercase; background: linear-gradient(135deg,#ffed83,#e8a710 48%,#ae6d05); box-shadow: 0 3px 7px rgba(60,20,0,.25); }
.santinho-proposals article p { color: #fff; font-weight: 600; text-shadow: 0 1px rgba(0,0,0,.38); }
@media (max-width: 880px) { .santinho-proposals { grid-template-rows: auto auto repeat(3,1fr); } .santinho-proposals .santinho-story { display: -webkit-box; overflow: hidden; font-size: clamp(.59rem, 2.25vw, .75rem); -webkit-box-orient: vertical; -webkit-line-clamp: 2; } .santinho-proposals h2 { font-size: clamp(.9rem, 4vw, 1.2rem); } .santinho-proposals article { display: block; padding: 5px 8px; } .santinho-proposals h3 { margin: -9px 0 4px; padding: 3px 7px; font-size: clamp(.5rem, 2vw, .65rem); } .santinho-proposals article p { font-size: clamp(.52rem, 2.05vw, .67rem); line-height: 1.1; } }

/* Direção editorial aprovada: dois painéis no mesmo plano translúcido. */
.santinho-center { background: rgba(194,0,95,.46); backdrop-filter: blur(9px); }
.santinho-center::after { position: absolute; right: -20%; bottom: -34%; width: 48%; aspect-ratio: 1; content: ""; border-radius: 50%; background: rgba(107,28,198,.48); filter: blur(22px); pointer-events: none; }
.santinho-center-top, .santinho-center-main, .santinho-like-share, .santinho-contact-actions, .santinho-center-footer, .santinho-legal-one { z-index: 2; }
.santinho-logo-box { aspect-ratio: 1827 / 578; padding: 7px 11px; }
.santinho-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.santinho-proposals { background: rgba(194,0,95,.4); backdrop-filter: blur(9px); }
.santinho-proposals .santinho-story { max-width: 94%; }
.santinho-proposals article { border-width: 2px; background: rgba(255,255,255,.08); }
.santinho-proposals h3 { border-color: #ffe182; background: linear-gradient(135deg,#ffef9b 0%,#d39512 50%,#8b5400 100%); }
.santinho-contact-actions a, .santinho-like-share button { min-height: 44px; }
.santinho-like-share button { width: auto; min-width: 44px; padding: 0 13px; }
@media (min-width: 881px) { .santinho-one { grid-template-columns: 1.08fr .92fr; } .santinho-proposals { grid-template-rows: auto auto repeat(3,1fr); } .santinho-proposals article { padding: clamp(15px,1.45vw,20px); } .santinho-proposals h3 { margin-top: -25px; } .santinho-proposals article p { font-size: clamp(.62rem,.85vw,.78rem); line-height: 1.26; } }
@media (prefers-reduced-motion:no-preference) { .santinho-one-page::before { animation: santinho-ambient 22s ease-in-out infinite alternate; } @keyframes santinho-ambient { to { transform: translate3d(0,-2px,0); } } }

/* Retorno ao santinho central aprovado: downloads centralizados, sem ações extras. */
.santinho:not(.santinho-one) .santinho-downloads { display: grid; grid-template-columns: auto auto; justify-items: center; gap: 5px; }
.santinho:not(.santinho-one) .santinho-downloads p { grid-column: 1 / -1; margin: 0; color: #fff; font: 900 clamp(.52rem, 1.05vw, .72rem)/1.1 "DM Sans",Arial,sans-serif; letter-spacing: .025em; text-align: center; text-transform: uppercase; }
.santinho:not(.santinho-one) .santinho-downloads a { min-height: 34px; display: inline-flex; align-items: center; }
@media (max-width: 560px) { .santinho:not(.santinho-one) .santinho-downloads p { font-size: .42rem; } .santinho:not(.santinho-one) .santinho-downloads a { min-height: 29px; } }

.santinho:not(.santinho-one) .santinho-bottom { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; }
.santinho-download-intro { grid-column: 1 / -1; margin: 0; color: #fff; font: 900 clamp(.58rem, 1.05vw, .76rem)/1.1 "DM Sans",Arial,sans-serif; letter-spacing: .025em; text-align: center; text-transform: uppercase; }
.santinho:not(.santinho-one) .santinho-downloads { display: flex; gap: 5px; }
@media (max-width: 560px) { .santinho-download-intro { font-size: .45rem; } }

.santinho-office { max-width: none; white-space: nowrap; }
.santinho-mobile-socials { display: none; }
.santinho-socials svg { position: relative; z-index: 1; width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.santinho-socials a:nth-child(2) svg, .santinho-socials a:nth-child(3) svg { fill: currentColor; stroke: none; }
@media (max-width: 560px) {
  .santinho-card { grid-template-rows: auto 1fr auto auto auto; }
  .santinho-top { display: grid; grid-template-columns: 1fr auto; gap: 5px 8px; }
  .santinho-office { max-width: none; font-size: .48rem; white-space: nowrap; }
  .santinho-mobile-socials { display: flex; grid-column: 1 / -1; justify-content: flex-start; }
  .santinho-mobile-socials a { width: 32px; height: 32px; margin: 0; }
  .santinho-mobile-socials a::before { width: 26px; height: 26px; }
  .santinho-mobile-socials svg { width: 14px; height: 14px; }
  .santinho-bottom > .santinho-socials { display: none; }
  .santinho-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(105px,.72fr); align-items: center; gap: 8px; }
  .santinho-portrait { width: min(37vw, 154px); min-width: 0; margin: 0; }
  .santinho-actions { grid-template-columns: 1fr; gap: 5px; }
  .santinho-button { min-height: 39px; }
  .santinho-bottom { grid-template-columns: 1fr; }
  .santinho-download-intro { margin-top: 2px; }
  .santinho-downloads { justify-content: center; }
}

/* Mobile: ações de contato e downloads têm a mesma hierarquia e ficam mais próximas do conteúdo. */
@media (max-width: 560px) {
  .santinho:not(.santinho-one) .santinho-card {
    grid-template-rows: auto clamp(405px, 56.8svh, 495px) auto auto auto;
    align-content: start;
  }
  .santinho:not(.santinho-one) .santinho-layout { transform: translateY(-15px); }
  .santinho:not(.santinho-one) .santinho-actions { gap: 8px; margin-top: 0; transform: none; }
  .santinho:not(.santinho-one) .santinho-actions .santinho-button { width: min(92%, 340px); min-height: 50px; padding: 10px 14px; font-size: .8rem; }
  .santinho:not(.santinho-one) .santinho-bottom { grid-template-columns: 1fr; gap: 6px; margin-top: 0; transform: none; }
  .santinho:not(.santinho-one) .santinho-download-intro { margin-top: 0; font-size: .9rem; }
  .santinho:not(.santinho-one) .santinho-downloads { width: min(100%, 338px); justify-self: center; gap: 8px; }
  .santinho:not(.santinho-one) .santinho-downloads a { box-sizing: border-box; min-width: 0; min-height: 44px; flex: 1 1 0; padding: 7px 11px; font-size: 1rem; }
  .santinho:not(.santinho-one) .santinho-downloads a:first-child { flex-grow: 1.09; }
}

