@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    padding: 0;
    margin: 0;
    font-family: "Roboto", Helvetica, sans-serif;
}

body {
    background-color: #e7e7e7;
    width: 100%;
}

header, footer {
    margin: auto;
    max-width: 1000px;
}

header {
    margin-bottom: 50px;
    text-align: center;
}

footer {
    margin-top: 50px;
}
.full {
    max-width: 650px;
    width: 100%;
    height: auto;
}

.cabeçalho {
    margin-bottom: 40px;
}

.rodape {
    margin-top: 40px;
}

.text_container {
    max-width: 1000px;
    background: white;

    margin: auto;
    padding: 20px;
}

.text_container {
    text-align: center;
}

.title {
 margin-bottom: 20px;
}

.content {
    padding: 5px;
}

.content p {
    text-align: justify;
}

.text {
    text-align: justify;
}

.btn.btn-voltar {
    height: 30px;
    border-radius: 50px;
    margin: 10px;
    background-color: #ffce00;
}

.fotorama_container {
    transform: translate(-50%, -50%);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.432);
    justify-content: center;
}

.fotorama_content {
    transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
}

.thumbs_container {
    display: ruby-text;
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    text-align: center;
}

.thumb_content {
    width: 200px;
    height: 200px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.thumb_content img{
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.thumb_content img:hover {
    filter: brightness(0.5);
    transition: .5s;
}

.close_button {
    position: fixed;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 25px;;
    cursor: pointer;
}

