body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

header {
    display:flex;
    justify-content: center;
    padding: 20px;
}

.container-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.square {
    width: 150px;
    height: 150px;
    border: #fff 8px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;
    background-color: transparent;
}

.square:hover {
    border-color: #cf0d44;
}

.text-logo {
    color: #fff;
    font-size: 6vw;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.container {
    background-color: #292929;
    padding: 20px;
    margin: 20px 0 50px 0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h1 {
    font-size: 24px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
}

input[type="text"], input[type="email"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical;
}

.help {
    height: 100px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    font-size: x-large;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

/* Estilos para o botão de fechar */
.popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .square {
        width: 50px;
        height: 50px;
    }
}