/* ═══════════════════════════════════════════════
   PREMIO.CSS — Página do Prêmio Influency.me
   Influency.me Experience 2026
   ═══════════════════════════════════════════════ */

/* ── Navbar sempre visível ── */
.navbar {
  transform: translateY(0) !important;
  background: rgba(10,8,18,0.97) !important;
  backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(91,79,190,0.25) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6) !important;
}

/* ─────────────────────────────────────────────
   VARIÁVEIS
───────────────────────────────────────────── */
:root {
  --gold-1:   #E8B84B;
  --gold-2:   #FFD87A;
  --gold-3:   #C8941A;
  --gold-glow: rgba(232,184,75,0.3);
  --pr-dark:  #08050F;
  --pr-dark2: #100D1C;
  --pr-dark3: #1A1528;
}

/* ─────────────────────────────────────────────
   CONTAINER & LABEL
───────────────────────────────────────────── */
.pr-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.pr-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-1);
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.pr-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.pr-section-header h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.pr-section-header h2 em { font-style: italic; color: var(--gold-1); }
.pr-section-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.pr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  background: var(--pr-dark);
}

.pr-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.pr-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.7);
}
.pr-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,5,15,0.55) 0%,
    rgba(8,5,15,0.75) 50%,
    rgba(8,5,15,1) 100%
  );
}

/* Sparkles */
.pr-sparkle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,0.6) 0%, transparent 70%);
  animation: sparkle-float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.pr-s1 { width: 300px; height: 300px; top: 5%;  left: 5%;  animation-delay: 0s;   opacity: 0.15; }
.pr-s2 { width: 200px; height: 200px; top: 15%; right: 8%; animation-delay: 2s;   opacity: 0.12; }
.pr-s3 { width: 150px; height: 150px; bottom: 20%; left: 15%; animation-delay: 4s; opacity: 0.1; }
.pr-s4 { width: 100px; height: 100px; bottom: 30%; right: 20%; animation-delay: 1s; opacity: 0.2; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.1); }
}

.pr-hero-content { position: relative; z-index: 2; max-width: 800px; }

.pr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,184,75,0.12);
  border: 1px solid rgba(232,184,75,0.35);
  color: var(--gold-1);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pr-hero-eyebrow i { font-size: 0.85rem; }

.pr-hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(232,184,75,0.3);
}
.pr-hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.pr-hero-badges {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.pr-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.pr-badge i { color: var(--gold-1); font-size: 0.85rem; }
.pr-badge-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.pr-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 100%);
  color: #1a0f00;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: filter 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(232,184,75,0.35);
}
.pr-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,184,75,0.5);
}

.pr-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
}
.pr-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.pr-hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.25);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%     { transform:translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────
   SUB-NAV INTERNO
───────────────────────────────────────────── */
.pr-subnav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(8,5,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,184,75,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.pr-subnav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 8px;
}
.pr-subnav-inner::-webkit-scrollbar { display: none; }
.pr-subnav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}
.pr-subnav-link i { font-size: 0.72rem; }
.pr-subnav-link:hover { color: rgba(255,255,255,0.8); }
.pr-subnav-link.active {
  color: var(--gold-1);
  border-bottom-color: var(--gold-1);
}

/* ─────────────────────────────────────────────
   TAGLINE / SOBRE
───────────────────────────────────────────── */
.pr-tagline-section {
  padding: 100px 0;
  background: var(--pr-dark);
}
.pr-tagline-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pr-tagline-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pr-tagline-text h2 em { font-style: italic; color: var(--gold-1); }
.pr-tagline-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Carrossel de fotos dentro da seção tagline */
.pr-photo-carousel {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(232,184,75,0.2);
}
.pr-photo-carousel .photo-slides {
  height: 420px;
}
.pr-photo-carousel .photo-slide img {
  border-radius: 0;
}

/* Stack de imagens (mantido para compatibilidade) */
.pr-img-stack { position: relative; height: 420px; }
.pr-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.pr-img-float {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid rgba(232,184,75,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.pr-img-badge {
  position: absolute;
  top: 20px; left: 0;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1a0f00;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(232,184,75,0.4);
}

/* ─────────────────────────────────────────────
   COMO FUNCIONA — PILARES
───────────────────────────────────────────── */
.pr-how {
  padding: 100px 0;
  background: var(--pr-dark2);
  position: relative;
  overflow: hidden;
}
.pr-how::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,184,75,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pr-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.pr-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pr-pillar-center {
  border-color: rgba(232,184,75,0.2);
  background: rgba(232,184,75,0.04);
}
.pr-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(232,184,75,0.25);
}
.pr-pillar-num {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(232,184,75,0.1);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.pr-pillar-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.pr-pillar-vote { background: rgba(91,79,190,0.2); color: #9B8FEE; }
.pr-pillar-data { background: rgba(232,184,75,0.15); color: var(--gold-1); }
.pr-pillar-jury { background: rgba(74,191,176,0.15); color: #4ABFB0; }
.pr-pillar h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.pr-pillar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.pr-pillar-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-1);
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.2);
  padding: 4px 12px;
  border-radius: 6px;
}

/* ── Timeline header ── */
.pr-timeline-header {
  text-align: center;
  margin-bottom: 48px;
}
.pr-timeline-header h3 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}
.pr-timeline-header h3 em { font-style: italic; color: var(--gold-1); }

/* ── Timeline ── */
.pr-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}

.pr-tl-item {
  display: grid;
  grid-template-columns: 200px 60px 1fr;
  gap: 0;
  align-items: flex-start;
}

.pr-tl-left {
  text-align: right;
  padding: 24px 28px 24px 0;
  padding-top: 28px;
}
.pr-tl-phase {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.7);
  margin-bottom: 4px;
}
.pr-phase-gold { color: var(--gold-1); }
.pr-tl-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pr-tl-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.pr-result-gold { color: var(--gold-1) !important; font-weight: 700; }

/* centro da timeline */
.pr-tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pr-tl-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}
.pr-tl-dot-1 { background: rgba(91,79,190,0.25); color: #9B8FEE; border: 2px solid rgba(91,79,190,0.4); }
.pr-tl-dot-2 { background: rgba(232,98,10,0.2); color: #FF7D2E; border: 2px solid rgba(232,98,10,0.4); }
.pr-tl-dot-3 {
  background: linear-gradient(135deg, rgba(232,184,75,0.3), rgba(200,148,26,0.3));
  color: var(--gold-1);
  border: 2px solid rgba(232,184,75,0.6);
  box-shadow: 0 0 20px rgba(232,184,75,0.3);
  width: 56px; height: 56px;
  font-size: 1.1rem;
}
.pr-tl-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(232,184,75,0.3), rgba(232,184,75,0.05));
}

/* card da timeline */
.pr-tl-right { padding: 16px 0 16px 28px; }
.pr-tl-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: border-color 0.25s;
}
.pr-tl-card:hover { border-color: rgba(232,184,75,0.2); }
.pr-tl-card-gold {
  border-color: rgba(232,184,75,0.2);
  background: rgba(232,184,75,0.04);
}
.pr-tl-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pr-tl-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.pr-tl-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.pr-tl-card ul li i { color: var(--gold-1); font-size: 0.75rem; }
.pr-tl-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.pr-tl-outcome i { color: var(--gold-1); }
.pr-tl-outcome strong { color: #fff; }
.pr-outcome-gold {
  background: rgba(232,184,75,0.08);
  border: 1px solid rgba(232,184,75,0.2);
}

/* ── Diferenciais ── */
.pr-differentials { margin-top: 40px; }
.pr-diff-header { text-align: center; margin-bottom: 40px; }
.pr-diff-header h3 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
}
.pr-diff-header h3 em { font-style: italic; color: var(--gold-1); }

.pr-diff-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pr-diff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.pr-diff-card:hover { transform: translateY(-3px); border-color: rgba(232,184,75,0.2); }
.pr-diff-result {
  max-width: 240px;
  border-color: rgba(232,184,75,0.25);
  background: rgba(232,184,75,0.05);
}
.pr-diff-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 12px;
}
.pr-diff-icon-gold { background: rgba(232,184,75,0.15); color: var(--gold-1); }
.pr-diff-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pr-diff-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.pr-diff-plus, .pr-diff-equals {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   CATEGORIAS
───────────────────────────────────────────── */
.pr-categories {
  padding: 100px 0;
  background: var(--pr-dark);
  position: relative;
  overflow: hidden;
}
.pr-categories::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,184,75,0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.pr-cat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 22px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.pr-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,184,75,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.pr-cat-featured {
  grid-column: span 2;
  border-color: rgba(232,184,75,0.25);
  background: linear-gradient(135deg, rgba(232,184,75,0.08) 0%, rgba(200,148,26,0.04) 100%);
}
.pr-cat-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(232,184,75,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.pr-cat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(232,184,75,0.1);
  color: var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.pr-cat-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pr-cat-featured h3 { font-size: 1.4rem; }
.pr-cat-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.pr-cat-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-1);
  background: rgba(232,184,75,0.12);
  border: 1px solid rgba(232,184,75,0.3);
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: 12px;
}

/* ── Banner de votação ── */
.pr-vote-banner {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: 18px;
  padding: 36px 40px;
  overflow: hidden;
}
.pr-vote-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(232,184,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pr-vote-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.pr-vote-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(232,184,75,0.12);
  color: var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pr-vote-text { flex: 1; min-width: 200px; }
.pr-vote-text h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}
.pr-vote-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.pr-vote-actions { flex-shrink: 0; }
.pr-btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: 9px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.25s;
}
.pr-btn-outline-sm:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* ─────────────────────────────────────────────
   VÍDEO
───────────────────────────────────────────── */
.pr-video-section {
  padding: 100px 0;
  background: var(--pr-dark2);
}
.pr-video-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
}
.pr-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(232,184,75,0.15);
}
.pr-video-frame iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
.pr-video-highlights {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 28px;
}
.pr-video-highlights h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--gold-1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pr-video-highlights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pr-video-highlights ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.pr-video-highlights ul li i { color: var(--gold-1); font-size: 0.75rem; width: 14px; text-align: center; }
.pr-btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1a0f00;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: 9px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(232,184,75,0.3);
}
.pr-btn-primary-sm:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   EDIÇÕES ANTERIORES
───────────────────────────────────────────── */
.pr-editions {
  padding: 100px 0;
  background: var(--pr-dark);
}
.pr-editions-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.pr-edition-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.pr-edition-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,184,75,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.pr-edition-latest {
  border-color: rgba(232,184,75,0.2);
  background: rgba(232,184,75,0.04);
}
.pr-edition-year {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  z-index: 2;
  line-height: 1;
}
.pr-edition-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1a0f00;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}
.pr-edition-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.3s;
}
.pr-edition-latest img { height: 240px; }
.pr-edition-card:hover img { filter: brightness(0.85); }
.pr-edition-info {
  padding: 16px 18px;
}
.pr-edition-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.pr-edition-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-1);
  text-decoration: none;
  transition: gap 0.2s;
  opacity: 0.7;
}
.pr-edition-link:hover { gap: 10px; opacity: 1; }
.pr-editions-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   NOTÍCIAS
───────────────────────────────────────────── */
.pr-news {
  padding: 80px 0;
  background: var(--pr-dark2);
}
.pr-news-coming {
  text-align: center;
  padding: 60px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 18px;
}
.pr-news-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.pr-news-coming h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.pr-news-coming p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   REGULAMENTO
───────────────────────────────────────────── */
.pr-regulation {
  padding: 80px 0;
  background: var(--pr-dark);
}
.pr-regulation-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,184,75,0.15);
  border-radius: 24px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.pr-regulation-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,184,75,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pr-regulation-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(232,184,75,0.1);
  color: var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.pr-regulation-text h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.pr-regulation-text h2 em { font-style: italic; color: var(--gold-1); }
.pr-regulation-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}
.pr-btn-disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; position: relative; }
.pr-coming-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.7);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

/* ─────────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────────── */
.pr-final-cta {
  padding: 100px 0;
  background: var(--pr-dark2);
  overflow: hidden;
}
.pr-final-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}
.pr-final-glow-1 {
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,79,190,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.pr-final-glow-2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pr-final-trophy {
  width: 280px;
  height: 280px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 20px 60px rgba(232,184,75,0.3));
}
.pr-final-text { position: relative; }
.pr-final-text h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.pr-final-text > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pr-btn-large {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(232,184,75,0.4);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.pr-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.pr-footer .pr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pr-footer p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.pr-footer a {
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.pr-footer a:hover { color: rgba(255,255,255,0.75); }

/* ─────────────────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────────────────── */
.pr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pr-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pr-cat-featured { grid-column: span 3; }
  .pr-editions-grid { grid-template-columns: 1fr 1fr; }
  .pr-edition-latest { grid-column: span 2; }
  .pr-edition-latest img { height: 280px; }
}

@media (max-width: 900px) {
  .pr-pillars { grid-template-columns: 1fr; }
  .pr-tagline-inner { grid-template-columns: 1fr; gap: 40px; }
  .pr-img-stack { height: 300px; }
  .pr-tl-item { grid-template-columns: 140px 48px 1fr; }
  .pr-video-wrapper { grid-template-columns: 1fr; }
  .pr-regulation-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .pr-final-inner { flex-direction: column; text-align: center; gap: 32px; }
  .pr-final-trophy { width: 180px; height: 180px; }
}

@media (max-width: 768px) {
  .pr-container { padding: 0 18px; }
  .pr-cat-grid { grid-template-columns: 1fr 1fr; }
  .pr-cat-featured { grid-column: span 2; }
  .pr-editions-grid { grid-template-columns: 1fr; }
  .pr-edition-latest { grid-column: span 1; }
  .pr-tl-item { grid-template-columns: 1fr; }
  .pr-tl-center { display: none; }
  .pr-tl-left { text-align: left; padding: 0 0 8px 0; }
  .pr-tl-right { padding: 0 0 24px 0; }
  .pr-diff-cards { flex-direction: column; align-items: stretch; }
  .pr-diff-card { max-width: 100%; }
  .pr-diff-plus, .pr-diff-equals { display: none; }
  .pr-hero { min-height: 90vh; }
  .pr-hero-badges { flex-direction: column; }
  .pr-badge-sep { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  .pr-cat-grid { grid-template-columns: 1fr; }
  .pr-cat-featured { grid-column: span 1; }
  .pr-subnav-link span { display: none; }
}


/* ═══════════════════════════════════════════════
   SEÇÃO VOTAÇÃO — COUNTDOWN + FASES
   ═══════════════════════════════════════════════ */

.pr-voting-section {
  background: var(--pr-dark2);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.pr-voting-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,184,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Countdown ─────────────────────────────── */
.pr-countdown-wrap {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.pr-countdown-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pr-countdown-eyebrow i { font-size: 0.75rem; }

.pr-countdown-date-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* Os números */
.pr-countdown {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.pr-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
}

.pr-cd-num {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 110px;
  text-align: center;
  letter-spacing: -0.02em;
  /* brilho sutil dourado */
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.3s;
}

.pr-cd-num.pulse {
  box-shadow: 0 0 20px rgba(232,184,75,0.2);
}

.pr-cd-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pr-cd-sep {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 28px;
  line-height: 1;
}

/* Estado pós-início */
.pr-countdown-ended {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-1);
  background: rgba(232,184,75,0.08);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: 16px;
  padding: 20px 40px;
  margin: 0 auto;
  max-width: 480px;
}

/* ── Header das fases ─────────────────────── */
.pr-phases-header {
  text-align: center;
  margin-bottom: 56px;
}

.pr-phases-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.pr-phases-header h2 em {
  font-style: italic;
  color: var(--gold-1);
}

.pr-phases-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ── Timeline vertical ───────────────────── */
.pr-phases-timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.pr-phase-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 24px;
  position: relative;
}

/* Marcador (bolinha + linha) */
.pr-phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-phase-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pr-phase-line {
  width: 2px;
  flex: 1;
  min-height: 28px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}

/* Cores dos dots */
.ph-vote1    { background: rgba(241,196,15,0.15);  border: 2px solid #F1C40F; color: #F1C40F; }
.ph-apuracao { background: rgba(230,126,34,0.12);  border: 2px solid #E67E22; color: #E67E22; }
.ph-vote2    { background: rgba(46,204,113,0.12);  border: 2px solid #2ECC71; color: #2ECC71; }
.ph-vote3    { background: rgba(155,89,182,0.15);  border: 2px solid #9B59B6; color: #9B59B6; }
.ph-ceremony { background: rgba(232,184,75,0.18);  border: 2px solid var(--gold-1); color: var(--gold-1); width: 56px; height: 56px; font-size: 1.2rem; }

/* Cards das fases */
.pr-phase-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: border-color 0.25s, background 0.25s;
}

.pr-phase-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 14px;
  line-height: 1.3;
}

.pr-phase-card h3 span {
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

.pr-phase-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0 0 16px;
}

/* Badge da fase */
.pr-phase-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(241,196,15,0.12);
  color: #F1C40F;
  border: 1px solid rgba(241,196,15,0.25);
}

.ph-badge-apuracao {
  background: rgba(230,126,34,0.12);
  color: #E67E22;
  border-color: rgba(230,126,34,0.25);
}

.ph-badge-vote2 {
  background: rgba(46,204,113,0.12);
  color: #2ECC71;
  border-color: rgba(46,204,113,0.25);
}

.ph-badge-vote3 {
  background: rgba(155,89,182,0.12);
  color: #9B59B6;
  border-color: rgba(155,89,182,0.25);
}

.ph-badge-ceremony {
  background: rgba(232,184,75,0.15);
  color: var(--gold-1);
  border-color: rgba(232,184,75,0.35);
}

/* Período */
.pr-phase-period {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.pr-phase-period i {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.pr-phase-period strong { color: var(--white); }

.pr-phase-days {
  margin-left: 4px;
  padding: 2px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Resultado */
.pr-phase-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,196,15,0.06);
  border: 1px solid rgba(241,196,15,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.pr-phase-result i { color: #F1C40F; }

.ph-result-gold {
  background: rgba(232,184,75,0.08);
  border-color: rgba(232,184,75,0.2);
}

.ph-result-gold i { color: var(--gold-1); }

/* Cor do card por variante */
.ph-card-vote1    { border-color: rgba(241,196,15,0.15); }
.ph-card-vote2    { border-color: rgba(46,204,113,0.15); }
.ph-card-vote3    { border-color: rgba(155,89,182,0.18); }
.ph-card-apuracao { border-color: rgba(230,126,34,0.12); }

.ph-card-ceremony {
  border-color: rgba(232,184,75,0.3);
  background: rgba(232,184,75,0.05);
}

/* CTA da cerimônia */
.pr-phase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #000;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.pr-phase-cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── Status dinâmico ─────────────────────── */

/* Ativo */
[data-status="active"] .pr-phase-dot {
  box-shadow: 0 0 0 4px rgba(232,184,75,0.15), 0 0 20px rgba(232,184,75,0.25);
  animation: dotPulse 2s ease-in-out infinite;
}

[data-status="active"] .pr-phase-card {
  border-color: rgba(232,184,75,0.35);
  background: rgba(232,184,75,0.04);
}

[data-status="active"] .pr-phase-card::before {
  content: '● Em andamento';
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Concluído */
[data-status="done"] .pr-phase-dot {
  opacity: 0.35;
  filter: grayscale(0.6);
}

[data-status="done"] .pr-phase-card {
  opacity: 0.5;
}

[data-status="done"] .pr-phase-card::before {
  content: '✓ Concluído';
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,184,75,0.12), 0 0 16px rgba(232,184,75,0.18); }
  50%       { box-shadow: 0 0 0 8px rgba(232,184,75,0.06), 0 0 28px rgba(232,184,75,0.28); }
}

/* Cerimônia — alinha o dot de 56px */
.pr-phase-ceremony .pr-phase-marker {
  margin-top: -4px;
}

/* ── Responsivo ─────────────────────────── */
@media (max-width: 768px) {
  .pr-cd-block { min-width: 72px; }
  .pr-cd-num { font-size: 2.8rem; padding: 12px 14px; min-width: 80px; border-radius: 12px; }
  .pr-cd-sep { font-size: 2rem; margin-bottom: 24px; }
  .pr-phase-card { padding: 20px 18px; }
  .pr-phase-item { gap: 0 16px; }
  .pr-phases-timeline { padding: 0 4px; }
}

@media (max-width: 480px) {
  .pr-cd-block { min-width: 60px; }
  .pr-cd-num { font-size: 2.2rem; padding: 10px 12px; min-width: 68px; }
  .pr-cd-sep { font-size: 1.6rem; margin-bottom: 20px; gap: 6px; }
  .pr-countdown { gap: 6px; }
}
