input[type="text"], input[type="tel"], select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: none;
}

/* Estilo do cabeçalho */
.header {
    background-color: #009de1;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 24px;
}

.logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.content {
    height: 90vh;
    padding: 50px;
    text-align: center;
    align-content: center;
}

.content img {
    max-width: 400px;
}

.content h1 {
    font-size: 60px;
    margin: 0;
    text-transform: uppercase;
}

.content h2 {
    font-size: 25px;
    padding-bottom: 40px;
}

.content p {
    font-size: 18px;
}

.content ul {
    margin: 0 auto;
    text-align: left; 
    list-style-type: disc;
    list-style-position: inside;
    max-width: 400px;
    padding: 10px;
    font-size: 18px;
}

.content li {
    padding-bottom: 10px;
}

.content ul li {
    color: #009de1; /* Cor dos marcadores */
}

.content ul li a {
    color: black; /* Links na cor preta */
    text-decoration: none; /* Remove o sublinhado dos links */
}

.pagina-erro {
    color: black;
    text-align: center;
    font-size: 1.5em;
}

/* Início do rodapé */
.rodape, .politica {
    background-color: #009de1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rodape img {
    width: 150px;
    margin: 20px;
}

.rodape a, .rodape p {
    color: white;
    margin: 20px;
}

.politica a {
    color: white;
    margin-bottom: 25px;
}

/* Para telas maiores (tablet e desktop) */
@media (min-width: 768px) {
    .logo {
        max-width: 200px; /* Aumentar o tamanho da logo */
        margin-bottom: 0; /* Remover a margem extra */
    }

    .content ul li a:hover {
        color: #009de1; /* Hover azul para desktops */
    }

    .rodape {
        flex-direction: row;
        justify-content:space-between;
        padding: 10px 100px;
        text-align: center;
    }

    .rodape img {
        width: 150px;
        margin: 20px;
    }
    
    .rodape p {
        color: white;
        margin: 20px;
    }
}
