body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      background: linear-gradient(135deg, #e8f5e9, #f5f5f5);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      flex-direction: column;
    }

    .container {
      background: white;
      padding: 25px;
      border-radius: 12px;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    h1 {
      color: #2e7d32;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .sub {
      font-size: 16px;
      color: #444;
      margin-bottom: 10px;
    }

    .destaque {
      font-weight: bold;
      color: #2e7d32;
      margin-top: 10px;
    }

    .prova {
      background: #f1f8e9;
      padding: 12px;
      border-radius: 8px;
      margin-top: 15px;
      font-size: 14px;
    }

    .alerta {
      color: #d32f2f;
      font-weight: bold;
      margin-top: 15px;
    }

    .botoes {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .cta {
      padding: 16px;
      color: white;
      font-size: 18px;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      flex: 1;
      min-width: 130px;
      text-align: center;
      transition: transform 0.2s ease;
    }

    .cta:hover {
      transform: scale(1.05);
    }

    .cta-whatsapp {
      background: linear-gradient(135deg, #25D366, #1ebe5d);
    }

    .cta-ligar {
      background: linear-gradient(135deg, #4caf50, #388e3c);
      font-size: 16px;
    }

    .cta-insta {
      background: #e1306c;
      font-size: 16px;
      padding: 14px;
      margin-top: 30px;
      display: inline-block;
    }

    #contador {
      margin-top: 15px;
      font-weight: bold;
      color: #ff6f00;
    }

    .mini {
      font-size: 13px;
      color: #777;
      margin-top: 12px;
    }

    .rodape {
      margin-top: 20px;
      font-size: 12px;
      color: #999;
    }

    .rodape-gestao {
      margin-top: 8px;
      font-size: 13px;
      color: #555;
      font-weight: bold;
    }

    @media (max-width: 480px) {
      .cta {
        font-size: 16px;
        padding: 14px;
        min-width: 100px;
      }
      .cta-ligar {
        font-size: 14px;
        padding: 12px;
      }
      .cta-insta {
        font-size: 14px;
        padding: 12px;
      }
      .botoes {
        flex-direction: column;
        gap: 12px;
      }
    }

    @media (min-width: 768px) {
      .container {
        max-width: 500px;
        padding: 35px;
      }

      h1 {
        font-size: 28px;
      }

      .sub {
        font-size: 18px;
      }

      .cta {
        font-size: 20px;
      }

      .cta-ligar {
        font-size: 18px;
      }

      .cta-insta {
        font-size: 16px;
      }