/* ==========================================================================
   Design Tokens & Root System - Official Identity (Vermelho Kianda #E31B23, Slate #3D454C, Dourado #C5A059)
   ========================================================================== */
:root {
  --red-kianda: #E31B23;
  --red-bright: #FF222B;
  --slate-kianda: #3D454C;
  --dark-kianda: #1C2024;
  --pearl-kianda: #F5F7F9;
  --gold-frame: #C5A059;
  --gold-bright: #D1B168;
  
  --ink: #0E1012;
  --paper: #F5F7F9;
  --paper-dim: #DCE1E6;
  --grey: #171A1D;
  --gold-bright: #E5C378;
  --surface: #1E2328;
  --surface-lift: #282E34;
  --line: rgba(197, 160, 89, 0.35);
  --line-strong: rgba(197, 160, 89, 0.6);
  --font-serif: 'Fraunces', serif;
  --font-serif-luxury: 'Cinzel', serif;
  --font-sans-luxury: 'Montserrat', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-impact: 'Anton', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #F4F6F9 url('assets/invitation_paper_bg.png') repeat;
  background-attachment: fixed;
  background-size: cover;
  color: var(--ink);
  font-family: var(--font-sans-luxury), var(--font-serif), serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Page Container */
.page {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  min-height: 100vh;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
  border-left: 1px solid #E2E6EA;
  border-right: 1px solid #E2E6EA;
}

/* Noise Texture Overlay */
#grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* Kinetic Ticker Ribbon */
.ticker-wrap {
  background: linear-gradient(90deg, #3D454C 0%, #E31B23 50%, #3D454C 100%);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 6;
  box-shadow: 0 2px 12px rgba(227, 27, 35, 0.5);
  border-bottom: 1px solid var(--gold-frame);
}

.ticker {
  display: inline-block;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--paper);
  animation: scroll 18s linear infinite;
  position: relative;
}

.ticker span {
  margin-right: 2.5em;
  text-transform: uppercase;
  font-weight: 700;
}

.ticker-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.35) 45%, transparent 60%);
  width: 60%;
  animation: shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

/* Masthead Header */
.masthead {
  position: relative;
  z-index: 4;
  padding: 14px 20px;
  background: #FFFFFF;
  border-bottom: 2px solid var(--red-kianda);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.official-logo {
  max-width: 125px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ==========================================================================
   Hero Section - Official 3 Anos Invitation Layout & Palette
   ========================================================================== */
.hero,
.hero-frontpage,
.hero-direct {
  position: relative;
  z-index: 4;
  padding: 36px 20px 0;
  text-align: center;
  border-bottom: 2px solid var(--red-kianda);
  background: #F8F9FA url('assets/invitation_paper_bg.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hero-silver-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  display: flex;
  justify-content: flex-end;
}

.silver-wave-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right top;
}

.hero-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-brand-emblem {
  display: flex;
  justify-content: center;
  margin: 4px 0 16px;
}

.official-lockup-3anos {
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.14));
  transition: transform 0.2s ease;
}

.official-lockup-3anos:hover {
  transform: scale(1.02);
}

.guest-nominal-box {
  background: #FFFFFF;
  border: 1px solid #E5E9EC;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.guest-label {
  font-family: var(--font-sans-luxury);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #121517;
  display: block;
  margin-bottom: 3px;
  font-weight: 800;
}

.guest-name-display {
  font-family: var(--font-sans-luxury) !important;
  font-size: 20px;
  font-weight: 800;
  color: #121517;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
  word-break: break-word;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 18px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 320px;
  max-width: 400px;
  background: linear-gradient(180deg, #ED222B 0%, #C9141B 50%, #940C12 100%);
  color: #FFFFFF;
  font-family: var(--font-sans-luxury);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 2px solid #E5C378;
  border-radius: 50px;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 
    0 5px 0 #73080D,
    0 10px 25px rgba(227, 27, 35, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: heroBtnPulse 3.5s infinite ease-in-out;
}

@keyframes heroBtnPulse {
  0%, 100% {
    box-shadow: 
      0 5px 0 #73080D,
      0 10px 25px rgba(227, 27, 35, 0.45),
      inset 0 1px 1px rgba(255, 255, 255, 0.5);
    border-color: #E5C378;
  }
  50% {
    box-shadow: 
      0 5px 0 #73080D,
      0 12px 32px rgba(227, 27, 35, 0.7),
      0 0 16px rgba(229, 195, 120, 0.45),
      inset 0 1px 1px rgba(255, 255, 255, 0.7);
    border-color: #FFF0C2;
  }
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: buttonShimmer 4s infinite ease-in-out;
}

@keyframes buttonShimmer {
  0%, 75% { left: -100%; }
  100% { left: 180%; }
}

.btn-vip-sparkle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 4px rgba(247, 213, 139, 0.8));
  flex-shrink: 0;
}

.btn-text {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.cta-btn-primary .btn-arrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn-primary:hover {
  background: linear-gradient(180deg, #FF2B35 0%, #D81820 50%, #A80D13 100%);
  transform: translateY(-2px);
  border-color: #FFFFFF;
  box-shadow: 
    0 7px 0 #73080D,
    0 14px 34px rgba(227, 27, 35, 0.65),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.cta-btn-primary:hover .btn-arrow-badge {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.35);
}

.cta-btn-primary:active {
  transform: translateY(4px);
  box-shadow: 
    0 1px 0 #73080D,
    0 4px 12px rgba(184, 18, 25, 0.35),
    inset 0 1px 3px rgba(0, 0, 0, 0.25);
}

.optional-label {
  font-family: var(--font-sans-luxury);
  font-size: 8.5px;
  font-weight: 600;
  text-transform: none;
  color: #718096;
  letter-spacing: 0.02em;
  margin-left: 4px;
}

.cta-subtext {
  font-family: var(--font-sans-luxury);
  font-size: 10.5px;
  color: #121517;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-align: center;
}

/* Cartão Cerimonial Executivo de Destaques do Evento (Design Nobre & Clean) */
.event-details-card {
  background: #FFFFFF;
  border: 1.5px solid #E8ECEF;
  border-radius: 12px;
  padding: 20px 22px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.detail-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  width: 100%;
}

.detail-label {
  font-family: var(--font-sans-luxury);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #121517;
  text-transform: uppercase;
}

.detail-value {
  font-family: var(--font-sans-luxury);
  font-size: 15px;
  font-weight: 800;
  color: #121517;
  letter-spacing: 0.02em;
  margin: 0;
}

.detail-value.text-red {
  color: var(--red-kianda);
}

.detail-sub {
  font-family: var(--font-sans-luxury);
  font-size: 11.5px;
  color: #16191C;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.detail-separator {
  width: 50px;
  height: 1px;
  background: var(--gold-frame);
  opacity: 0.4;
  margin: 0 auto;
}

.detail-gps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 14px;
  background: #FFF2F2;
  color: var(--red-kianda);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 20px;
  font-family: var(--font-sans-luxury);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.detail-gps-link:hover {
  background: var(--red-kianda);
  color: #FFFFFF;
  border-color: var(--red-kianda);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
}

/* Official Quote Bottom Red Banner */
.official-quote-banner {
  background: linear-gradient(90deg, #B81219 0%, #E31B23 50%, #B81219 100%);
  color: #FFFFFF;
  font-family: var(--font-sans-luxury);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 16px;
  width: calc(100% + 40px);
  margin: 0 -20px 0;
  box-shadow: 0 4px 15px rgba(184, 18, 25, 0.35);
  text-align: center;
  position: relative;
  border-top: 1.5px solid var(--gold-frame);
}

.cred-loc-link,
.conf-loc-link {
  color: #FFFFFF !important;
  text-decoration: none !important;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  transition: color 0.2s ease;
}

.cred-loc-link:hover,
.conf-loc-link:hover {
  color: var(--gold-bright) !important;
}

.cred-gps-icon,
.conf-gps-tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  background: rgba(197, 160, 89, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(197, 160, 89, 0.35);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.cred-loc-link:hover .cred-gps-icon,
.conf-loc-link:hover .conf-gps-tag {
  background: var(--gold-bright);
  color: #121517;
}

/* Equalizer Bars Divider */
.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 28px;
  padding: 24px 0;
  position: relative;
  z-index: 4;
}

.eq i {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--gold-frame);
  animation: bounce 1.1s ease-in-out infinite;
  transform-origin: bottom;
}

.eq i:nth-child(2n) { animation-delay: 0.18s; }
.eq i:nth-child(3n) { animation-delay: 0.32s; }
.eq i:nth-child(5n) { animation-delay: 0.48s; }

@keyframes bounce {
  0%, 100% { transform: scaleY(0.25); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ==========================================================================
   Angola Comunica 2026 Awards Section
   ========================================================================== */
.awards-section {
  padding: 36px 24px 44px;
  position: relative;
  z-index: 4;
  text-align: center;
  border-bottom: 1px solid #E2E6EA;
  background: #FFFFFF;
}

.angola-comunica-logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.angola-comunica-official-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.awards-header {
  margin-bottom: 24px;
}

.awards-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: #121517;
}

.awards-sub {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #16191C;
  font-weight: 600;
  max-width: 520px;
  margin: 6px auto 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px;
}

.award-card {
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 1.5px solid var(--gold-frame);
  padding: 20px 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.award-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-kianda);
  box-shadow: 0 12px 30px rgba(227, 27, 35, 0.15);
}

.award-brand-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--gold-frame);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease;
}

.award-card:hover .award-brand-icon-wrap {
  border-color: var(--red-kianda);
}

.award-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.award-brand-img.contain-img {
  width: 82%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.award-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  color: var(--red-kianda);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.award-winner {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: #121517;
}

/* ==========================================================================
   Backdrop Official Section (Mural de Fotografia do Evento)
   ========================================================================== */
.backdrop-section {
  padding: 36px 24px 48px;
  position: relative;
  z-index: 4;
  text-align: center;
  border-bottom: 1px solid #E2E6EA;
  background: #FFFFFF;
}

.backdrop-header {
  margin-bottom: 24px;
}

.backdrop-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: #121517;
}

.backdrop-sub {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #16191C;
  font-weight: 600;
  max-width: 500px;
  margin: 6px auto 0;
}

.backdrop-wall-container {
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 2px solid var(--gold-frame);
  padding: 16px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.official-backdrop-preview {
  border: 1.5px solid var(--gold-frame);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.backdrop-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.backdrop-caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--red-kianda);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Editorial History Timeline */
.editorial-history {
  padding: 36px 24px 44px;
  position: relative;
  z-index: 4;
  border-bottom: 1px solid #E2E6EA;
  background: #FFFFFF;
}

.history-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-kianda);
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.history-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: #121517;
  letter-spacing: 0.02em;
}

.history-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
}

.history-grid::-webkit-scrollbar {
  height: 6px;
}

.history-grid::-webkit-scrollbar-track {
  background: rgba(23, 26, 29, 0.6);
  border-radius: 3px;
}

.history-grid::-webkit-scrollbar-thumb {
  background: var(--gold-frame);
  border-radius: 3px;
}

.history-card {
  flex: 0 0 290px;
  max-width: 320px;
  scroll-snap-align: start;
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 1.5px solid var(--gold-frame);
  border-radius: 6px;
  padding: 22px 18px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.history-card:hover {
  border-color: var(--red-kianda);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(227, 27, 35, 0.15);
}

.history-year {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red-kianda);
  background: #FFF0F0;
  border: 1px solid var(--red-kianda);
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.history-head {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: #121517;
}

.history-text {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.6;
  color: #16191C;
  font-weight: 500;
}

/* Credential Section (3D Tilt) */
.credential-section {
  padding: 10px 28px 36px;
  position: relative;
  z-index: 4;
  perspective: 900px;
}

.credential {
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 2px solid var(--gold-frame);
  position: relative;
  padding: 26px 24px;
  max-width: 360px;
  margin: 0 auto;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.12s ease-out;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 25px rgba(227, 27, 35, 0.08);
}

.credential::before, .credential::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #F4F6F9;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--gold-frame);
}

.credential::before { left: -12px; }
.credential::after { right: -12px; }

.cred-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--gold-frame);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.cred-brand {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  border: none;
}

.cred-mini-logo {
  height: 24px;
  max-width: 140px;
  width: auto;
  display: block;
  object-fit: contain;
}

.cred-serial {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red-kianda);
  font-weight: 700;
}

.cred-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  color: #121517 !important;
}

.cred-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 7px 0;
  border-bottom: 1px solid #E5E9EC;
}

.cred-row span {
  color: #212529;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cred-row strong {
  color: #121517;
  text-align: right;
  font-weight: 700;
}

.highlight-row strong {
  color: var(--red-kianda);
}

/* Credential Bottom Co-Branding Bar */
.cred-bottom-bar {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cred-footer-tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: #212529;
  font-weight: 700;
  text-transform: uppercase;
}

.cred-logos-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-logo {
  height: 14px;
  width: auto;
  opacity: 0.85;
}

.logo-sep {
  font-size: 10px;
  color: var(--gold-bright);
}

.cred-seal {
  position: absolute;
  bottom: -16px;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold-frame), var(--slate-kianda), var(--gold-frame));
  animation: spin 7s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cred-seal-inner {
  background: #ffffff !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--gold-frame);
}

.cred-seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Vintage Flip Countdown */
.countdown-section {
  padding: 24px 28px 44px;
  text-align: center;
  position: relative;
  z-index: 4;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E6EA;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #121517;
  margin-bottom: 20px;
  font-weight: 800;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flip {
  position: relative;
  width: 54px;
  height: 64px;
  perspective: 250px;
}

.flip .digit {
  position: absolute;
  inset: 0;
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 1.5px solid var(--gold-frame);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--red-kianda);
  border-radius: 4px;
}

.cd-unit-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121517;
  margin-top: 8px;
  font-weight: 800;
}

/* Form & Confirmation Section */
.form-section {
  padding: 8px 28px 50px;
  position: relative;
  z-index: 4;
}

.form-card {
  border: 2px solid var(--gold-frame);
  padding: 28px 24px;
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.form-header {
  text-align: center;
  border-bottom: 1px solid #DFE3E8;
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.form-header-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 260px;
  border: none;
}

.form-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.form-header span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-kianda);
}

/* Recuperação de Passe QR Code */
.retrieve-pass-container {
  margin-bottom: 20px;
  background: #F8F9FA;
  border: 1px solid #DFE3E8;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.btn-toggle-retrieve {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-family: var(--font-sans-luxury);
  font-size: 11px;
  color: #121517;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.btn-toggle-retrieve:hover {
  background: #FFF5F5;
  color: var(--red-kianda);
}

.btn-toggle-retrieve strong {
  color: var(--red-kianda);
  text-decoration: underline;
  margin-left: 4px;
}

.retrieve-dropdown {
  padding: 14px;
  border-top: 1px solid #DFE3E8;
  background: #FFFFFF;
}

.retrieve-info-text {
  font-family: var(--font-sans-luxury);
  font-size: 11px;
  color: #16191C;
  font-weight: 600;
  margin-bottom: 10px;
}

.retrieve-form-row {
  display: flex;
  gap: 8px;
}

.retrieve-form-row input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid #CED4DA;
  border-radius: 6px;
  font-family: var(--font-sans-luxury);
  font-size: 12px;
  color: #121517;
  font-weight: 600;
  outline: none;
}

.retrieve-form-row input:focus {
  border-color: var(--red-kianda);
}

.retrieve-form-row button {
  padding: 9px 16px;
  background: var(--ink);
  color: #FFFFFF;
  border: 1.5px solid var(--gold-frame);
  border-radius: 6px;
  font-family: var(--font-sans-luxury);
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.retrieve-form-row button:hover {
  background: var(--red-kianda);
  border-color: var(--red-kianda);
}

.retrieve-notfound-msg {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red-kianda);
  margin-top: 8px;
  font-weight: 700;
}

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

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121517;
  margin-bottom: 8px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #B0B8C0;
  color: #121517;
  font-family: var(--font-sans-luxury);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Autocomplete Dropdown da Lista Oficial */
.official-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid #D8AE5E;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  margin-top: 4px;
}

.suggestion-item {
  padding: 10px 14px;
  border-bottom: 1px solid #F0F0F0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: #FFF9E6;
}

.suggestion-item .sugg-name {
  font-family: var(--font-sans-luxury);
  font-size: 13px;
  font-weight: 700;
  color: #121517;
}

.suggestion-item .sugg-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #718096;
  margin-top: 2px;
}

.field select {
  cursor: pointer;
}

.field select option {
  background: #FFFFFF;
  color: #121517;
  font-family: var(--font-sans-luxury);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--red-kianda);
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.12);
}

.error-msg {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--red-kianda);
  margin-top: 4px;
  display: none;
}

.field.invalid .error-msg {
  display: block;
}

.field.invalid input {
  border-bottom-color: var(--red-kianda);
}

/* Radio Group Interactive Cards (UX Refinada) */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-sans-luxury);
  font-size: 13px;
  font-weight: 600;
  color: #16191C;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1.5px solid #DFE3E8;
  border-radius: 6px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.radio-label:hover {
  border-color: var(--red-kianda);
  background: #FFF5F5;
  transform: translateX(2px);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid #ADB5BD;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--red-kianda);
  background: #FFF0F0;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: var(--red-kianda);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red-kianda);
}

.radio-label:has(input[type="radio"][value="sim"]:checked) {
  border-color: var(--red-kianda);
  background: #FFF5F5;
  box-shadow: 0 4px 15px rgba(227, 27, 35, 0.1);
}

.radio-label:has(input[type="radio"][value="nao"]:checked) {
  border-color: #6C757D;
  background: #F8F9FA;
}

/* Dynamic Guest Name Pulse Micro-Interaction */
@keyframes namePulse {
  0% { transform: scale(1); text-shadow: 0 0 0 rgba(197, 160, 89, 0); }
  50% { transform: scale(1.02); text-shadow: 0 0 15px rgba(197, 160, 89, 0.6); color: var(--gold-bright); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(197, 160, 89, 0); }
}

.name-updated-pulse {
  animation: namePulse 0.3s ease-out;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(180deg, #ED222B 0%, #C9141B 55%, #9E0D13 100%);
  color: #FFFFFF;
  font-family: var(--font-sans-luxury);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 24px;
  border: 1.5px solid #F7D58B;
  border-radius: 9px;
  margin-top: 24px;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: 
    0 4px 0 #78090E,
    0 8px 24px rgba(184, 18, 25, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: linear-gradient(180deg, #FF2B35 0%, #D81820 55%, #B00F15 100%);
  transform: translateY(-2px);
  border-color: #FFE6A3;
  box-shadow: 
    0 6px 0 #78090E,
    0 12px 30px rgba(227, 27, 35, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.submit-btn:active {
  transform: translateY(3px);
  box-shadow: 
    0 1px 0 #78090E,
    0 4px 12px rgba(184, 18, 25, 0.35),
    inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Confirmation Success Card */
.confirmation-card {
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 2px solid var(--gold-frame);
  padding: 32px 24px 24px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.stamp-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.stamp-badge {
  font-family: var(--font-display);
  font-size: 22px;
  color: #A07C36;
  border: 3px double var(--gold-frame);
  padding: 6px 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  animation: stampDrop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  background: #FFF8EB;
}

.stamp-badge.recusado {
  color: var(--red-kianda);
  border-color: var(--red-kianda);
  background: #FFF0F0;
}

@keyframes stampDrop {
  0% { transform: scale(3) rotate(15deg); opacity: 0; }
  100% { transform: scale(1) rotate(-4deg); opacity: 1; }
}

.conf-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #DFE3E8;
  padding-bottom: 14px;
}

.conf-logo-box {
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 260px;
  border: none;
}

.conf-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.conf-subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-kianda);
  font-weight: 700;
}

.conf-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 4px;
  color: #121517 !important;
}

/* Bloco de Destaque: QR Code de Acesso Obrigatório */
.pass-qrcode-container {
  background: #FFFFFF;
  border: 2px solid var(--gold-frame);
  border-radius: 10px;
  padding: 16px 14px;
  margin: 0 auto 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pass-badge-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red-kianda);
  background: #FFF0F0;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid rgba(227, 27, 35, 0.25);
  text-transform: uppercase;
}

.qrcode-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px auto 12px;
}

.conf-qrcode-render canvas {
  border: 6px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  display: block;
}

.pass-instruction {
  font-family: var(--font-sans-luxury);
  font-size: 11px;
  font-weight: 700;
  color: #121517;
  line-height: 1.45;
  max-width: 320px;
  margin: 0 auto;
}

.conf-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.conf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 0;
  border-bottom: 1px solid #E5E9EC;
}

.conf-row span {
  color: #212529;
  font-weight: 700;
  text-transform: uppercase;
}

.conf-row strong {
  color: #121517;
  text-align: right;
  font-weight: 700;
}

.conf-loc-link {
  color: #121517 !important;
  text-decoration: none !important;
}

.text-green { color: #1E7E34 !important; font-weight: 700; }
.text-red { color: var(--red-kianda) !important; font-weight: 700; }

.conf-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
  border-radius: 6px;
}

.download-pass-btn {
  background: linear-gradient(135deg, #111417 0%, #1E2328 100%);
  color: #FFFFFF;
  border: 1.5px solid var(--gold-frame);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}

.download-pass-btn:hover {
  background: #252C33;
  border-color: var(--gold-bright);
}

.primary-btn {
  background: var(--gold-frame);
  color: #121517;
  font-weight: 700;
}

.primary-btn:hover {
  background: #d1b168;
}

.secondary-btn {
  background: #25D366;
  color: #ffffff;
}

.secondary-btn:hover {
  background: #20bd5a;
}

.text-btn {
  background: transparent;
  color: #121517;
  font-weight: 700;
  border: 1.5px dashed #495057;
}

.text-btn:hover {
  color: #121517;
  border-color: #121517;
}

.conf-cobrand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.small-cobrand-logo {
  height: 16px;
  width: auto;
  opacity: 0.8;
}

.cobrand-dot {
  color: var(--gold-bright);
  font-size: 10px;
}

/* Modals System (Auth PIN & Back-Office) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 16, 18, 0.92);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}

.modal-card {
  background: #FFFFFF url('assets/invitation_paper_bg.png') repeat;
  border: 2px solid var(--gold-frame);
  width: 100%;
  max-width: 700px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.auth-card {
  max-width: 400px;
}

.auth-desc {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #16191C;
  font-weight: 600;
  margin-bottom: 18px;
}

.auth-actions {
  margin-top: 10px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #DFE3E8;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.modal-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-kianda);
  font-weight: 700;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #121517;
}

.modal-close {
  background: transparent;
  border: none;
  color: #6C757D;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--red-kianda);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.stat-box {
  background: #FFFFFF;
  border: 1.5px solid #DFE3E8;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  display: block;
  color: #121517;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  color: #121517;
  font-weight: 800;
}

.stat-green .stat-num { color: #1E7E34; }
.stat-red .stat-num { color: var(--red-kianda); }

.admin-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-controls select {
  background: #FFFFFF;
  border: 1.5px solid #DFE3E8;
  color: #121517;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px;
  border-radius: 4px;
}

.table-container {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 320px;
  border: 1px solid #DFE3E8;
  border-radius: 4px;
  background: #FFFFFF;
}

.rsvp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: left;
}

.rsvp-table th {
  background: #F8F9FA;
  padding: 10px 8px;
  color: #121517;
  border-bottom: 1.5px solid var(--gold-frame);
  position: sticky;
  top: 0;
  font-weight: 700;
}

.rsvp-table td {
  padding: 8px;
  border-bottom: 1px solid #E9ECEF;
  color: #212529;
}

.rsvp-table tr:hover td {
  background: #FFF5F5;
}

/* Official Footer Section */
.official-footer {
  padding: 36px 24px 42px;
  text-align: center;
  border-top: 1.5px solid var(--gold-frame);
  position: relative;
  z-index: 4;
  background: #111417;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand-lockup {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.footer-mini-logo {
  height: 32px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.footer-title {
  font-family: var(--font-sans-luxury);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.footer-sub {
  font-family: var(--font-sans-luxury);
  font-size: 10px;
  color: #9AA5B1;
  letter-spacing: 0.06em;
}

.footer-divider {
  width: 50px;
  height: 1px;
  background: var(--gold-frame);
  opacity: 0.5;
  margin: 4px 0;
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: #6C757D;
  text-transform: uppercase;
}

.footer-powered {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C96A0;
}

.footer-powered strong {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.14em;
}

/* Utility Helpers */
.hidden {
  display: none !important;
}

/* Mobile Responsiveness & Layout Adaptations */
@media (max-width: 580px) {
  .hero,
  .hero-frontpage,
  .hero-direct { padding: 20px 14px 0; }
  .official-lockup-3anos { max-width: 290px; margin: 4px 0 14px; }
  .guest-nominal-box { padding: 10px 14px; margin-bottom: 14px; }
  .guest-name-display { font-size: 19px; }
  .cta-btn-primary { font-size: 12px; padding: 14px 18px; gap: 8px; }
  .cta-subtext { font-size: 9.5px; }
  .event-details-card { padding: 16px 16px; gap: 12px; margin-bottom: 18px; }
  .detail-value { font-size: 14px; }
  .detail-sub { font-size: 10.5px; }
  .detail-gps-link { font-size: 9.5px; padding: 5px 12px; }
  .official-quote-banner { font-size: 11px; padding: 12px 10px; width: calc(100% + 28px); margin: 0 -14px 0; }
  .masthead { padding: 12px 14px; }
  .official-logo { max-width: 105px; margin: 0 auto; }
  .field-grid { grid-template-columns: 1fr; gap: 14px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .award-card { padding: 14px 6px; }
  .award-brand-icon-wrap { width: 54px; height: 54px; }
  .award-cat { font-size: 7.5px; }
  .award-winner { font-size: 11.5px; }
  .credential-section, .form-section, .countdown-section, .editorial-history, .backdrop-section, .awards-section { padding-left: 12px; padding-right: 12px; }
  .credential { padding: 20px 16px; }
  .flip { width: 44px; height: 52px; }
  .flip .digit { font-size: 22px; }
  .admin-controls { flex-direction: column; }
}

@media (max-width: 380px) {
  .hero,
  .hero-frontpage,
  .hero-direct { padding: 16px 10px 0; }
  .official-lockup-3anos { max-width: 250px; }
  .guest-nominal-box { padding: 8px 10px; }
  .guest-name-display { font-size: 17px; }
  .cta-btn-primary { font-size: 11px; padding: 12px 14px; letter-spacing: 0.06em; }
  .event-details-card { padding: 14px 12px; gap: 10px; }
  .detail-value { font-size: 13px; }
  .detail-sub { font-size: 10px; }
  .detail-gps-link { font-size: 9px; padding: 4px 10px; }
  .flip { width: 38px; height: 46px; }
  .flip .digit { font-size: 19px; }
  .countdown { gap: 6px; }
  .awards-grid { gap: 6px; }
  .award-brand-icon-wrap { width: 46px; height: 46px; }
  .award-winner { font-size: 10.5px; }
  .official-quote-banner { font-size: 9.5px; padding: 10px 6px; }
}
