@charset "UTF-08";
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Estilizando o cabeçalho */
header {
    background-color: rgb(20, 6, 9);
    padding: 10px 20px;
}
.cab-superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    max-width: 50px;
    max-height: 30px;
}
.menu-toggle {
    display: none;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}
/* Estilizando o menu */
.nav {
    display: flex;
    gap: 20px;
}
.nav ul {
    list-style: none;
    display: flex;
}
.nav li {
    display: inline-block;
}
.nav a {
    text-decoration: none;
    color: black;
}
/* Estilizando as redes sociais */
.redes-sociais {
    display: flex;
    gap: 10px;
}
.logoimg {
    max-width: 30px;
    max-height: 30px;
    border-radius: 25px;
    margin-left: 15px;
}
/* Estilos para mobile */
@media (max-width: 768px) {
    /* Layout para dispositivos móveis */
    .cab-superior {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .logo {
        max-width: 40px; /* Reduz a logo para uma versão menor */
    }
    .menu-toggle {
        display: block; /* Exibe o ícone do menu hambúrguer */
    }
    .nav {
        display: none; /* Inicialmente o menu fica oculto */
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px; /* Posiciona o menu abaixo do cabeçalho */
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .nav ul {
        display: block;
        padding: 20px 0;
    }
    .nav li {
        margin: 10px 0;
    }
    .nav a {
        display: block;
        padding: 10px;
    }
    /* Exibe o menu quando a classe 'active' for adicionada */
    .nav.active {
        display: block;
    }
    .main-title {
        color: white;
        margin-top: 50px;
    }
}

/* Estilos para a tela maior que 768px (desktop e tablet) */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Oculta o menu hambúrguer em telas maiores */
    }
    .nav {
        display: flex; /* Exibe o menu normalmente */
    }
    .redes-sociais {
        margin-left: auto;
    }
    h1.main-title {
        margin-top: 20px;
    }
}
/* Configurações da seção de apresentação */
#apresentacao {
    width: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    align-items: center;
    margin-bottom: 50px;
}
.apresentacao-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: white;
    margin: auto;
    padding: 20px 20px 20px 20px;
}
.apresentacao-texto > h2 {
    text-align: justify;
    font-size: 20px;
    font-weight: bolder;
    margin-bottom: 35px;
}
.apresentacao-texto > a {
    text-decoration: none;
    background-color: rgb(20, 6, 9);
    color: white;
    padding: 10px 10px 10px 10px;
    text-align: center;
}
.apresentacao-texto > a:hover {
    text-align: center;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border: 2px solid black;
    font-weight: bolder;
    padding: 10px 10px 10px 10px;
}
.apresentacao-foto {
    background-image: url('../imagens/foto-eu-sobre-t.jpg');
    background-size: cover;
    background-position: bottom;
    width: 90%;
    height: 450px;
    background-color: white;
    margin: auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    overflow: hidden;
}
.texto {
    width: 90%;
    background-color: white;
    margin: auto;
    color: black;
}
.texto > p {
    text-align: justify;
    margin-top: 20px;
}
/* Configurações da seção de parceiros */
#parceiros {
    width: 95%;
    background-color: white;
    margin: auto;
}
#parceiros > h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}
.service-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.service-btn {
    background-color: rgb(20, 6, 9);
    color: white;
    padding: 15px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
}
.service-btn:focus {
    background-color: rgba(0, 0, 0, 0);
    color: black;
    font-weight: bolder;
    border: 2px solid black;
}
.service-content {
    display: none;
    margin: auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: solid 1px rgba(0, 0, 0, 0.555);
    text-align: justify;
    box-shadow: 0 2px 8px black;
    width: 95%;
    margin-bottom: 50px;
}
.service-content > h3 {
    margin-bottom: 10px;
    text-align: center;    
}
.service-content > p {
    margin-bottom: 20px;
    text-align: justify;
    padding: 0px 5px 0px 5px;
    line-height: 20px;
    font-size: 14px;    
}
.service-content > a {
    display: block;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    color: black;
}
.service-content > a > img {
    margin: 0 auto 10px; 
    display: block; 
}
.service-content.active {
    display: block;
}
/* Configurações da seção de mensagem */
#mensagem {
    background-color: white;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin: 50px 0px 20px 0px;
}
.eu-foto {
    display: none;
    width: 90%;
    height: 650px;
    border: solid 1px black;
    margin: auto;
    background-image: url('../imagens/foto-eu-sobre.jpg');
    background-size: cover;
    background-position: bottom;
}
.slogan {
    width: 90%;
    margin: auto;
}
.slogan > blockquote > p {
    text-align: justify;
    padding: 20px 10px 20px 10px;
    font-size: 16px;
    font-weight: bolder;
}
.slogan > .decima {
    text-align: left;
    padding: 0px 0px 0px 0px;
}
.slogan > .debaixo {
    text-align: right;
    padding: 0px 0px 0px 0px;
} 
/* Configurações da seção de info-contato */  
#contato-info {
    width: 90%;
    height: 350px;
    background-color: white;
    color: black;
    margin: auto;
    text-align: center;
    font-weight: bolder;
    padding: 0px 0px 50px 0px;
}
#contato-info > h2 {
    font-size: 26px;
    margin-bottom: 35px;
}
#contato-info > p {
    color: black;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 50px;
}
#contato-info > a {
    text-decoration: none;
    color: white;
    background-color: rgb(20, 6, 9);
    padding: 10px 20px 10px 20px;
    font-family: Helvetica, Arial, sans-serif;
}
/* Configurações do rodapé */
footer {
    width: 100%;
    background-color: black;
    color: whitesmoke;
    font-family: "Poppins", sans-serif;
}
/* Configurações da seção de cima rodapé */
#cima {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    justify-items: center;
    align-items: left;
    width: 100%;
    margin-bottom: 50px;
}
.modelo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin: 30px 0px 10px 0px;
}
.modelo > h3 {
    display: inline;
    margin: 0px 0px 35px 0px;
}
.modelo > p {
    margin-bottom: 5px;
    font-size: 14px;
}
.rede-social {
    margin-right: 50px;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.redes-sociais > a > img {
    height: 25px;
    border-radius: 25px 25px 25px 25px;
}
.modelo > ul > li {
    list-style-type: none;
    text-align: center;
    margin: 5px;
}
.modelo > ul > li > a {
    text-decoration: none;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}
.modelo > ul > li > a:hover {
    color: red;
}
.modelo > address {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
.modelo > address > h3 {
    margin-bottom: 35px;
}
.modelo > address > p {
    margin-bottom: 5px;
    font-size: 14px;
}
.modelo > address > p > a {
    text-decoration: none;
    color: red;
}
/* Configurações da seçaõ de baixo rodapé */
#baixo {
    width: 100%;
    height: 50px;
    text-align: center;
    padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 768px) {
    /* Configurações Globais*/
    * {
        margin: 0px;
        padding: 0px;
        border: 0px;
        box-sizing: border-box;
    }
    html, body {
        overflow-x: hidden;
        background-color: white;
        font-family: Helvetica, Arial, sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: "Poppins", sans-serif;
    }
    /* Configuração do header */
    header {
        width: 100%;
        padding: 10px 0;
        height: 300px;
        background-color: rgb(20, 6, 9);
    }
    /* Alinhamento dos itens dentro do container de logos e navegação */
    .cab-superior {
        display: flex;
        align-items: center; 
        justify-content: flex-start; 
        margin-bottom: 50px;
        margin-top: 20px; 
    }
    /* Logo individual */
    .logo {
        margin-right: 55px;
        margin-left: 20px;
        height: 50px;
    }
    /* Navegação */
    .nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        margin-right: 50px;
    }
    .nav ul li {
        margin-right: 30px; 
    }
    .nav ul li a {
        text-decoration: none;
        color: white;
    }
    .nav ul li a:hover {
        color: red;
    }
    /* Estilo do título H1 */
    .main-title {
        text-align: left; 
        font-size: 100px; 
        margin-left: 50px; 
        color: white;
    }
    .redes-sociais {
        margin-right: 35px;
    }
    /* Adiciona um estilo para as logos se necessário */
    .logoimg {
        height: 20px;
        border-radius: 25px;
        margin-left: 30px; 
    }
    .logoimg:hover{
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    /* Configurações da seção de apresentação */
    #apresentacao {
        width: 100%;
        height: 620px;
        margin: auto;
        background-color: white;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        align-items: center;
        margin-bottom: 50px;
    }
    .apresentacao-texto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 280px;
        background-color: white;
        padding: 0px 0px 0px 0px;
        margin: -70px 0px 0px 0px;
    }
    .apresentacao-texto > h2 {
        display: block;
        text-align: justify;
        font-size: 18px;
        font-weight: bolder;
        margin: 20px 0px 35px 0px;
        padding: 0px 5px 0px 5px;
    }
    .apresentacao-texto > a {
        text-decoration: none;
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 10px 30px 10px 30px;        
    }
    .apresentacao-texto > a:hover {
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        color: black;
        font-weight: bolder;
        border: 2px solid black;
    }
    .apresentacao-foto {
        background-image: url('../imagens/foto-eu-sobre-t.jpg');
        background-size: cover;
        background-position: bottom;
        width: 100%;
        height: 580px;
        background-color: white;
        margin: -170px 0px 0px 0px;
    }
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        overflow: hidden;
    }
    .texto {
        width: 90%;
        height: 200px;
        background-color: white;
        margin: auto;
        color: black;
    }
    /* Configurações da seção de parceiros */
    #parceiros {
        width: 75%;
        background-color: white;
        margin: auto;
        margin-bottom: 50px;
    }
    #parceiros > h2 {
        text-align: center;
        margin-bottom: 15px;
    }
    .service-section {
        display: flex;
        justify-content: space-between;
        width: 75%;
        margin: auto;
        margin-bottom: 20px;
    }
    .service-btn {
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 15px;
        margin: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 200px;
    }
    .service-btn:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        font-weight: bolder;
        border: 2px solid black;
    }
    .service-btn:hover {
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    .service-content {
        display: none;
        margin: auto;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: solid 1px rgba(0, 0, 0, 0.555);
        text-align: justify;
        box-shadow: 0 2px 8px black;
        width: 75%;
        margin-bottom: 50px;
    }
    .service-content:hover {
        border-color: rgba(0, 0, 0, 0.795);
        box-shadow: 0 6px 10px black;
        border-radius: 5px 5px 5px 5px;
    }
    .service-content > h3 {
        margin-bottom: 10px;
        text-align: center;    
    }
    .service-content > p {
        margin-bottom: 20px;
        text-align: justify;
        padding: 0px 30px 0px 30px;
        line-height: 20px;    
    }
    .service-content > a {
        display: block;
        text-align: center;
        margin: 0 auto;
        text-decoration: none;
        color: black;
    }
    .service-content > a > img {
        margin: 0 auto 10px; 
        display: block; 
    }
    .service-content.active {
        display: block;
    }
    /* Configurações da seção de mensagem */
    #mensagem {
        background-color: white;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin: 50px 0px 50px 0px;
    }
    .eu-foto {
        display: block;
        width: 90%;
        border: solid 1px black;
        margin: auto;
        background-image: url('../imagens/foto-eu-sobre.jpg');
        background-size: cover;
        background-position: bottom;
    }
    .slogan {
        width: 90%;
        margin: auto;
    }
    .slogan > blockquote > p {
        text-align: justify;
        padding: 10px 10px 10px 10px;
        font-size: 16px;
        font-weight: bolder;
    }
    .slogan > .decima {
        text-align: left;
        padding: 0px 0px 0px 0px;
    }
    .slogan > .debaixo {
        text-align: right;
        padding: 0px 0px 0px 0px;
    }
    /* Configurações da seção de contato */   
    #contato-info {
        width: 75%;
        height: 250px;
        background-color: white;
        color: black;
        margin: auto;
        text-align: center;
    }
    #contato-info > h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    #contato-info > p {
        color: black;
        text-align: center;
        margin-bottom: 30px;
    }
    #contato-info > a {
        text-decoration: none;
        color: white;
        background-color: rgb(20, 6, 9);
        padding: 10px 50px 10px 50px;
    }
    #contato-info > a:hover {
        text-decoration: none;
        background-color:rgba(0, 0, 0, 0);
        color: black;
        font-weight: bolder;
        border: solid 1px black;
        padding: 10px 50px 10px 50px;
    }
    /* Configurações do rodapé */
    footer {
        width: 100%;
        background-color: black;
        color: whitesmoke;
        font-family: "Poppins", sans-serif;
    }
    /* Configurações da seção de cima rodapé */
    #cima {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        justify-items: center;
        align-items: left;
        width: 100%;
    }
    .modelo {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        margin-bottom: 10px;
    }
    .modelo > h3 {
        display: inline;
        margin: 20px 0px 35px 0px;
    }
    .rede-social {
        margin-right: 50px;
        width: 25%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .redes-sociais > a > img {
        height: 25px;
        border-radius: 25px 25px 25px 25px;
    }
    .redes-sociais > a > img:hover{
        transform: translate(5px, -1px);
        transition: transform .3s;
    }
    .modelo > ul > li {
        list-style-type: none;
    }
    .modelo > ul > li > a {
        text-decoration: none;
        color: white;
        margin-bottom: 20px;
    }
    .modelo > ul > li > a:hover {
        color: red;
    }
    .modelo > address {
        font-family: "Poppins", sans-serif;
        font-style: normal;
    }
    .modelo > address > h3 {
        font-size: 18px;
        margin: 20px 0px 35px 0px;
    }
    .modelo > address > p > a {
        font-size: 16px;
        text-decoration: none;
        color: red;
    }
    /* Configurações da seçaõ de baixo rodapé */
    #baixo {
        width: 100%;
        height: 50px;
        text-align: center;
        padding: 0px 0px 0px 0px;
    } 
}
@media screen and (min-width: 1024px) {
    /* Configurações Globais */
    * {
        margin: 0px;
        padding: 0px;
        border: 0px;
        box-sizing: border-box;
    }
    html, body {
        background-color: white;
        overflow-x: hidden;
        font-family: Helvetica, Arial, sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: 'Poppins', sans-serif;
    }
    /* Configuração do header */
    header {
        width: 100%;
        padding: 10px 0;
        height: 300px;
        background-color: rgb(20, 6, 9);
    }
    /* Alinhamento dos itens dentro do container de logos e navegação */
    .cab-superior {
        display: flex;
        align-items: center; 
        justify-content: flex-start; 
        margin-bottom: 50px;
        margin-top: 20px; 
    }
    /* Logo individual */
    .logo {
        margin-right: 55px;
        margin-left: 20px;
        height: 50px;
    }
    /* Navegação */
    .nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        margin-right: 50px;
    }
    .nav ul li {
        margin-right: 30px; 
    }
    .nav ul li a {
        text-decoration: none;
        color: white;
    }
    .nav ul li a:hover {
        color: red;
    }
    /* Estilo do título H1 */
    .main-title {
        text-align: left; 
        font-size: 100px; 
        margin-left: 50px; 
        color: white;
    }
    .redes-sociais {
        margin-right: 35px;
    }
    /* Adiciona um estilo para as logos se necessário */
    .logoimg {
        height: 20px;
        border-radius: 25px;
        margin-left: 30px; 
    }
    .logoimg:hover{
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    /* Configurações da seção apresentação */
    #apresentacao {
        width: 100%;
        height: 600px;
        margin: auto;
        background-color: white;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        align-items: center;
        justify-items: center;
    }
    .apresentacao-texto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: white;
        margin: auto;
        padding: 0px 0px 200px 0px;
        margin: -70px 0px 0px 35px;
        height: 200px;
    }
    .apresentacao-texto > h2 {
        font-size: 20px;
        font-weight: bolder;
        text-align: justify;
        margin: 250px 5px 30px 0px;
    }
    .apresentacao-texto > a {
        text-decoration: none;
        color: white;
        background-color: rgb(20, 6, 9);
        padding: 10px 30px 10px 30px;
        font-weight: bolder;
        text-align: center;
        width: 65%;
    }
    .apresentacao-texto > a:hover {
        text-decoration: none;
        color: black;
        background-color:rgba(0, 0, 0, 0);
        border: 2px solid black;
        padding: 10px 30px 10px 30px;
        font-weight: bolder;
        text-align: left;
    }
    .apresentacao-foto {
        background-image: url('../imagens/foto-eu-sobre-t.jpg');
        background-size: cover;
        background-position: bottom;
        width: 90%;
        height: 580px;
        background-color: white;
        margin: -195px 0px 0px 0px;
    }
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        overflow: hidden;
    }
    .texto {
        width: 90%;
        height: 200px;
        background-color: white;
        margin: auto;
        color: black;
    }
    /* Configurações da seção de parceiros */
    #parceiros {
        width: 75%;
        background-color: white;
        margin: auto;
        margin-bottom: 50px;
    }
    #parceiros > h2 {
        text-align: center;
        margin-bottom: 15px;
    }
    .service-section {
        display: flex;
        justify-content: space-between;
        width: 75%;
        margin: auto;
        margin-bottom: 20px;
    }
    .service-btn {
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 15px;
        margin: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 200px;
    }
    .service-btn:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: 2px solid black;
        font-weight: bolder;
    }
    .service-btn:hover {
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    .service-content {
        display: none;
        margin: auto;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: solid 1px rgba(0, 0, 0, 0.555);
        text-align: justify;
        box-shadow: 0 2px 8px black;
        width: 75%;
        margin-bottom: 50px;
    }
    .service-content:hover {
        border-color: rgba(0, 0, 0, 0.795);
        box-shadow: 0 6px 10px black;
        border-radius: 5px 5px 5px 5px;
    }
    .service-content > h3 {
        margin-bottom: 10px;
        text-align: center;    
    }
    .service-content > p {
        margin-bottom: 20px;
        text-align: justify;
        padding: 0px 30px 0px 30px;
        line-height: 20px;    
    }
    .service-content > a {
        display: block;
        text-align: center;
        margin: 0 auto;
        text-decoration: none;
        color: black;
    }
    .service-content > a > img {
        margin: 0 auto 10px; 
        display: block; 
    }
    .service-content.active {
        display: block;
    }
    /* Configurações da seção da mensagem */
    #mensagem {
        background-color: white;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin: 75px 0px 50px 0px;
    }
    .eu-foto {
        display: block;
        width: 90%;
        border: solid 1px black;
        margin: auto;
        background-image: url('../imagens/foto-eu-sobre.jpg');
        background-size: cover;
        background-position: bottom;
    }
    .slogan {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 90%;
        margin: auto;
    }
    .slogan > blockquote > p {
        text-align: justify;
        margin: 10px 10px 10px 10px;
        font-size: 18px;
        font-weight: bolder;
    }
    .slogan > .decima {
        padding: 0px 0px 0px 0px;
    }
    .slogan > .debaixo {
        padding: 0px 0px 0px 0px;
    }
    /* Configurações da seção de contato */
    #contato-info {
        width: 50%;
        height: 350px;
        background-color: white;
        color: black;
        margin: auto;
        text-align: center;
        font-weight: bolder;
        padding: 0px 0px 50px 0px;
    }
    #contato-info > h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    #contato-info > p {
        color: black;
        font-weight: normal;
        text-align: center;
        margin: 40px 0px 70px 0px;
        font-size: 16px;
    }
    #contato-info > a {
        text-decoration: none;
        color: white;
        background-color: rgb(20, 6, 9);
        padding: 10px 30px 10px 30px;
        font-family: Helvetica, Arial, sans-serif;
    }
    #contato-info > a:hover {
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: solid 2px black;
        padding: 10px 30px 10px 30px;
    }
    /* Configurações do rodapé */
    footer {
        width: 100%;
        background-color: black;
        color: whitesmoke;
        font-family: "Poppins", sans-serif;
    }
    /* Configurações da seção de cima rodapé */
    #cima {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 10px;
        justify-items: center;
        align-items: left;
        width: 100%;
        height: 200px;
    }
    .modelo {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        margin: 0px 0px 50px 0px;
    }
    .modelo > h3 {
        display: inline;
        margin: 20px 0px 35px 0px;
    }
    .rede-social {
        margin-right: 20px;
        width: 50%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .redes-sociais > a > img {
        height: 25px;
        border-radius: 25px 25px 25px 25px;
    }
    .redes-sociais > a > img:hover{
        transform: translate(5px, -1px);
        transition: transform .3s;
    }
    .modelo > ul > li {
        list-style-type: none;
    }
    .modelo > ul > li > a {
        text-decoration: none;
        color: white;
        margin-bottom: 20px;
    }
    .modelo > ul > li > a:hover {
        color: red;
    }
    .modelo > address {
        font-family: "Poppins", sans-serif;
        font-style: normal;
    }
    .modelo > address > h3 {
        font-size: 18px;
        margin: 20px 0px 35px 0px;
    }
    .modelo > address > p > a {
        font-size: 16px;
        text-decoration: none;
        color: red;
    }
    /* Configurações da seçaõ de baixo rodapé */
    #baixo {
        width: 100%;
        height: 50px;
        text-align: center;
        padding: 0px 0px 0px 0px;
    }
}