/* Container Geral */
body .wnch-container {
    font-family: 'Arial', sans-serif;
    padding: 25px;
    max-width: 650px;
    margin: 30px auto;
    background: none;
    box-shadow: none;
    border: none;
}

/* Títulos */
body .wnch-container h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

body .wnch-container p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* Nome completo destacado */
body .wnch-name-display {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #00bf63;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Formulário */
body .wnch-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #444;
}

body .wnch-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

body .wnch-form input:focus {
    border-color: #00bf63;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 191, 99, 0.5);
}

/* Botão */
body .wnch-form button {
    background: #00bf63;
    color: #fff;
    padding: 12px 25px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

body .wnch-form button:hover {
    background: #009e53;
    transform: scale(1.05);
}

body .wnch-form button:active {
    transform: scale(1);
}

/* Mensagens de Sucesso e Erro */
body .wnch-form .error {
    color: #d9534f;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
}

body .wnch-form .success {
    color: #5cb85c;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

/* Overlay do Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    display: none; /* Escondido por padrão */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Conteúdo do Popup */
.popup-content {
    background: #00bf63; /* Fundo verde */
    color: #ffffff; /* Texto branco */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%; /* Para responsividade */
}

/* Título do Popup */
.popup-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Texto do Popup */
.popup-content p {
    font-size: 18px;
}
