/**
 * Fé no Bicho - Critical Inline CSS
 * Extracted from index.ejs for better maintainability
 * Contains above-the-fold critical styles
 */

/* ========================================
   TOKENS NÃO-CORES (cores em colors.css)
   ======================================== */
:root {
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.8125rem;
  --font-size-sm: 0.9375rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.1875rem;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --transition-fast: 150ms ease;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-toast: 800;
  --header-height: 72px;
  --container-max: 1200px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  overflow-x: clip;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* Prevent text overflow on mobile */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* ========================================
   SKIP LINK (Accessibility)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus {
  top: var(--spacing-sm);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ========================================
   ICONS
   ======================================== */
.icon,
i[data-lucide] {
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  flex-shrink: 0;
  display: inline-block;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--md {
  width: 24px;
  height: 24px;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

.icon--xl {
  width: 48px;
  height: 48px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 158, 27, .4);
}

.btn--outline {
  background: #fff;
  color: #0d5c0d;
  border: 2px solid #0d5c0d;
}

.btn--outline:hover {
  background: #0d5c0d;
  color: #fff;
}

.btn--sm {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: .875rem;
}

.btn--lg {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

@media (max-width: 575px) {
  .btn--lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .text-center .btn--lg,
  .section .btn--lg {
    width: 100%;
    max-width: 320px;
  }
}

.btn--full {
  width: 100%;
}

/* ========================================
   WHATSAPP BAR
   ======================================== */
.whatsapp-bar {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 10px var(--spacing-md);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .whatsapp-bar__link {
    font-size: 0.75rem;
    gap: 6px;
  }
}

.whatsapp-bar__link .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.whatsapp-bar__link strong {
  font-weight: 700;
  text-decoration: underline;
  color: #FFD700;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  min-height: calc(80vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/home/bg-home.png), linear-gradient(180deg, #E8F5E9 0%, var(--color-bg-primary) 100%) no-repeat;
  background-size: cover;
  filter: hue-rotate(260deg);
  z-index: -1;
}

.hero--with-bar {
  padding-top: var(--spacing-2xl);
}

@media (max-width: 575px) {
  .hero {
    min-height: auto;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }

  .hero--with-bar {
    padding-top: var(--spacing-lg);
  }
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 992px) {
  .hero__wrapper {
    grid-template-columns: 1fr 400px;
  }
}

.hero__content {
  text-align: center;
  padding: 0;
}

@media (min-width: 992px) {
  .hero__content {
    text-align: left;
    max-width: none;
  }
}

.hero__title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--spacing-md);
}

@media (max-width: 575px) {
  .hero__title {
    font-size: 1.375rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }
}

.hero__keyword {
  color: #4ADE80;
  display: inline;
}

.hero__subtitle {
  font-size: clamp(0.9375rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle strong {
  color: #fff;
}

@media (max-width: 575px) {
  .hero__subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 992px) {
  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
}

@media (min-width: 992px) {
  .hero__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .hero__actions .btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
  }
}

.hero__actions .btn--outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__actions .btn--outline:hover {
  background: #fff;
  color: #0d5c0d;
  border-color: #fff;
}

.hero__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mascot {
  display: flex;
}

.hero__mascot-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero__illustration {
    order: -1;
    margin-bottom: -8px;
  }

  .hero__mascot-img {
    max-width: 180px;
  }
}

@media (max-width: 575px) {
  .hero__mascot-img {
    max-width: 140px;
  }
}

@media (min-width: 992px) {
  .hero__illustration {
    align-items: flex-end;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: var(--spacing-md) 0;
}

@media (min-width: 992px) {
  .trust-badges {
    justify-content: flex-start;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

@media (max-width: 575px) {
  .trust-badges {
    gap: 0;
    padding: 12px 0 0;
    flex-wrap: nowrap;
    justify-content: center;
    border: none;
  }

  .trust-badge {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 10px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    gap: 5px;
    position: relative;
  }

  .trust-badge + .trust-badge::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
  }

  .trust-badge .icon {
    width: 14px;
    height: 14px;
  }

  .trust-badge:last-child {
    display: none;
  }
}

.trust-badge .icon {
  color: #4ADE80;
  width: 18px;
  height: 18px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--spacing-2xl) 0;
}

.section--alt {
  background: var(--color-bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__tag {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: #0d5c0d;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
}

.section__title {
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 575px) {
  .section {
    padding: var(--spacing-xl) 0;
  }

  .section__header {
    margin-bottom: var(--spacing-lg);
  }

  .section__tag {
    font-size: .6875rem;
    padding: 3px var(--spacing-sm);
  }

  .section__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .section__subtitle {
    font-size: .875rem;
  }
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   QUOTATION CARDS
   ======================================== */
.quotation__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

@media (max-width: 991px) {
  .quotation__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (max-width: 575px) {
  .quotation__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .quotation__card {
    padding: var(--spacing-md);
    border-radius: 14px;
  }

  .card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-sm);
    border-radius: 10px;
  }

  .card__icon svg {
    width: 20px;
    height: 20px;
  }

  .card__title {
    font-size: .875rem;
  }

  .card__description {
    font-size: .75rem;
    margin-bottom: var(--spacing-sm);
  }

  .card__multiplier {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
  }

  .card__prize {
    padding: var(--spacing-xs) var(--spacing-sm);
    margin-top: var(--spacing-sm);
  }

  .card__prize-label {
    font-size: .6875rem;
  }

  .card__prize-value {
    font-size: .75rem;
    white-space: nowrap;
  }

  .card__badge {
    font-size: .5625rem;
    padding: 2px 6px;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
  }
}

.quotation__card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8faf8 100%);
  border-radius: 20px;
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 1px solid rgba(27, 158, 27, 0.08);
}

.quotation__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quotation__card:hover::before {
  transform: scaleX(1);
}

.quotation__card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 24px 48px rgba(27, 158, 27, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(27, 158, 27, 0.2);
}

.quotation__card--highlight {
  background: linear-gradient(165deg, #FFFEF5 0%, #FFF8E1 100%);
  border: 2px solid rgba(245, 184, 0, 0.3);
  box-shadow:
    0 4px 24px rgba(245, 184, 0, 0.12),
    0 0 0 4px rgba(245, 184, 0, 0.05);
}

.quotation__card--highlight::before {
  background: var(--gradient-gold);
}

.quotation__card--highlight:hover {
  box-shadow:
    0 24px 48px rgba(245, 184, 0, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 0 0 4px rgba(245, 184, 0, 0.1);
  border-color: rgba(245, 184, 0, 0.5);
}

/* ========================================
   CARD ELEMENTS
   ======================================== */
.card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27, 158, 27, 0.1) 0%, rgba(27, 158, 27, 0.05) 100%);
  border-radius: 16px;
  transition: all .3s ease;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.quotation__card:hover .card__icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(27, 158, 27, 0.3);
}

.quotation__card:hover .card__icon svg {
  color: #fff;
}

.quotation__card--highlight .card__icon {
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.15) 0%, rgba(245, 184, 0, 0.05) 100%);
}

.quotation__card--highlight .card__icon svg {
  color: #D97706;
}

.quotation__card--highlight:hover .card__icon {
  background: var(--gradient-gold);
}

.quotation__card--highlight:hover .card__icon svg {
  color: #1A1A1A;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
  letter-spacing: -0.01em;
}

.card__description {
  font-size: .8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.card__multiplier {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
  transition: transform .3s;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.quotation__card:hover .card__multiplier {
  transform: scale(1.08);
}

.quotation__card--highlight .card__multiplier {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.card__prize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(135deg, rgba(27, 158, 27, 0.08) 0%, rgba(27, 158, 27, 0.03) 100%);
  border-radius: var(--radius-full);
  margin-top: var(--spacing-md);
  transition: all .3s;
}

.card__prize-label {
  font-size: .75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.card__prize-value {
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.quotation__card:hover .card__prize {
  background: var(--gradient-primary);
}

.quotation__card:hover .card__prize-label,
.quotation__card:hover .card__prize-value {
  color: #fff;
}

.quotation__card--highlight .card__prize {
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.12) 0%, rgba(245, 184, 0, 0.05) 100%);
}

.quotation__card--highlight .card__prize-value {
  color: #D97706;
}

.quotation__card--highlight:hover .card__prize {
  background: var(--gradient-gold);
}

.quotation__card--highlight:hover .card__prize-label,
.quotation__card--highlight:hover .card__prize-value {
  color: #1A1A1A;
}

/* Card Badge */
.card__badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--gradient-gold);
  color: #1A1A1A;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(245, 184, 0, 0.3);
}

.card__example {
  font-size: .8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ========================================
   COUNTDOWN
   ======================================== */
.countdown-wrapper {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: linear-gradient(165deg, #ffffff 0%, #f8faf8 100%);
  border-radius: 24px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 158, 27, 0.08);
}

.countdown-wrapper__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.countdown-wrapper__title {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.countdown-wrapper__title svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.countdown-wrapper__subtitle {
  font-size: .875rem;
  color: var(--color-text-muted);
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.countdown__unit {
  position: relative;
  text-align: center;
  min-width: 80px;
}

.countdown__value-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
  border-radius: 16px;
  margin-bottom: var(--spacing-sm);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(27, 158, 27, 0.1);
  overflow: hidden;
  transition: all .3s ease;
}

.countdown__value-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

.countdown__unit:hover .countdown__value-wrapper {
  border-color: rgba(27, 158, 27, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 12px 24px rgba(27, 158, 27, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.countdown__value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown__separator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: var(--spacing-lg);
}

.countdown__separator-dot {
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
  animation: pulse-dots 1s ease-in-out infinite;
}

.countdown__separator-dot:last-child {
  animation-delay: 0.5s;
}

@keyframes pulse-dots {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* Responsive countdown */
@media (max-width: 575px) {
  .countdown-wrapper {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    border-radius: 16px;
  }

  .countdown-wrapper__header {
    margin-bottom: var(--spacing-md);
  }

  .countdown-wrapper__title {
    font-size: .875rem;
  }

  .countdown-wrapper__title svg {
    width: 16px;
    height: 16px;
  }

  .countdown-wrapper__subtitle {
    font-size: .75rem;
  }

  .countdown__unit {
    min-width: 56px;
  }

  .countdown__value-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }

  .countdown__value {
    font-size: 1.5rem;
  }

  .countdown__label {
    font-size: .625rem;
  }

  .countdown__separator-dot {
    width: 5px;
    height: 5px;
  }

  .countdown__separator {
    padding-bottom: var(--spacing-md);
  }

  .countdown {
    gap: 6px;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
[hidden] {
  display: none !important;
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

  .header,
  .skip-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }
}

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.quotation__card--skeleton .card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-md);
  border-radius: 16px;
}

.quotation__card--skeleton .card__title {
  width: 70px;
  height: 18px;
  margin: 0 auto var(--spacing-xs);
}

.quotation__card--skeleton .card__multiplier {
  width: 90px;
  height: 48px;
  margin: 0 auto var(--spacing-sm);
}

.quotation__card--skeleton .card__prize {
  width: 120px;
  height: 36px;
  margin: var(--spacing-md) auto 0;
  border-radius: var(--radius-full);
}

/* Modality Card Skeleton */
.modality-card--skeleton .modality-card__multiplier {
  width: 80px;
  height: 48px;
  margin: 0 auto var(--spacing-sm);
}

.modality-card--skeleton .modality-card__title {
  width: 100px;
  height: 24px;
  margin: 0 auto var(--spacing-sm);
}

.modality-card--skeleton .modality-card__example {
  width: 180px;
  height: 16px;
  margin: 0 auto var(--spacing-md);
}

.modality-card--skeleton .modality-card__prize {
  width: 140px;
  height: 40px;
  margin: 0 auto;
}

/* Schedule Skeleton */
.schedule__item--skeleton .schedule__time {
  display: inline-block;
  width: 40px;
  height: 16px;
}

.schedule__item--skeleton .schedule__name {
  display: inline-block;
  width: 50px;
  height: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
    background: #e0e0e0;
  }
}