/* Estilo global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: linear-gradient(90deg, #992c90c7, #9c57a791);
    color: linear-gradient(90deg, #992c90c7, #9c57a791);
    line-height: 1.6;
    max-width: 100%;
    font-weight: bold; /* Deixa os rótulos em negrito */
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(90deg, #992c90c7, #9c57a791);
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
}

header .logo img {
    width: 80%;
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

header nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #4b0b55;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #992c90;
}

/* Formulário de Cadastro */
form {
    max-width: 800px;
    margin: 40px auto;
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form h2 {
    text-align: center;
    color: #9c57a7;
    margin-bottom: 20px;
}

form input,
form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #4b0b55;
    font-size: 1rem;
}

form input[type="submit"] {
    background-color: #9c57a7;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #992c90;
}
.cadastro-form h2 {
    text-align: center; /* Centraliza o texto horizontalmente */
    margin: 20px auto;  /* Ajusta o espaçamento ao redor */
    font-size: 35px;    /* Ajusta o tamanho da fonte, se necessário */
    font-weight: bold;  /* Dá destaque ao texto */
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    
    header .logo img {
        margin-left: 9%;
      }
    header nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    header nav ul li {
        margin: 10px 0;
    }

    form {
        padding: 20px;
        width: 90%;
    }

    form input,
    form select {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    form input,
    form select {
        font-size: 1rem;
    }

    form h2 {
        font-size: 1.8rem;
    }
}

/* Rodapé */
footer {
    background: linear-gradient(to right, #992c90c7, #9c57a791);
    color: #4b0b55;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    display: inline-block;
    margin: 0 10px;
}

footer ul li a {
    color: #4b0b55;
    text-decoration: none;
    font-size: 16px;
}

footer ul li a:hover {
    color: #992c90;
}

footer .social-icons {
    margin-top: 20px;
}

footer .social-icons a {
    color: #4b0b55;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #992c90;
}


button[type="submit"] {
    background-color: #9c57a7;
    color: white;
    padding: 12px 30px; /* Aumentei a largura para dar um pouco mais de espaçamento */
    border: none;
    border-radius: 30px; /* Borda bem arredondada */
    cursor: pointer;
    font-size: 1rem;
    display: block; /* Garante que o botão seja um bloco */
    margin: 0 auto; /* Centraliza o botão */
    text-align: center; /* Alinha o texto no centro do botão */
    width: auto; /* Ajusta a largura do botão conforme o conteúdo */
}

button[type="submit"]:hover {
    background-color: #992c90;
}

/* Responsividade */
@media (max-width: 768px) { 

    header {
        flex-direction: column;
        align-items: center;
    }

    form {
        width: 90%;
        padding: 20px;
    }
}

/* Estilo do botão de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.whatsapp-button a {
    color: white;
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20b45c;
    cursor: pointer;
}

/* Esconder o botão de hamburguer em telas maiores */
@media (min-width: 769px) {
input:focus, button:focus {
    outline: 2px solid #9c57a7;
    outline-offset: 2px;
}
.menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 30px;
    color: #4b0b55;
    margin-top: 10px;
}
