/* ===========================
   VARIÁVEIS DE TEMA
   =========================== */

:root {
  /* Modo Claro - Cores Festivas */
  --bg-primary: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-alt: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
  
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  
  --accent-primary: #f59e0b;
  --accent-secondary: #10b981;
  --accent-tertiary: #3b82f6;
  --accent-pink: #ec4899;
  
  --border-color: rgba(251, 191, 36, 0.2);
  --shadow-sm: 0 2px 8px rgba(245, 158, 11, 0.1);
  --shadow-md: 0 4px 16px rgba(245, 158, 11, 0.15);
  --shadow-lg: 0 8px 32px rgba(245, 158, 11, 0.2);
  
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  
  /* Gradientes festivos */
  --gradient-festive: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ec4899 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

[data-theme="dark"] {
  /* Modo Escuro - Cores Festivas Neon */
  --bg-primary: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
  --bg-secondary: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.95);
  --bg-card-alt: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --accent-primary: #fbbf24;
  --accent-secondary: #22d3ee;
  --accent-tertiary: #a78bfa;
  --accent-pink: #f472b6;
  
  --border-color: rgba(251, 191, 36, 0.15);
  --shadow-sm: 0 2px 8px rgba(251, 191, 36, 0.1);
  --shadow-md: 0 4px 16px rgba(251, 191, 36, 0.2);
  --shadow-lg: 0 8px 32px rgba(251, 191, 36, 0.3);
  
  --success: #22d3ee;
  --error: #fb7185;
  --warning: #fbbf24;
  
  --gradient-festive: linear-gradient(135deg, #fbbf24 0%, #f472b6 50%, #a78bfa 100%);
  --gradient-success: linear-gradient(135deg, #22d3ee 0%, #10b981 100%);
  --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* ===========================
   RESET E BASE
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

body.admin-body {
  background: var(--bg-secondary);
}

/* ===========================
   THEME TOGGLE
   =========================== */

.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.theme-toggle-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-toggle-icon {
  transform: rotate(20deg) scale(1.1);
}

.theme-toggle-text {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===========================
   CONTAINER PRINCIPAL
   =========================== */

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-festive);
}

.logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.logo-main {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--accent-primary);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  transition: transform 0.3s ease;
}

.logo-main:hover {
  transform: scale(1.05) rotate(5deg);
}

.logo-wrap.small .logo-main {
  width: 80px;
  height: 80px;
}

.header-text {
  text-align: center;
}

.header-text h1 {
  font-size: 2.5rem;
  background: var(--gradient-festive);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 800;
}

.header-text h2 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 600;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===========================
   COUNTDOWN
   =========================== */

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--gradient-primary);
  border-radius: 16px;
  padding: 16px 24px;
  min-width: 100px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-4px) scale(1.05);
}

.countdown-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.countdown-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   NAVEGAÇÃO
   =========================== */

.top-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.top-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.top-nav a:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.admin-link {
  background: var(--gradient-festive) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

/* ===========================
   CARDS
   =========================== */

.card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-primary);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: var(--gradient-festive);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ===========================
   STATUS BAR
   =========================== */

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card-alt);
  border-radius: 16px;
  margin-bottom: 24px;
  border: 2px solid var(--border-color);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 12px;
}

.status-bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: var(--progress, 0%);
  background: var(--gradient-success);
  transition: width 0.5s ease;
}

.status-bar span {
  font-size: 1.1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-bar span::before {
  content: '🎯';
  font-size: 1.3rem;
}

.status-bar span:last-child::before {
  content: '💰';
}

/* ===========================
   FORM
   =========================== */

.participant-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.participant-form input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 24px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.participant-form input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.numbers-instruction {
  background: var(--bg-card-alt);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-primary);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.numbers-instruction span {
  color: var(--accent-primary);
  font-weight: 700;
}

/* ===========================
   GRID DE NÚMEROS
   =========================== */

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.number-btn {
  aspect-ratio: 1;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.number-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0.2;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.number-btn:hover::before {
  width: 100%;
  height: 100%;
}

.number-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.number-btn.number-free {
  background: var(--gradient-success);
  color: #ffffff;
  border-color: var(--success);
}

.number-btn.number-selected {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.number-btn.number-pending {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: rgba(255, 255, 255, 0.7);
  border-color: var(--warning);
  cursor: not-allowed;
  opacity: 0.7;
}

.number-btn.number-paid {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: rgba(255, 255, 255, 0.5);
  border-color: #64748b;
  cursor: not-allowed;
  opacity: 0.6;
}

.number-btn:disabled {
  cursor: not-allowed;
}

/* ===========================
   INFO SELECIONADOS
   =========================== */

.selected-info {
  background: var(--bg-card-alt);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  text-align: center;
  border: 2px dashed var(--border-color);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected-info span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===========================
   BOTÕES
   =========================== */

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.primary-btn {
  background: var(--gradient-festive);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.primary-btn:active {
  transform: translateY(-1px);
}

.small-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.small-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
}

/* ===========================
   MENSAGENS
   =========================== */

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   PIX (sem QR Code)
   =========================== */

.pix-card {
  background: var(--bg-card-alt);
}

.pix-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pix-info {
  text-align: center;
}

.pix-info p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.pix-info strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

#pix-key-text {
  display: block;
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 16px 0;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
  user-select: all;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#pix-key-text:hover {
  transform: scale(1.02);
}

#pix-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.pix-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 20px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--accent-tertiary);
}

/* ===========================
   INFO LIST
   =========================== */

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--bg-card-alt);
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.info-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.info-list li strong {
  color: var(--accent-primary);
  font-weight: 700;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 48px;
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

/* ===========================
   CONFETTI
   =========================== */

#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  top: -10px;
  opacity: 0;
  animation: confetti-fall 1s ease-out forwards;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ===========================
   ADMIN
   =========================== */

.admin-header {
  background: var(--bg-card);
}

.admin-login-card {
  max-width: 500px;
  margin: 100px auto;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-form input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
}

.admin-login-form input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.config-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.config-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
}

.config-field input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.dash-item {
  background: var(--bg-card-alt);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: transform 0.3s ease;
}

.dash-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dash-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-festive);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.participants-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.legend {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.free {
  background: var(--success);
}

.legend-dot.pending {
  background: var(--warning);
}

.legend-dot.paid {
  background: #64748b;
}

.table-wrapper {
  overflow-x: auto;
}

.participants-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.participants-table thead {
  background: var(--bg-card-alt);
}

.participants-table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
}

.participants-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.participants-table tbody tr {
  transition: background 0.2s ease;
}

.participants-table tbody tr:hover {
  background: var(--bg-card-alt);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-pending {
  background: rgba(251, 191, 36, 0.2);
  color: var(--warning);
}

.badge-paid {
  background: rgba(34, 211, 238, 0.2);
  color: var(--success);
}

.badge-cancelled {
  background: rgba(239, 68, 68, 0.2);
  color: var(--error);
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .header-text h1 {
    font-size: 2rem;
  }
  
  .header-text h2 {
    font-size: 1.1rem;
  }
  
  .countdown-timer {
    gap: 12px;
  }
  
  .countdown-item {
    padding: 12px 16px;
    min-width: 80px;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
  }
  
  .theme-toggle {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
  }
  
  .theme-toggle-text {
    display: none;
  }
  
  .card {
    padding: 20px;
  }
  
  .status-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 12px;
  }
  
  .site-header {
    padding: 20px;
  }
  
  .logo-main {
    width: 100px;
    height: 100px;
  }
  
  .header-text h1 {
    font-size: 1.6rem;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
  }
  
  .number-btn {
    font-size: 1rem;
  }
}
/* ============================================
   TELA DE BLOQUEIO DA RIFA
   ============================================ */

.bloqueio-rifa {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: none;
  justify-content: center;
  align-items: center;
  animation: bloqueioFadeIn 0.6s ease;
}

@keyframes bloqueioFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bloqueio-content {
  max-width: 500px;
  width: 90%;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(251, 191, 36, 0.3);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.bloqueio-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: balancear 2s ease-in-out infinite;
}

@keyframes balancear {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.bloqueio-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: block;
  border: 4px solid #fbbf24;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
}

.bloqueio-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.bloqueio-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 500;
}

.bloqueio-message {
  margin-bottom: 32px;
}

.bloqueio-message p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0;
}

.bloqueio-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.timer-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulsar 1.5s ease-in-out infinite;
}

.timer-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.timer-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulsar {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.bloqueio-info {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bloqueio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
  .bloqueio-icon {
    font-size: 60px;
  }
  
  .bloqueio-logo {
    width: 120px;
    height: 120px;
  }
  
  .bloqueio-title {
    font-size: 36px;
  }
  
  .bloqueio-subtitle {
    font-size: 18px;
  }
  
  .bloqueio-content {
    padding: 32px 24px;
  }
}

/* Banner de bloqueio de participações */
.lock-banner {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}