@charset "UTF-8";

/*CSS Document */
html,
html * {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    margin-left: auto;
    margin-right: auto;
    max-width: 1025px;
    background-color: lightcyan;
}

.imagem img {
    width: 100%;
    height: auto;
}

.rodape img {
    width: 100%;
    height: auto;
}

/*Menu*/
ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #00435E;
}

ul.topnav li {
    float: left;
}

ul.topnav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.topnav li a:hover:not(.active) {
    background-color: #04A1E3;
}

ul.topnav li a.active {
    background-color: #4CAF50;
}

topnav a.active:hover {
    background-color: #015604;
}

/*Fim de menu*/
.responsive {
    display: flex;
    justify-content: center;
    float: left;
    width: 24.99999%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.gallery {
    padding-right: 4%;
    padding-left: 4%;
}

.gallery img {
    border: 2px solid #0093FF;
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;

}

p {
    margin-top: -15px;
    text-align: justify;
    font-style: italic;
    text-indent: 10px;
    padding-top: 3%;
    padding-left: 13%;
    padding-right: 5%;
}
p.lvsaiu{
    text-align: right;
    font-style: normal;
}

#linha {
    border-bottom: 2px solid #00a3ff;
}


@media screen and (max-width: 650px) {
    .responsive {
        width: 49.99999%;
    }
    p {
        margin-top: 0%;        
    }
    p.lvsaiu{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 450px) {
    ul.topnav li {
        float: none;
    }

    ul.topnav li a {
        padding: 5px;
    }

    .responsive {
        width: 100%;
    }
    p {
        margin-top: 0%;        
    }
    p.lvsaiu{
        margin-bottom: 10px;
        font-size: 12px;
    }
}