 :root{
      font-family: 'Segoe UI', Roboto, Arial, sans-serif;
      --laranja: #f58220;
      --branco: #ffffff;
      --fundo: #1c1c1c;
      --verde: #4CAF50;
      --vermelho: #FF4136;
    }
    body {
      margin: 0;
      padding: 20px;
      background: var(--fundo);
      color: var(--branco);
    }
    header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
      text-align: center;
    }
    h1 {
      margin: 0;
      font-size: 2.2rem;
      color: var(--laranja);
      text-transform: uppercase;
      text-shadow: 2px 2px 8px #000;
      line-height: 1.2;
    }
    
    /* HEADER COMPACTO */
    .header-compact {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .header-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .header-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    
    .header-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }
    
    .countdown-compact {
      font-weight: 700;
      background: linear-gradient(90deg, var(--laranja), #ffb74d);
      color: var(--branco);
      border-radius: 12px;
      padding: 12px 20px;
      font-size: 1.4rem;
      box-shadow: 0 0 15px #ffb74d;
      text-align: center;
      min-width: 180px;
    }
    
    .time-detail-compact {
      font-size: 1rem;
      color: #ccc;
    }
    
    .progress-compact {
      font-size: 1.1rem;
      color: var(--laranja);
      font-weight: 600;
    }
    
    .last-update-compact {
      font-size: 0.8rem;
      color: #888;
    }
    
    /* BOTÕES COMPACTOS */
    .buttons-compact {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .compact-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    
    .atas-btn-compact {
      background: linear-gradient(90deg, #2c3e50, #4a6491);
      color: white;
    }
    
    .facebook-btn-compact {
      background: linear-gradient(135deg, #1877F2, #0D5FBF);
      color: white;
    }
    
    .compact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .compact-btn svg {
      width: 16px;
      height: 16px;
    }
    
    /* SEÇÃO DE PARTILHA COMPACTA */
    .share-section-compact {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0;
    }
    
    .share-label {
      font-size: 0.9rem;
      color: #ccc;
      font-weight: 600;
    }
    
    .share-buttons-compact {
      display: flex;
      gap: 6px;
    }
    
    .share-btn-compact {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      color: white;
    }
    
    .share-btn-compact:hover {
      transform: translateY(-2px);
    }
    
    .whatsapp-compact { background: #25D366; }
    .email-compact { background: #EA4335; }
    .facebook-compact { background: #1877F2; }
    .twitter-compact { background: #1DA1F2; }
    .linkedin-compact { background: #0A66C2; }

    /* RESTANTE DO CSS */
    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .card {
      background: #2a2a2a;
      padding: 20px 40px 20px 80px;
      border-left: 6px solid var(--laranja);
      border-radius: 8px;
      position: relative;
    }
    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    h2 {
      margin: 0;
      font-size: 1.8rem;
      color: var(--laranja);
    }
    .section-progress {
      font-size: 1.2rem;
      color: #ccc;
      background: rgba(0, 0, 0, 0.3);
      padding: 5px 10px;
      border-radius: 4px;
    }
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    li {
      padding: 12px 0 12px 40px;
      font-size: 1.5rem;
      border-bottom: 1px solid #444;
      position: relative;
    }
    li::before {
      content: 'X';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--vermelho);
      font-weight: bold;
      font-size: 2rem;
    }
    li.completed::before {
      content: '✓';
      color: var(--verde);
    }
    li.completed {
      color: var(--verde);
    }
	
	.evento{
		font-size: 12px;
		line-height: 14px;
		font-style: italic;
	}
    footer {
      margin-top: 40px;
      text-align: center;
      font-size: 0.9rem;
      color: #aaa;
    }
    form {
      max-width: 600px;
      margin: 40px auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
      background: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
    }
    form h2 {
      margin-bottom: 0;
    }
    form p {
      font-size: 0.9rem;
      color: #ccc;
      margin: 0 0 10px 0;
    }
    input, textarea, button {
      padding: 10px;
      font-size: 1rem;
      border-radius: 6px;
      border: none;
    }
    input, textarea {
      width: 100%;
    }
    button {
      background: var(--laranja);
      color: var(--branco);
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    button:hover {
      background: #e67300;
    }
    .form-message {
      padding: 10px;
      border-radius: 6px;
      text-align: center;
      display: none;
    }
    .success {
      background-color: var(--verde);
      color: white;
    }
    .error {
      background-color: var(--vermelho);
      color: white;
    }
    .disclaimer {
      margin-top: 10px;
      font-size: 0.9rem;
      color: #ccc;
      text-align: center;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .disclaimer p {
      margin: 0;
      padding: 8px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      border-left: 3px solid var(--laranja);
    }

    /* RESPONSIVIDADE */
    @media (max-width: 768px) {
      .header-compact {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
      }
      
      .header-left, .header-center, .header-right {
        align-items: center;
      }
      
      h1 {
        font-size: 1.8rem;
      }
      
      .countdown-compact {
        font-size: 1.2rem;
        padding: 10px 16px;
      }
      
      .buttons-compact {
        justify-content: center;
      }
    }