* {
    margin: 0;
    padding: 0;
    transition: all 0.3s;
}

html,
body {
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 15px;
    background-color: unset;
}

a,
a:visited,
a:focus,
a:hover {
    color: white;
    text-decoration: none;
}

body {
    background-image: var(--imagem-bg);
    background-size: cover;
    background-position: center center;
    background-color: unset;
}

.logo {
    margin: 20px 0px;
    max-width: 250px;
}

.info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    width: 1200px;
    max-width: 100%;
    margin: auto;
}

@media (max-width: 991px) {
    .info {
        display: block;
    }
}

.info .nome p {
    color: #fff;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .info .nome {
        text-align: center;
    }
}


.contato {
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;

}

@media (max-width: 991px) {
    .contato {
        margin: auto;
        width: 90%;
    }
}


.contato ul {
    list-style: none;
    text-align: center;
}

.contato ul li {
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato ul li img {
    margin-right: 5px;
}

.contato ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all .2 ease-in-out;
}

.contato ul li a:hover {
    opacity: .9;
}

.rodape {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    left: 0;
    opacity: 0.6;
    transition: all .3s ease-in-out;
}

.rodape:hover {
    opacity: 1;
}

.rodape svg {
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.centralizar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
}