


header {
    
    background:  #013104; /* #03284d; */
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    background: #333;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}
a{
    color:  #03284d;
}
.login{
    color:   white;
}
.azul{
    color:  #03284d;
}
a:hover {
    color: rgb(27, 82, 233); /* Muda a cor ao passar o mouse */
  }

section {
    padding: 20px;
    background: white;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.botao-centro{
    text-align: center;
}

footer {
    /* background: #0073e6; */
    background-color:#025306;/*#03284d;*/
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
   /* font-size: 16px;*/
    font-size: 40px;
    color: #25D366;
    background-color: white;
    border: 2px solid blue;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-button:hover {
    background-color: blue;
    color: white;
}

#clientes {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    height: 15vh; /* Define a altura da seção */
    text-align: center; /* Centraliza o texto */
}



.login_a_direita{

    text-align: right;
    color: #f0f0f0;
}


p{

   /* font-weight: bold; */
    /*font-size: 20px; */
}


/* media query */
@media only screen and (min-width: 800px) {
    #content-page {
        padding: 0 15%;
    }
}