/* ==========================================================================
   PLAY NO PARAGUAY — Abertura da página inicial
   Cores oficiais: #FDFDFD | #041F5C | #0D91D8 | #FD6206
   ========================================================================== */

:root {
  --bg: #fdfdfd;
  --navy: #041f5c;
  --blue: #0d91d8;
  --orange: #fd6206;
  --text: #041f5c;
  --text-muted: #3d4f73;
  --border: rgba(4, 31, 92, 0.1);
  --white: #ffffff;
  --logo-red: #e53935;
  --logo-purple: #8e24aa;
  --shadow-sm: 0 2px 10px rgba(4, 31, 92, 0.06);
  --shadow-md: 0 12px 40px rgba(4, 31, 92, 0.1);
  --radius: 12px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 64px;
  --wa-safe: max(1rem, env(safe-area-inset-right, 0px));
  --wa-safe-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  --focus: 0 0 0 3px rgba(13, 145, 216, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus);
}

/* -------------------------------------------------------------------------- */
/* 1. Cabeçalho                                                               */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 253, 253, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.65rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  order: 3;
  width: 100%;
  justify-content: flex-start;
  padding-top: 0.15rem;
  border-top: 1px solid transparent;
}

@media (min-width: 780px) {
  .site-header__nav {
    order: 0;
    width: auto;
    flex: 1;
    justify-content: center;
    padding-top: 0;
  }
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover {
  background: rgba(13, 145, 216, 0.08);
  color: var(--blue);
}

.site-nav__link:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-nav__link.is-active {
  color: var(--orange);
  background: rgba(253, 98, 6, 0.08);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.site-header__brand:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus);
}

.site-header__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header__name {
  font-size: clamp(0.72rem, 2.4vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  white-space: nowrap;
}

.site-header__contacts {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 40px;
  min-width: 40px;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
  background: rgba(13, 145, 216, 0.08);
  color: var(--blue);
}

.contact-link:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.contact-link__icon {
  display: flex;
  line-height: 0;
}

.contact-link__label {
  font-size: 0.8rem;
  font-weight: 600;
  display: none;
}

@media (min-width: 720px) {
  .contact-link__label {
    display: inline;
  }

  .contact-link {
    padding: 0.4rem 0.75rem;
  }

  .site-header__logo {
    width: 48px;
    height: 48px;
  }
}

/* -------------------------------------------------------------------------- */
/* 2. Hero / apresentação                                                     */
/* -------------------------------------------------------------------------- */

.hero {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1.15rem clamp(5.5rem, 12vw, 6.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(13, 145, 216, 0.05), transparent 60%),
    var(--bg);
}

.hero__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  animation: hero-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Logo completa, sem crop, sem distorção */
.hero__logo {
  width: min(200px, 52vw);
  height: auto;
  object-fit: contain;
}

.hero__wordmark {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 38rem;
}

.hero__title {
  font-size: clamp(1.35rem, 4.4vw, 2rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.hero__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1.15rem auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.hero__subtitle {
  font-size: clamp(0.98rem, 2.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 34rem;
  text-wrap: pretty;
}

/* Contatos discretos na apresentação */
.hero__social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-top: 0.25rem;
  max-width: 100%;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-chip:hover {
  border-color: rgba(13, 145, 216, 0.35);
  color: var(--navy);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(13, 145, 216, 0.08);
}

.social-chip:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.social-chip__icon {
  display: flex;
  color: var(--blue);
  flex-shrink: 0;
}

/* Detalhe mínimo com cores da logo (não compete com a mensagem) */
.hero__wordmark::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.55rem auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--logo-red) 0%,
    var(--orange) 40%,
    var(--blue) 70%,
    var(--logo-purple) 100%
  );
  opacity: 0.55;
}

/* -------------------------------------------------------------------------- */
/* 4. Botão flutuante WhatsApp                                                */
/* -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: var(--wa-safe);
  bottom: var(--wa-safe-bottom);
  z-index: 200;
  /* Espaço extra para não cobrir cookies futuros / UI inferior */
  margin-bottom: 0.25rem;
}

.wa-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.wa-float__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.wa-float__btn:focus-visible {
  outline: none;
  box-shadow: var(--focus), 0 6px 20px rgba(37, 211, 102, 0.35);
}

.wa-float__btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: default;
}

.wa-float__btn[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}

.wa-float__icon {
  display: flex;
  line-height: 0;
}

@media (min-width: 768px) {
  .wa-float {
    right: max(1.5rem, env(safe-area-inset-right, 0px));
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }

  .wa-float__btn {
    width: 60px;
    height: 60px;
  }
}

/* -------------------------------------------------------------------------- */
/* 5. Modal do grupo WhatsApp                                                 */
/* -------------------------------------------------------------------------- */

.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.wa-modal[hidden] {
  display: none;
}

.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 31, 92, 0.45);
  border: none;
  cursor: pointer;
  animation: fade-in 0.3s ease both;
}

.wa-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow-md);
  animation: panel-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wa-modal__accent {
  width: 2.5rem;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  margin-bottom: 1rem;
}

.wa-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.wa-modal__close:hover {
  background: rgba(4, 31, 92, 0.06);
  color: var(--navy);
}

.wa-modal__close:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.wa-modal__brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.wa-modal__title {
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-right: 1.5rem;
}

.wa-modal__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.wa-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wa-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.wa-modal__btn--primary {
  background: var(--orange);
  color: var(--white);
}

.wa-modal__btn--primary:hover {
  background: #e55705;
}

.wa-modal__btn--primary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.wa-modal__btn--primary[aria-disabled="true"] {
  opacity: 0.65;
  cursor: default;
}

.wa-modal__btn--primary[aria-disabled="true"]:hover {
  background: var(--orange);
}

.wa-modal__btn--secondary {
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
}

.wa-modal__btn--secondary:hover {
  background: rgba(4, 31, 92, 0.05);
  color: var(--navy);
}

.wa-modal__btn--secondary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

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

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .wa-modal {
    align-items: center;
  }

  .wa-modal__panel {
    padding: 1.75rem 1.6rem 1.5rem;
  }
}

/* Body lock quando modal aberto */
body.modal-open {
  overflow: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__inner,
  .wa-modal__backdrop,
  .wa-modal__panel {
    animation: none;
  }

  .wa-float__btn,
  .contact-link,
  .social-chip,
  .wa-modal__btn {
    transition: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Blog — ÚLTIMAS NOVIDADES                                                   */
/* -------------------------------------------------------------------------- */

.blog-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 2.75rem) 1.15rem clamp(5.5rem, 12vw, 6.5rem);
}

.blog-page__header {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.blog-page__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.blog-page__title {
  font-size: clamp(1.45rem, 4.5vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.blog-page__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: var(--orange);
}

.blog-page__lead {
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
  margin-top: 0.85rem;
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.blog-card--pinned {
  border-color: rgba(253, 98, 6, 0.28);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(253, 98, 6, 0.06);
  position: relative;
}

.blog-card--pinned::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--orange);
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-badge--pinned {
  background: rgba(253, 98, 6, 0.12);
  color: var(--orange);
}

.blog-card__date {
  font-weight: 500;
}

.blog-card__author {
  font-weight: 600;
  color: var(--navy);
}

.blog-card__title {
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.blog-card__excerpt {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.blog-card__note {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.5;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.blog-feed__list-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.blog-feed__empty {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 1.1rem 1.15rem;
  border: 1px dashed rgba(4, 31, 92, 0.18);
  border-radius: 14px;
  background: rgba(13, 145, 216, 0.03);
}

/* Post individual (estrutura pronta para textos longos) */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 2.75rem) 1.15rem clamp(5.5rem, 12vw, 6.5rem);
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.25rem;
  min-height: 40px;
}

.blog-article__back:hover {
  color: var(--navy);
}

.blog-article__back:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 6px;
}

.blog-article__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-article__body p + p {
  margin-top: 1rem;
}

.blog-article__body h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1.75rem 0 0.65rem;
}

.blog-article__sources {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Últimas Novidades — área editorial
   ========================================================================== */

.un-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) 1.15rem 0.5rem;
}

.un-hero__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.un-hero__copy {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.15rem, 3vw, 2rem) 0.25rem;
}

.un-hero__title {
  font-size: clamp(1.55rem, 4.5vw, 2.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.un-hero__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: var(--orange);
}

.un-hero__subtitle {
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 34rem;
}

.un-hero__visual {
  padding: 0 0.5rem 0.75rem;
}

.un-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

@media (min-width: 900px) {
  .un-hero__inner {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
    gap: 0;
    min-height: 320px;
  }

  .un-hero__copy {
    padding: 2rem 1.5rem 2rem 2rem;
    align-self: center;
  }

  .un-hero__visual {
    padding: 0.75rem 0.75rem 0.75rem 0;
  }
}

/* Layout 2 colunas — max ~1200px, sidebar ~240px, gap 32px */
.un-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.15rem clamp(5.5rem, 12vw, 6.5rem);
  display: grid;
  gap: 1.5rem;
}

.un-sidebar {
  display: none;
}

.un-topics-mobile {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.15rem 0;
}

.topics-nav__heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.topics-nav--scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.topics-nav--vertical {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.topics-nav__item {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-align: left;
  font-family: inherit;
}

.topics-nav--vertical .topics-nav__item {
  width: 100%;
}

.topics-nav__item:hover {
  border-color: rgba(13, 145, 216, 0.35);
  color: var(--blue);
}

.topics-nav__item:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.topics-nav__item.is-active {
  background: rgba(253, 98, 6, 0.1);
  border-color: rgba(253, 98, 6, 0.4);
  color: var(--orange);
}

@media (min-width: 960px) {
  .un-topics-mobile {
    display: none;
  }

  .un-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 32px;
    align-items: start;
  }

  .un-sidebar {
    display: block;
  }

  .un-sidebar__sticky {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

/* Conteúdo fixo editorial */
.editorial-fixed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}

.editorial-fixed__kicker {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(253, 98, 6, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.editorial-fixed__title {
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.15rem;
  max-width: 40rem;
}

.editorial-fixed__body {
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.editorial-fixed__body p + p {
  margin-top: 1.05rem;
}

/* CTA dual */
.un-cta {
  background: linear-gradient(180deg, rgba(13, 145, 216, 0.05), rgba(253, 253, 253, 1));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  margin-bottom: 2rem;
}

.un-cta__title {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.un-cta__lead {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.un-cta__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .un-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.un-cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.un-cta-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.un-cta-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  width: 100%;
}

.btn--primary:hover:not(:disabled) {
  background: #e55705;
}

.btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  width: 100%;
}

.btn--whatsapp:hover:not(.is-disabled) {
  background: #1ebe57;
}

.btn--whatsapp.is-disabled,
.btn--whatsapp[aria-disabled="true"] {
  opacity: 0.7;
  cursor: default;
  background: #7dcea0;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.newsletter-form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.newsletter-form__input {
  width: 100%;
  min-height: 46px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
}

.newsletter-form__input:focus {
  outline: none;
  border-color: rgba(13, 145, 216, 0.55);
  box-shadow: var(--focus);
}

.newsletter-form__consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.newsletter-form__consent input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.newsletter-form__privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.newsletter-form__status {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
}

.newsletter-form__status[data-state="info"],
.newsletter-form__status[data-state="loading"] {
  background: rgba(13, 145, 216, 0.1);
  color: var(--blue);
}

.newsletter-form__status[data-state="error"] {
  background: rgba(229, 57, 53, 0.1);
  color: #b71c1c;
}

.newsletter-form__status[data-state="success"] {
  background: rgba(37, 211, 102, 0.12);
  color: #0d6b35;
}

/* Novidades recentes */
.un-recent__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.posts-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.post-card__topic {
  font-weight: 700;
  color: var(--blue);
  text-transform: capitalize;
}

.post-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.post-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.post-card__cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.25rem;
}

.post-card__cta:hover {
  color: var(--navy);
}

.post-card__cta:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 6px;
}

.posts-empty {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 1.15rem 1.2rem;
  border: 1px dashed rgba(4, 31, 92, 0.18);
  border-radius: 14px;
  background: rgba(13, 145, 216, 0.03);
}

@media (prefers-reduced-motion: reduce) {
  .post-card,
  .topics-nav__item,
  .btn {
    transition: none;
  }

  .post-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   Reorganização editorial — Últimas Novidades (v2)
   ========================================================================== */

:root {
  --news-navy: #08285f;
  --news-blue: #087fc4;
  --news-red: #e9122a;
  --news-orange: #ff7a00;
  --news-cream: #fff4ea;
  --news-background: #fffdf9;
  --news-surface: #ffffff;
  --news-text: #27334a;
  --news-muted: #667085;
  --news-whatsapp: #25d366;
}

.page-news {
  background: var(--news-background);
  color: var(--news-text);
}

.page-news .site-header {
  background: rgba(255, 253, 249, 0.94);
}

/* Featured — ACABOU DE SAIR */
.featured-wrap {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding-inline: 32px;
}

@media (max-width: 900px) {
  .featured-wrap {
    padding-inline: 16px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .featured-wrap {
    padding-inline: 24px;
  }
}

.featured-wrap[hidden] {
  display: none !important;
}

.featured-card__inner {
  display: grid;
  gap: 1.15rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--news-navy) 0%, #0a3d8f 48%, var(--news-blue) 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(8, 40, 95, 0.18);
}

@media (min-width: 860px) {
  .featured-card__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
  }
}

.featured-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  flex-shrink: 0;
}

.featured-card__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--news-orange);
  margin-bottom: 0.45rem;
}

.featured-card__topic {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  text-decoration: none;
}

.featured-card__topic:hover {
  background: rgba(255, 255, 255, 0.22);
}

.featured-card__topic:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.55);
}

.featured-card__title {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.55rem;
}

.featured-card__excerpt {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 48rem;
}

.featured-card__date {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.featured-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: var(--news-orange);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.featured-card__btn:hover {
  background: #e86f00;
}

.featured-card__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

@media (hover: hover) {
  .featured-card__btn:hover {
    transform: translateY(-1px);
  }
}

/* Layout editorial */
.un-layout--editorial {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.5rem 32px 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .un-layout--editorial {
    padding-inline: 16px;
    grid-template-columns: 1fr;
  }

  .un-layout--editorial .un-sidebar {
    display: none;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .un-layout--editorial {
    padding-inline: 24px;
  }
}

@media (min-width: 960px) {
  .un-layout--editorial {
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 32px;
    align-items: start;
  }

  .un-layout--editorial .un-sidebar {
    display: block;
  }
}

.un-sidebar__sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

/* Nav editorial */
.ed-nav-mobile-wrap {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding-inline: 16px;
}

@media (min-width: 960px) {
  .ed-nav-mobile-wrap {
    display: none;
  }
}

.ed-nav--scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.ed-nav--vertical {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ed-nav__group + .ed-nav__group {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(8, 40, 95, 0.1);
}

.ed-nav__heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--news-navy);
  margin-bottom: 0.55rem;
}

.ed-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(8, 40, 95, 0.1);
  background: var(--news-surface);
  color: var(--news-navy);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ed-nav--vertical .ed-nav__link {
  width: 100%;
  justify-content: space-between;
}

.ed-nav__link:hover {
  border-color: rgba(8, 127, 196, 0.4);
  color: var(--news-blue);
}

.ed-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 127, 196, 0.35);
}

.ed-nav__link.is-active {
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.1);
  color: var(--news-orange);
}

.ed-nav__badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(233, 18, 42, 0.12);
  color: var(--news-red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Conteúdo permanente */
.editorial-fixed--card {
  background: var(--news-surface);
  border: 1px solid rgba(8, 40, 95, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(8, 40, 95, 0.05);
  padding: clamp(1.15rem, 3vw, 2.75rem);
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.editorial-fixed--card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--news-orange), var(--news-red));
}

.editorial-fixed__kicker--center {
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  background: rgba(255, 122, 0, 0.12);
  color: var(--news-orange);
}

.editorial-fixed__title--display {
  text-align: center;
  text-transform: uppercase;
  color: var(--news-navy);
  font-weight: 800;
  font-size: clamp(1.15rem, 3.2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 auto 1.5rem;
  max-width: 42rem;
}

.editorial-fixed__body--justify {
  max-width: 42rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--news-text);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.editorial-fixed__body--justify p + p {
  margin-top: 1.1rem;
}

/* CTA especial */
.un-cta--special {
  background: var(--news-cream);
  border: 1px solid #ffb36b;
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 0;
}

.un-cta__title--display {
  text-align: center;
  text-transform: uppercase;
  color: var(--news-navy);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.un-cta__title--display::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.9rem auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--news-orange), var(--news-red));
}

.un-cta__lead--justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: var(--news-text);
  line-height: 1.7;
  font-size: 1rem;
}

.un-cta__grid--equal {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .un-cta__grid--equal {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: stretch;
  }
}

.un-cta-card--whatsapp,
.un-cta-card--email {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--news-surface);
  border-radius: 18px;
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: 0 8px 24px rgba(8, 40, 95, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.un-cta-card--whatsapp {
  border: 1.5px solid rgba(37, 211, 102, 0.55);
}

.un-cta-card--email {
  border: 1.5px solid rgba(8, 127, 196, 0.45);
}

@media (hover: hover) {
  .un-cta-card--whatsapp:hover,
  .un-cta-card--email:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(8, 40, 95, 0.1);
  }
}

.un-cta-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.un-cta-card__icon--wa {
  background: rgba(37, 211, 102, 0.14);
  color: var(--news-whatsapp);
}

.un-cta-card__icon--mail {
  background: rgba(8, 127, 196, 0.12);
  color: var(--news-blue);
}

.un-cta-card__title--center {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--news-navy);
}

.un-cta-card__text--justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  flex: 1;
  color: var(--news-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.btn--navy {
  background: var(--news-navy);
  color: #fff;
  width: 100%;
}

.btn--navy:hover:not(:disabled) {
  background: #0a3478;
}

.btn--navy:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(8, 40, 95, 0.08);
  background: var(--news-surface);
  padding: 1.5rem 1rem 5.5rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--news-navy);
  margin-bottom: 0.35rem;
}

.site-footer__note {
  font-size: 0.88rem;
  color: var(--news-muted);
}

/* Listing pages */
.listing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 16px 2rem;
}

@media (min-width: 960px) {
  .listing-page {
    padding-inline: 32px;
  }
}

.listing-page__header {
  margin-bottom: 1rem;
}

.listing-page__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--news-blue);
}

.listing-page__title {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 800;
  color: var(--news-navy);
  margin: 0.35rem 0 0.65rem;
}

.listing-page__back a {
  color: var(--news-blue);
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.listing-page__back a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 127, 196, 0.35);
  border-radius: 6px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.pagination__item {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(8, 40, 95, 0.12);
  background: var(--news-surface);
  color: var(--news-navy);
  font-weight: 700;
  text-decoration: none;
}

.pagination__item.is-current {
  background: var(--news-navy);
  color: #fff;
  border-color: var(--news-navy);
}

.pagination__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 127, 196, 0.35);
}

/* Artigo */
.article-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 16px 5rem;
}

.article-card {
  background: var(--news-surface);
  border: 1px solid rgba(8, 40, 95, 0.08);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 10px 30px rgba(8, 40, 95, 0.05);
}

.article-card h1 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  color: var(--news-navy);
  font-weight: 800;
  line-height: 1.25;
  margin: 0.75rem 0 1.15rem;
}

.article-meta {
  font-size: 0.88rem;
  color: var(--news-muted);
}

.article-meta a {
  color: var(--news-blue);
  font-weight: 700;
  text-decoration: none;
}

.article-body {
  color: var(--news-text);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.article-body p + p {
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .featured-card__btn,
  .un-cta-card--whatsapp,
  .un-cta-card--email,
  .ed-nav__link {
    transition: none;
  }

  .featured-card__btn:hover,
  .un-cta-card--whatsapp:hover,
  .un-cta-card--email:hover {
    transform: none;
  }
}

/* ==========================================================================
   MEDICINA NO PARAGUAY
   ========================================================================== */

:root {
  --medicine-navy: #08285f;
  --medicine-blue: #087fc4;
  --medicine-red: #e9122a;
  --medicine-orange: #ff7a00;
  --medicine-cream: #fff4ea;
  --medicine-background: #fffdf9;
  --medicine-surface: #ffffff;
  --medicine-text: #27334a;
  --medicine-muted: #667085;
  --medicine-border: #dce5f0;
}

.page-medicine {
  background: var(--medicine-background);
  color: var(--medicine-text);
}

.page-medicine .site-header {
  background: rgba(255, 253, 249, 0.94);
}

.med-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 16px 0.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .med-hero {
    padding: 2rem 32px 0.5rem;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 1.5rem;
  }
}

.med-hero__title {
  text-align: center;
  text-transform: uppercase;
  color: var(--medicine-navy);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.5vw, 2.35rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.med-hero__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--medicine-orange), var(--medicine-red));
}

.med-hero__subtitle {
  text-align: center;
  color: var(--medicine-muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.6;
  max-width: 34rem;
  margin-inline: auto;
}

.med-hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--medicine-border);
  background: var(--medicine-surface);
}

.med-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem 16px 0.5rem;
}

@media (min-width: 900px) {
  .med-shell {
    padding-inline: 32px;
  }
}

.med-intro__text {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.75;
  font-size: 1rem;
  color: var(--medicine-text);
  margin-bottom: 0.75rem;
}

.med-intro__date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--medicine-blue);
  margin-bottom: 1.25rem;
}

.med-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 560px) {
  .med-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.med-stat {
  background: var(--medicine-surface);
  border: 1px solid var(--medicine-border);
  border-radius: 16px;
  padding: 1rem 0.85rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(8, 40, 95, 0.04);
}

.med-stat__num {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--medicine-navy);
  line-height: 1.1;
}

.med-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--medicine-muted);
}

.med-search-block {
  margin-bottom: 1rem;
}

.med-search__label {
  display: block;
  font-weight: 700;
  color: var(--medicine-navy);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.med-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.med-search__input {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--medicine-border);
  border-radius: 12px;
  font: inherit;
  color: var(--medicine-text);
  background: var(--medicine-surface);
}

.med-search__input:focus {
  outline: none;
  border-color: rgba(8, 127, 196, 0.55);
  box-shadow: 0 0 0 3px rgba(8, 127, 196, 0.25);
}

.med-search__count {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--medicine-blue);
}

.med-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.med-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 127, 196, 0.35);
}

.med-btn--primary {
  background: var(--medicine-orange);
  color: #fff;
}

.med-btn--primary:hover {
  background: #e86f00;
}

.med-btn--outline {
  background: transparent;
  color: var(--medicine-navy);
  border: 1.5px solid var(--medicine-blue);
}

.med-btn--outline:hover {
  background: rgba(8, 127, 196, 0.08);
}

.med-btn--ghost {
  background: var(--medicine-surface);
  color: var(--medicine-navy);
  border: 1px solid var(--medicine-border);
}

.med-btn--ghost:hover {
  border-color: var(--medicine-blue);
  color: var(--medicine-blue);
}

.med-city-nav-mobile-wrap {
  max-width: 1200px;
  margin: 0.5rem auto 0;
  padding-inline: 16px;
}

@media (min-width: 960px) {
  .med-city-nav-mobile-wrap {
    display: none;
  }
}

.med-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 16px 3rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .med-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 32px;
    padding: 1.25rem 32px 4rem;
    align-items: start;
  }
}

.med-sidebar {
  display: none;
}

@media (min-width: 960px) {
  .med-sidebar {
    display: block;
  }
}

.med-sidebar__sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow: auto;
  padding-right: 0.25rem;
}

.med-sidebar__heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--medicine-navy);
  margin-bottom: 0.55rem;
}

.med-city-nav--scroll {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.med-city-nav--vertical {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.med-city-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--medicine-border);
  background: var(--medicine-surface);
  color: var(--medicine-navy);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.med-city-nav--vertical .med-city-nav__link {
  width: 100%;
  white-space: normal;
}

.med-city-nav__link:hover {
  border-color: rgba(8, 127, 196, 0.4);
  color: var(--medicine-blue);
}

.med-city-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 127, 196, 0.3);
}

.med-city-nav__link.is-active {
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.1);
  color: var(--medicine-orange);
}

.med-empty {
  padding: 1rem 1.1rem;
  border: 1px dashed var(--medicine-border);
  border-radius: 14px;
  background: rgba(8, 127, 196, 0.04);
  color: var(--medicine-muted);
  margin-bottom: 1rem;
}

.med-city {
  margin-bottom: 2.25rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.med-city__header {
  text-align: center;
  margin-bottom: 1rem;
}

.med-city__title {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--medicine-navy);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.med-city__dept {
  margin-top: 0.35rem;
  color: var(--medicine-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.med-city__count {
  margin-top: 0.25rem;
  color: var(--medicine-muted);
  font-size: 0.9rem;
}

.med-city__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .med-city__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.med-card {
  background: var(--medicine-surface);
  border: 1px solid var(--medicine-border);
  border-radius: 18px;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 8px 22px rgba(8, 40, 95, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.med-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 40, 95, 0.08);
  color: var(--medicine-navy);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.med-card__name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--medicine-navy);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.med-card__acronym {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--medicine-blue);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.med-card__meta {
  font-size: 0.86rem;
  color: var(--medicine-muted);
  margin-bottom: 0.45rem;
}

.med-card__address {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--medicine-text);
  margin-bottom: 0.65rem;
  overflow-wrap: anywhere;
}

.med-card__note {
  font-size: 0.86rem;
  color: var(--medicine-muted);
  line-height: 1.5;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: var(--medicine-cream);
  border: 1px solid #ffd7ad;
  margin-bottom: 0.65rem;
}

.med-card__details {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.med-card__details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--medicine-blue);
  min-height: 44px;
  display: flex;
  align-items: center;
  list-style: none;
}

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

.med-card__details ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--medicine-text);
  line-height: 1.55;
}

.med-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.med-card__actions .med-btn {
  flex: 1 1 auto;
}

.med-about {
  margin-top: 1.5rem;
  padding: 1.35rem 1.15rem;
  border-radius: 20px;
  background: var(--medicine-cream);
  border: 1px solid #ffd7ad;
}

.med-about__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--medicine-navy);
  margin-bottom: 0.85rem;
}

.med-about__text {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.75;
  font-size: 1rem;
  color: var(--medicine-text);
  max-width: 44rem;
  margin-inline: auto;
}

.med-about__details {
  margin-top: 1rem;
  max-width: 44rem;
  margin-inline: auto;
}

.med-about__details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--medicine-navy);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.med-about__details ul {
  margin-top: 0.5rem;
  padding-left: 1.15rem;
  color: var(--medicine-text);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .med-btn,
  .med-city-nav__link {
    transition: none;
  }
}

/* ==========================================================================
   Header: marca à esquerda + tópicos laranja/azul
   ========================================================================== */

.site-header__inner--spread {
  max-width: 1200px;
  width: 100%;
  justify-content: flex-start;
  gap: 1rem 1.75rem;
}

.site-header--brand-left .site-header__brand,
.site-header__inner--spread .site-header__brand {
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.site-header__nav--topics {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  order: 0;
  width: auto;
  flex: 1 1 auto;
  justify-content: flex-start;
  padding-top: 0;
  border-top: none;
  margin-left: clamp(0.5rem, 3vw, 2rem);
}

.site-header__inner--spread .site-header__contacts {
  margin-left: auto;
  flex-shrink: 0;
}

.site-nav__link {
  text-transform: uppercase;
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-nav__link--orange {
  color: #ff7a00;
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.06);
}

.site-nav__link--orange:hover,
.site-nav__link--orange.is-active {
  color: #e86f00;
  background: rgba(255, 122, 0, 0.12);
  border-color: #ff7a00;
}

.site-nav__link--blue {
  color: #087fc4;
  border-color: rgba(8, 127, 196, 0.5);
  background: rgba(8, 127, 196, 0.06);
}

.site-nav__link--blue:hover,
.site-nav__link--blue.is-active {
  color: #066a9f;
  background: rgba(8, 127, 196, 0.12);
  border-color: #087fc4;
}

@media (max-width: 779px) {
  .site-header__inner--spread {
    flex-wrap: wrap;
  }

  .site-header__nav--topics {
    order: 3;
    width: 100%;
    margin-left: 0;
    margin-top: 0.25rem;
    padding-top: 0.35rem;
  }

  .site-nav__link {
    font-size: 0.7rem;
    padding: 0.38rem 0.65rem;
    white-space: normal;
    text-align: center;
  }
}

/* Atenção pulsante */
.editorial-attention {
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  letter-spacing: 0.04em;
  color: #e9122a;
  margin: 0 auto 1.15rem;
  max-width: 36rem;
  line-height: 1.35;
  text-shadow:
    0 0 8px rgba(233, 18, 42, 0.45),
    0 0 18px rgba(233, 18, 42, 0.25);
  animation: attention-pulse 2.8s ease-in-out infinite;
}

@keyframes attention-pulse {
  0%,
  100% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(233, 18, 42, 0.45),
      0 0 18px rgba(233, 18, 42, 0.25);
  }
  50% {
    opacity: 0.72;
    text-shadow:
      0 0 14px rgba(233, 18, 42, 0.7),
      0 0 28px rgba(233, 18, 42, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-attention {
    animation: none;
    opacity: 1;
  }
}

/* LER MAIS */
.editorial-more {
  overflow: hidden;
}

.editorial-more[hidden] {
  display: none !important;
}

.editorial-more.is-open {
  animation: editorial-reveal 0.35s ease;
}

@keyframes editorial-reveal {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.editorial-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.editorial-toggle {
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  border: 1.5px solid #ff7a00;
  background: rgba(255, 122, 0, 0.08);
  color: #e86f00;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.editorial-toggle:hover {
  background: rgba(255, 122, 0, 0.16);
}

.editorial-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35);
}

/* Early CTA */
.early-cta {
  margin: 1.35rem 0 0.5rem;
  padding: 1.15rem 1rem;
  border-radius: 18px;
  background: #fff4ea;
  border: 1px solid #ffb36b;
  text-align: center;
}

.early-cta__title {
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #08285f;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.early-cta__text {
  color: #27334a;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.early-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.early-cta__btn {
  min-width: min(100%, 240px);
}

/* Footer copyright */
.site-footer__rule {
  border: none;
  border-top: 1px solid rgba(8, 40, 95, 0.12);
  margin: 1rem auto 0.75rem;
  max-width: 280px;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: #667085;
  text-align: center;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .editorial-more.is-open {
    animation: none;
  }
}

/* ==========================================================================
   Correções Primeiros Passos (hero, aviso, menu, prévia)
   ========================================================================== */

.un-hero--title-center .un-hero__inner--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.un-hero__copy--center {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 1.5rem) 0.25rem;
}

.un-hero__title--center {
  text-align: center;
  margin-inline: auto;
}

.un-hero__title--center::after {
  margin-left: auto;
  margin-right: auto;
}

.un-hero--title-center .un-hero__subtitle {
  text-align: center;
  margin-inline: auto;
}

.un-hero--title-center .un-hero__visual {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding: 0 0.75rem 0.85rem;
}

/* Aviso em “pílula” vermelha (estilo botão do header) */
.editorial-attention {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 36rem);
  margin: 0 auto 1.25rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid #e9122a;
  background: #fff7f7;
  color: #111111;
  font-weight: 800;
  font-size: clamp(0.78rem, 2.2vw, 0.92rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  box-shadow:
    0 0 0 1px rgba(233, 18, 42, 0.12),
    0 0 14px rgba(233, 18, 42, 0.28);
  animation: attention-border-pulse 2.8s ease-in-out infinite;
}

@keyframes attention-border-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(233, 18, 42, 0.12),
      0 0 10px rgba(233, 18, 42, 0.22);
    border-color: #e9122a;
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(233, 18, 42, 0.18),
      0 0 22px rgba(233, 18, 42, 0.42);
    border-color: #ff2a40;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-attention {
    animation: none;
  }
}

.editorial-fixed--card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.editorial-fixed--card .editorial-fixed__body {
  width: 100%;
}

/* TEMAS centralizado na lateral */
.ed-nav__heading--center {
  text-align: center;
  width: 100%;
}

/* Botão notícias na lateral */
.ed-nav__link--news {
  white-space: normal;
  text-align: center;
  justify-content: center;
  line-height: 1.3;
  font-size: 0.78rem;
  padding: 0.65rem 0.75rem;
  border-color: rgba(255, 122, 0, 0.45);
  color: #e86f00;
  background: rgba(255, 122, 0, 0.08);
}

.ed-nav__link--news:hover {
  border-color: #ff7a00;
  color: #c85f00;
  background: rgba(255, 122, 0, 0.14);
}

.ed-nav--scroll .ed-nav__link--news {
  max-width: 16rem;
  flex: 0 0 auto;
}

.news-placeholder {
  max-width: 640px;
  margin: 1.5rem auto 3rem;
  padding: 1.35rem 1.2rem;
  border-radius: 16px;
  border: 1px dashed rgba(8, 40, 95, 0.18);
  background: rgba(13, 145, 216, 0.04);
  color: #27334a;
  line-height: 1.65;
  text-align: center;
}

.news-placeholder p + p {
  margin-top: 0.75rem;
}

/* Prévia do artigo + CONTINUAR LENDO acima do CTA */
.editorial-toggle-wrap {
  margin-bottom: 0.25rem;
}

.un-content .editorial-fixed--card + .un-cta--special {
  margin-top: 1.25rem;
}

/* ==========================================================================
   Primeiros Passos: vídeo, redes, prévia reduzida
   ========================================================================== */

.video-slot {
  width: 100%;
  max-width: 640px;
  margin: 0.35rem auto 0.75rem;
  padding-inline: 0.75rem;
}

.video-slot__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 40, 95, 0.12);
  background: linear-gradient(160deg, #0a3d8f 0%, #08285f 55%, #061f4a 100%);
  box-shadow: 0 12px 32px rgba(8, 40, 95, 0.12);
}

.video-slot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
}

.video-slot__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.video-slot__label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

.video-slot__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Menu compacto de redes */
.social-menu {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 120;
}

.social-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  max-width: min(100%, 280px);
  padding: 0.4rem 0.85rem;
  border: none;
  border-radius: 999px;
  background: #087fc4;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.social-menu__trigger:hover {
  background: #ff7a00;
}

.social-menu__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.45);
  background: #ff7a00;
}

.social-menu__trigger-icon {
  display: flex;
  flex-shrink: 0;
}

.social-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: min(280px, calc(100vw - 1.5rem));
  max-height: min(70vh, 420px);
  overflow: auto;
  padding: 0.45rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(8, 40, 95, 0.12);
  box-shadow: 0 14px 36px rgba(8, 40, 95, 0.16);
  z-index: 130;
}

.social-menu__panel[hidden] {
  display: none !important;
}

.social-menu__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  color: #08285f;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.social-menu__item:hover,
.social-menu__item:focus-visible {
  background: rgba(8, 127, 196, 0.1);
  outline: none;
}

.social-menu__item--soon {
  opacity: 0.72;
  cursor: default;
}

.social-menu__item-icon {
  display: flex;
  width: 22px;
  flex-shrink: 0;
  color: #087fc4;
}

.social-menu__item-label {
  flex: 1;
}

.social-menu__soon {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ff7a00;
  background: rgba(255, 122, 0, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

@media (max-width: 779px) {
  .social-menu {
    order: 2;
    width: 100%;
    margin-left: 0;
    margin-top: 0.15rem;
  }

  .social-menu__trigger {
    width: 100%;
    max-width: none;
    justify-content: center;
    font-size: 0.66rem;
  }

  .social-menu__panel {
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* Prévia mais curta: CONTINUAR LENDO + CTA na mesma região */
.page-news .editorial-preview p + p {
  margin-top: 1.05rem;
}

.page-news .editorial-toggle-wrap {
  margin-top: 1rem;
  margin-bottom: 0.15rem;
}

.page-news .un-content .editorial-fixed--card + .un-cta--special {
  margin-top: 1.1rem;
}

.site-footer__copy {
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Hero Primeiros Passos: mais vídeo, mesma altura de seção */
.un-hero--title-center .un-hero__copy--title-only {
  padding-bottom: 0.15rem;
  padding-top: clamp(0.85rem, 2vw, 1.25rem);
}

.un-hero--title-center .un-hero__inner--stack {
  gap: 0.65rem;
}

.video-slot--expanded {
  max-width: min(780px, 100%);
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
  flex: 1 1 auto;
  width: 100%;
}

.un-hero--title-center {
  /* redistribui espaço interno sem crescer a seção */
  min-height: auto;
}

.un-hero--title-center .un-hero__inner--stack {
  min-height: clamp(320px, 48vw, 420px);
  justify-content: flex-start;
}

.video-slot--expanded .video-slot__frame {
  /* 16:9 dentro de largura maior = área visível maior no espaço liberado */
  width: 100%;
}

/* ==========================================================================
   Social menu GLOBAL — amarelo-dourado + ícones IG/TikTok/YouTube
   ========================================================================== */

.social-menu {
  position: relative;
  margin-left: auto;
  flex-shrink: 1;
  min-width: 0;
  z-index: 120;
}

.social-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  max-width: min(100%, 300px);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(138, 100, 12, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #f5d76e 0%, #e4b93b 55%, #d4a82e 100%);
  color: #08285f;
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(138, 100, 12, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-menu__trigger:hover {
  background: linear-gradient(180deg, #e8c84a 0%, #d4a82e 55%, #c49a22 100%);
  border-color: rgba(100, 70, 8, 0.35);
}

.social-menu__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 40, 95, 0.35), 0 2px 8px rgba(138, 100, 12, 0.18);
}

.social-menu__brands {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  flex-shrink: 0;
}

.social-menu__brand {
  display: flex;
  width: 14px;
  height: 14px;
  color: #08285f;
}

.social-menu__brand svg {
  width: 14px;
  height: 14px;
  display: block;
}

.social-menu__trigger-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: min(280px, calc(100vw - 1.5rem));
  max-height: min(70vh, 420px);
  overflow: auto;
  padding: 0.45rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(8, 40, 95, 0.12);
  box-shadow: 0 14px 36px rgba(8, 40, 95, 0.16);
  z-index: 200;
}

.social-menu__panel[hidden] {
  display: none !important;
}

.social-menu__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  color: #08285f;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.social-menu__item:hover,
.social-menu__item:focus-visible {
  background: rgba(228, 185, 59, 0.18);
  outline: none;
}

.social-menu__item--soon {
  opacity: 0.72;
  cursor: default;
}

.social-menu__item-icon {
  display: flex;
  width: 22px;
  flex-shrink: 0;
  color: #08285f;
}

.social-menu__item-label {
  flex: 1;
}

.social-menu__soon {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #08285f;
  background: rgba(228, 185, 59, 0.28);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

/* Garante espaço no header global */
.site-header__inner {
  align-items: center;
}

.site-header__inner--spread {
  max-width: 1200px;
}

@media (max-width: 779px) {
  .social-menu {
    order: 2;
    width: 100%;
    margin-left: 0;
    margin-top: 0.2rem;
  }

  .social-menu__trigger {
    width: 100%;
    max-width: none;
    justify-content: center;
    font-size: 0.62rem;
    gap: 0.35rem;
    padding: 0.42rem 0.65rem;
  }

  .social-menu__brand {
    width: 12px;
    height: 12px;
  }

  .social-menu__brand svg {
    width: 12px;
    height: 12px;
  }

  .social-menu__brands {
    gap: 0.16rem;
  }

  .social-menu__panel {
    left: 0;
    right: 0;
    width: 100%;
  }
}
