/**
 * PLAY NO PARAGUAY — sistema visual premium
 *
 * Camada autoritativa e reutilizável. Concentra tokens, componentes e
 * breakpoints estáveis enquanto a folha histórica é desmontada com segurança.
 * Paleta oficial: azul-marinho, branco, vermelho, laranja e azul-claro.
 */

:root {
  --pnp-navy-950: #03163f;
  --pnp-navy-900: #041f5c;
  --pnp-navy-800: #0a2e70;
  --pnp-blue-600: #0d91d8;
  --pnp-blue-100: #e9f6fd;
  --pnp-orange-600: #e95200;
  --pnp-orange-500: #fd6206;
  --pnp-orange-100: #fff0e7;
  --pnp-red-600: #d92d3f;
  --pnp-red-100: #fff0f2;
  --pnp-green-600: #128c4a;
  --pnp-green-500: #25d366;
  --pnp-white: #ffffff;
  --pnp-surface: #f7f9fd;
  --pnp-surface-strong: #eef3fb;
  --pnp-text: #10244c;
  --pnp-muted: #52627e;
  --pnp-line: rgba(4, 31, 92, 0.12);
  --pnp-shadow-sm: 0 6px 18px rgba(4, 31, 92, 0.08);
  --pnp-shadow-md: 0 16px 42px rgba(4, 31, 92, 0.12);
  --pnp-shadow-lg: 0 26px 70px rgba(4, 31, 92, 0.16);
  --pnp-radius-sm: 12px;
  --pnp-radius-md: 20px;
  --pnp-radius-lg: 28px;
  --pnp-content: 1180px;
  --pnp-reading: 760px;
  --pnp-focus: 0 0 0 3px rgba(13, 145, 216, 0.38);
}

html {
  background: var(--pnp-surface);
  overflow-x: clip;
}

body {
  background:
    radial-gradient(circle at 5% 5%, rgba(13, 145, 216, 0.07), transparent 24rem),
    radial-gradient(circle at 95% 18%, rgba(253, 98, 6, 0.06), transparent 22rem),
    var(--pnp-surface);
  color: var(--pnp-text);
  overflow-x: clip;
}

body,
button,
input,
textarea,
select {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: rgba(13, 145, 216, 0.2);
  color: var(--pnp-navy-950);
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: none;
  box-shadow: var(--pnp-focus);
}

/* Cabeçalho estável em três zonas */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--pnp-line);
  box-shadow: 0 4px 20px rgba(4, 31, 92, 0.05);
}

@supports (backdrop-filter: blur(14px)) {
  .site-header {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
  }
}

.site-header__inner,
.site-header__inner--spread {
  width: min(100%, var(--pnp-content));
  max-width: var(--pnp-content);
  min-height: 76px;
  margin-inline: auto;
  padding: 0.75rem clamp(1rem, 3vw, 1.5rem);
  gap: 0.8rem;
}

.site-header__brand {
  flex: 0 1 auto;
}

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

.site-header__name {
  color: var(--pnp-navy-900);
  font-size: clamp(0.76rem, 1.2vw, 0.92rem);
  letter-spacing: 0.055em;
}

.site-header__nav {
  gap: 0.5rem;
}

.site-nav__link {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav__link:hover {
  transform: translateY(-1px);
}

.site-nav__link--orange,
.site-nav__link.is-active {
  color: var(--pnp-orange-600);
  border-color: rgba(253, 98, 6, 0.22);
  background: var(--pnp-orange-100);
}

.site-nav__link--blue {
  color: var(--pnp-blue-600);
  border-color: rgba(13, 145, 216, 0.2);
  background: var(--pnp-blue-100);
}

/* Menu social: compacto, acessível e previsível */
.social-menu {
  flex: 0 1 325px;
  max-width: 100%;
}

.social-menu__trigger {
  width: 100%;
  max-width: 325px;
  min-height: 44px;
  justify-content: center;
  border: 1px solid rgba(4, 31, 92, 0.18);
  background: linear-gradient(135deg, var(--pnp-white), var(--pnp-blue-100));
  color: var(--pnp-navy-900);
  box-shadow: var(--pnp-shadow-sm);
}

.social-menu__trigger:hover {
  border-color: rgba(13, 145, 216, 0.36);
  background: var(--pnp-white);
}

.social-menu__brands {
  gap: 0.2rem;
}

.social-menu__brand {
  width: 15px;
  height: 15px;
  color: var(--pnp-blue-600);
}

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

.social-menu__panel {
  width: min(310px, calc(100vw - 2rem));
  max-height: min(72dvh, 470px);
  padding: 0.55rem;
  border: 1px solid var(--pnp-line);
  border-radius: var(--pnp-radius-md);
  background: var(--pnp-white);
  box-shadow: var(--pnp-shadow-lg);
}

.social-menu__item {
  min-height: 48px;
  border-radius: var(--pnp-radius-sm);
  color: var(--pnp-navy-900);
}

.social-menu__item:hover,
.social-menu__item:focus-visible {
  background: var(--pnp-blue-100);
}

.social-menu__item-icon {
  color: var(--pnp-blue-600);
}

/* Tipografia e ritmo editorial */
:where(main, .hero, .un-content, .post-shell) h1,
:where(main, .hero, .un-content, .post-shell) h2,
:where(main, .hero, .un-content, .post-shell) h3 {
  color: var(--pnp-navy-900);
  text-wrap: balance;
}

:where(main, .hero, .un-content, .post-shell) h1,
:where(main, .hero, .un-content, .post-shell) h2 {
  text-align: center;
}

:where(main, .hero, .un-content, .post-shell) p {
  color: var(--pnp-text);
}

.hero__title,
.un-hero__title,
.editorial-fixed__title,
.un-cta__title,
.listing-hero__title,
.post-title {
  margin-inline: auto;
  max-width: 900px;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero__subtitle,
.un-hero__lead,
.un-cta__lead,
.listing-hero__lead,
.post-lead {
  max-width: var(--pnp-reading);
  margin-inline: auto;
  line-height: 1.75;
  text-align: center;
  color: var(--pnp-muted);
}

.editorial-fixed__body,
.post-body {
  color: var(--pnp-text);
  line-height: 1.8;
}

.editorial-fixed__body p,
.post-body p,
.un-cta-card__text {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Superfícies, cards e tabelas */
.editorial-fixed--card,
.un-cta--special,
.listing-card,
.post-card,
.med-card,
.featured-card,
.un-cta-card {
  border: 1px solid var(--pnp-line);
  border-radius: var(--pnp-radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--pnp-shadow-md);
}

.editorial-fixed--card,
.un-cta--special,
.post-card {
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.un-cta-card {
  padding: clamp(1.15rem, 3vw, 1.8rem);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) {
  .un-cta-card:hover,
  .listing-card:hover,
  .med-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 145, 216, 0.28);
    box-shadow: var(--pnp-shadow-lg);
  }
}

.un-cta-card--whatsapp {
  border-top: 4px solid var(--pnp-green-600);
  background: linear-gradient(180deg, var(--pnp-white), rgba(37, 211, 102, 0.05));
}

.whatsapp-group-beacon {
  position: relative;
  display: inline-grid;
  place-items: center;
  align-self: center;
  width: 150px;
  height: 150px;
  margin: auto;
  color: #fff;
  border: 5px solid #fff;
  border-radius: 24px;
  background: var(--pnp-white);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.3);
  isolation: isolate;
  animation: whatsapp-beacon-attention 2.4s ease-in-out infinite;
}

.un-cta-card--whatsapp .un-cta-card__text {
  flex: 0 0 auto;
}

.whatsapp-group-beacon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
}

.whatsapp-group-beacon:hover,
.whatsapp-group-beacon:focus-visible {
  color: #fff;
  transform: scale(1.07);
}

.whatsapp-group-beacon__pulse {
  position: absolute;
  inset: -9px;
  z-index: -1;
  border: 3px solid rgba(37, 211, 102, 0.52);
  border-radius: inherit;
  animation: whatsapp-beacon-ring 2.4s ease-out infinite;
}

@keyframes whatsapp-beacon-attention {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.16);
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.42);
  }
}

@keyframes whatsapp-beacon-ring {
  0% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.un-cta-card--email {
  border-top: 4px solid var(--pnp-blue-600);
  background: linear-gradient(180deg, var(--pnp-white), var(--pnp-blue-100));
}

.un-cta-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--pnp-surface-strong);
  color: var(--pnp-blue-600);
}

.un-cta-card__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: var(--pnp-green-600);
}

.un-cta-card__title {
  text-align: center;
  line-height: 1.25;
}

.table-wrap,
.med-table-wrap {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--pnp-line);
  border-radius: var(--pnp-radius-md);
  background: var(--pnp-white);
  box-shadow: var(--pnp-shadow-sm);
}

:where(table) {
  width: 100%;
  border-collapse: collapse;
}

:where(th) {
  background: var(--pnp-navy-900);
  color: var(--pnp-white);
}

:where(th, td) {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--pnp-line);
  text-align: left;
}

/* Hero principal e pré-estreia */
.hero {
  min-height: auto;
  padding: clamp(3rem, 7vw, 6rem) 1rem;
}

.hero__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  gap: clamp(1.6rem, 4vw, 3rem);
}

.hero__logo {
  width: clamp(150px, 22vw, 230px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.hero__social {
  justify-content: center;
  gap: 0.6rem;
}

.social-chip {
  min-height: 44px;
  border: 1px solid var(--pnp-line);
  background: var(--pnp-white);
  box-shadow: var(--pnp-shadow-sm);
}

.prelaunch-banner {
  isolation: isolate;
  width: min(calc(100% - 2rem), var(--pnp-content));
  margin: clamp(1.25rem, 3vw, 2.5rem) auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pnp-radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(13, 145, 216, 0.28), transparent 23rem),
    radial-gradient(circle at 12% 88%, rgba(253, 98, 6, 0.19), transparent 21rem),
    linear-gradient(145deg, var(--pnp-navy-950), var(--pnp-navy-800));
  box-shadow: var(--pnp-shadow-lg);
}

.prelaunch-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

.prelaunch-banner__dot {
  left: 50%;
  transform: translateX(-50%);
  background: var(--pnp-red-600);
  box-shadow: 0 0 0 7px rgba(217, 45, 63, 0.18);
}

.date-main {
  color: var(--pnp-white);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  animation: none;
}

.date-main::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pnp-red-600), var(--pnp-orange-500), var(--pnp-blue-600));
}

.countdown-block {
  min-height: 112px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.prelaunch-banner__countdown {
  width: min(100%, 780px);
  margin-inline: auto;
  gap: clamp(0.55rem, 1.6vw, 1rem);
}

.countdown-block {
  min-height: 96px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.launch-premiere {
  position: relative;
  width: min(100%, 1080px);
  margin: clamp(2rem, 5vw, 3.8rem) auto;
  padding: clamp(1rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(13, 145, 216, 0.19), transparent 38%),
    rgba(2, 18, 54, 0.74);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.launch-premiere__heading {
  width: min(100%, 780px);
  margin: 0 auto clamp(1rem, 2.5vw, 1.65rem);
  text-align: center;
}

.launch-premiere__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.7rem;
  padding: 0.42rem 0.78rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pnp-red-600), var(--pnp-orange-500));
  font-size: clamp(0.66rem, 1.4vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.launch-premiere__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 2.45rem);
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.launch-premiere__intro {
  max-width: 680px;
  margin: 0.85rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  text-align: center;
  text-wrap: balance;
}

.launch-premiere__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  isolation: isolate;
  overflow: hidden;
  border-radius: clamp(14px, 2vw, 21px);
  background:
    #020a1c url("media/video-oficial-poster.jpg") center / cover no-repeat;
}

.launch-premiere__stage::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: clamp(17px, 2.2vw, 25px);
  background: linear-gradient(120deg, var(--pnp-blue-600), var(--pnp-orange-500), var(--pnp-red-600));
}

.launch-premiere__video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: clamp(14px, 2vw, 21px);
  background: #020a1c;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.launch-premiere__accent {
  position: absolute;
  z-index: 2;
  width: clamp(38px, 6vw, 72px);
  height: 5px;
  pointer-events: none;
  border-radius: 999px;
}

.launch-premiere__accent--left {
  top: -2px;
  left: clamp(18px, 5vw, 62px);
  background: var(--pnp-blue-600);
}

.launch-premiere__accent--right {
  right: clamp(18px, 5vw, 62px);
  bottom: -2px;
  background: var(--pnp-orange-500);
}

.prelaunch-banner__group-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 22, 63, 0.64);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

/* Vídeo preparado, sem mídia inventada */
.un-hero {
  padding-inline: 1rem;
}

.video-slot {
  width: min(100%, 900px);
  margin-inline: auto;
}

.video-slot__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pnp-radius-lg);
  background:
    radial-gradient(circle at 50% 35%, rgba(13, 145, 216, 0.24), transparent 15rem),
    linear-gradient(145deg, var(--pnp-navy-950), var(--pnp-navy-800));
  box-shadow: var(--pnp-shadow-lg);
}

.video-slot__placeholder {
  min-height: 100%;
  display: grid;
  place-content: center;
  gap: 0.9rem;
  padding: 2rem;
  text-align: center;
  color: var(--pnp-white);
}

.video-slot__play {
  width: 72px;
  height: 72px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pnp-orange-500);
  color: var(--pnp-white);
  box-shadow: 0 12px 28px rgba(253, 98, 6, 0.28);
}

.video-slot__label {
  color: var(--pnp-white);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.video-slot__note {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

/* Newsletter */
.newsletter-form {
  width: min(100%, 560px);
  margin: 1.1rem auto 0;
  text-align: left;
}

.newsletter-form__field {
  display: grid;
  gap: 0.42rem;
}

.newsletter-form__label {
  color: var(--pnp-navy-900);
  font-weight: 700;
}

.newsletter-form__input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(4, 31, 92, 0.2);
  border-radius: var(--pnp-radius-sm);
  background: var(--pnp-white);
  color: var(--pnp-text);
  padding: 0.72rem 0.85rem;
}

.newsletter-form__input:focus {
  border-color: var(--pnp-blue-600);
  box-shadow: var(--pnp-focus);
  outline: none;
}

.newsletter-form__consent {
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem;
  border: 1px solid rgba(13, 145, 216, 0.16);
  border-radius: var(--pnp-radius-sm);
  background: rgba(255, 255, 255, 0.78);
  color: var(--pnp-text);
  line-height: 1.55;
}

.newsletter-form__consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 0.12rem;
  accent-color: var(--pnp-blue-600);
}

.newsletter-form__privacy {
  text-align: center;
  color: var(--pnp-muted);
}

.newsletter-form__status {
  border-radius: var(--pnp-radius-sm);
  padding: 0.75rem 0.9rem;
  text-align: center;
}

.newsletter-form__status[data-state="success"] {
  background: rgba(18, 140, 74, 0.1);
  color: #0b6d39;
}

.newsletter-form__status[data-state="error"] {
  background: var(--pnp-red-100);
  color: #a61f32;
}

/* Botões */
.btn,
.editorial-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.editorial-toggle:hover {
  transform: translateY(-1px);
}

.btn--navy,
.editorial-toggle {
  background: var(--pnp-navy-900);
  color: var(--pnp-white);
  box-shadow: 0 8px 20px rgba(4, 31, 92, 0.2);
}

.btn--orange {
  background: var(--pnp-orange-500);
  color: var(--pnp-white);
}

.btn--whatsapp {
  background: var(--pnp-green-600);
  color: var(--pnp-white);
  box-shadow: 0 8px 20px rgba(18, 140, 74, 0.2);
}

/* WhatsApp privado: compacto e sempre acima das áreas seguras */
.wa-float {
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 240;
}

.wa-float__btn {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: var(--pnp-green-600);
  color: var(--pnp-white);
  box-shadow: 0 12px 28px rgba(18, 140, 74, 0.3);
}

.wa-float__btn:hover {
  background: #0f7b40;
  transform: translateY(-2px);
}

/* Rodapé institucional */
.site-footer {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--pnp-red-600), var(--pnp-orange-500), var(--pnp-blue-600)) 1;
  background: var(--pnp-navy-950);
  color: var(--pnp-white);
}

.site-footer__inner {
  width: min(100%, var(--pnp-content));
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem;
  text-align: center;
}

.site-footer__brand,
.site-footer__note,
.site-footer__copy {
  color: var(--pnp-white);
}

.site-footer__note,
.site-footer__copy {
  opacity: 0.78;
}

.site-footer__rule {
  border-color: rgba(255, 255, 255, 0.16);
}

.social-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
}

.social-footer__title {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.social-footer__link {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background-color 160ms ease;
}

.social-footer__link:hover,
.social-footer__link:focus-visible {
  color: #fff;
  background: var(--pnp-orange-500);
  transform: translateY(-2px);
}

/* Breakpoints coesos */
@media (min-width: 1024px) {
  .site-header__inner,
  .site-header__inner--spread {
    display: grid;
    grid-template-columns: minmax(210px, auto) minmax(360px, 1fr) minmax(260px, 325px);
    align-items: center;
  }

  .site-header__nav {
    width: auto;
    justify-content: center;
  }

  .social-menu {
    width: 100%;
    justify-self: end;
  }

  .un-cta__grid--equal {
    align-items: stretch;
  }
}

@media (min-width: 780px) and (max-width: 1023px) {
  .site-header__inner,
  .site-header__inner--spread {
    display: grid;
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  }

  .site-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .social-menu {
    justify-self: end;
  }
}

@media (max-width: 779px) {
  .site-header {
    position: relative;
  }

  .site-header__inner,
  .site-header__inner--spread {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    padding-block: 0.75rem;
  }

  .site-header__brand {
    justify-self: center;
  }

  .site-header__nav {
    order: initial;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }

  .site-nav__link {
    text-align: center;
    justify-content: center;
    white-space: normal;
  }

  .social-menu {
    order: initial;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .social-menu__trigger {
    max-width: none;
  }

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

  .hero {
    padding-top: 2.5rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .prelaunch-banner {
    width: calc(100% - 1rem);
    border-radius: 22px;
  }

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

  .prelaunch-banner__group-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .prelaunch-banner__group-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .prelaunch-banner__group-buttons .btn {
    width: 100%;
    min-width: 0;
  }

  .editorial-fixed__body p,
  .post-body p,
  .un-cta-card__text {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .site-header__name {
    white-space: normal;
  }

  .social-menu__trigger-text {
    font-size: 0.6rem;
  }

  .countdown-block {
    min-height: 94px;
  }

  .countdown-value {
    font-size: 1.9rem;
  }

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

@media (min-width: 1600px) {
  :root {
    --pnp-content: 1280px;
  }

  .prelaunch-banner,
  .site-header__inner,
  .site-header__inner--spread,
  .site-footer__inner {
    max-width: var(--pnp-content);
  }
}

/* Redes no topo: ícones diretos, grandes e com as cores oficiais */
.site-header .social-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  width: auto;
  min-width: max-content;
}

.social-menu__network {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(4, 31, 92, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-menu__network svg {
  width: 21px;
  height: 21px;
}

.social-menu__network:hover,
.social-menu__network:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 9px 20px rgba(4, 31, 92, 0.24);
}

.social-menu__network--instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737);
}

.social-menu__network--tiktok {
  background: #111;
  box-shadow: -2px 0 #25f4ee, 2px 0 #fe2c55, 0 6px 16px rgba(4, 31, 92, 0.18);
}

.social-menu__network--youtube {
  background: #f00;
}

.social-menu__network--facebook {
  background: #1877f2;
}

.social-menu__network--telegram {
  background: #229ed9;
}

@media (max-width: 780px) {
  .site-header .social-menu {
    justify-content: center;
    width: 100%;
  }

  .social-menu__network {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .site-nav__link,
  .social-menu__trigger,
  .btn,
  .wa-float__btn {
    border: 1px solid ButtonText;
  }
}
