@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    display: flex;
    justify-content: center; /* centraliza horizontal */
    align-items: center;     /* centraliza vertical (opcional) */
    min-height: 100vh;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    background-color: black;
    color: white;
}

.mascara{
     display: flex;
    flex-direction: column;
}

a{
  color: black;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-family: Poppins,sans-serif;
}

.align {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    text-align: center;
}

h1{
    font-size: 25px;
   font-family: "Roboto", sans-serif;
}

.fonte2{
    padding-top: 10px;
    font-size: 12px;
}

button{
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    border-radius: 30px;
    width: 200px;
    box-shadow: 0 0 20px 20px rgba(0, 106, 255, 0.145);
    animation: pulseShadow 1.5s infinite ease-in-out;
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 20px 20px rgba(0, 106, 255, 0.145);
    }
    50% {
        box-shadow: 0 0 23px 23px rgba(0, 106, 255, 0.18); /* leve aumento */
    }
    100% {
        box-shadow: 0 0 20px 20px rgba(0, 106, 255, 0.145);
    }
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

.popup-content button {
    padding: 12px;
    width: 100%;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}
