body {
    font-family: 'Manrope', sans-serif !important;
    margin: 0;
    padding: 0;
}
p{
    font-size: 14px;
}
h1{
    font-size: 29px !important;
    color: #013183 !important;
    font-weight: 800 !important;
}
h2{
    font-size: 25px !important;
    font-weight: 800 !important;
    color: #013183 !important;
}
h3{
    font-size: 23px !important;
}
header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    max-width: 134px;
    margin: auto;
    display: block;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    /* position: fixed; */
    bottom: 0;
    width: 100%;
}

.banner {
    background: #013183;
}

.box {
    background: linear-gradient(45deg, black, #013183);
    padding: 20px 27px;
    color: #fff;
    height: 304px;
    border-radius: 8px;
    max-height: 350px;
}

a.btn {
    background: #fff;
    border: 0;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

a.btn:hover{
    transition: 2.5s;
}

.banner-mobile{
    display: none;
}

/* Media queries para dispositivos mÃ³veis */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .banner-mobile{
        display: block;
    }

    .banner-mobile img{
        width: 100%;
    }

    h2{
        margin-top: 1vh !important;
    }
    .banner{
        display: none;
    }
    .box{
        margin-top: 1vh;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
