@charset "UTF-08";
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#destaque {
    width: 100%;
    height: 550px;
    background-image: url('../imagens/foto-destaque-mobile-peq.jpg');
    background-size: cover;
    background-position: right;
}
/* Estilizando o cabeçalho */
header {
    background-color: rgba(0, 0, 0, 0);
    padding: 10px 20px;
}
.cab-superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.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: #333;
}
/* 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: nowrap;
    }
    .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;
    }
}

/* Configurações destaque/info-box */
#info-box-destaque {
    width: 90%;
    margin: auto;
    display: grid;
    margin-top: 75px;
    align-items: center;
    justify-items: center;
}
#info-box-destaque > img {
    height: 20px;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
#info-box-destaque > p {
    color: white;
    
    margin: 20px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
#info-box-destaque > h1 {
    color: white;
    margin: 15px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 18px;  
}
#info-box-destaque > a > h2 {
    color: white;
    margin: 0px 0px 15px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 14px;
}
#info-box-destaque > a > h2:hover {
    text-decoration: none;
    color: white;
    transform: translate(10px, -1px);
    transition: transform .3s;
}
#info-box-destaque > a > #mexe-estrutura {
    margin-bottom: 30px;
}
#info-box-destaque > p > a {
    color: white;
    text-decoration: none;
    margin: 20px 0px 0px 0px;
    padding: 10px 30px 10px 30px;
    background-color: rgb(20, 6, 9);
}
/* Configurações da seção descrição trabalho */
#seu-negocio-online {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%px;
    padding: 0px 0px 0px 0px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 50px;
}
.titulo {
    color: black;
}
.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 95%;
    margin: auto;
}
#limpar {
    display: none;
}
.button {
    background-color: rgb(20, 6, 9);
    color: white;
    padding: 4px;
    margin: 2px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 40px;
}
.button:focus {
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border: 2px solid black;
    font-weight: bolder;
}
.content {
    display: none;
    width: 95%;
    padding: 10px 10px 10px 10px;
    margin: auto;
    background-color: whitesmoke;
    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;
}
.content.active {
    display: block;
}
.content > h3 {
    margin: 10px 0px 15px 0px;
    text-align: center;
}
.content > p {
    margin-bottom: 30px;
    padding: 0px 10px 0px 10px;
    line-height: 20px;
}
.content > a {
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 10px 30px 10px 30px;
    margin: 0px 0px 20px 0px;
    border-radius: 5px 5px 5px 5px;
}
.content > a:hover {
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border: solid 1px black;
    border-radius: 5px 5px 5px 5px;
}
/* Configurações da seção Parcerias */
#parceiros {
    width: 100%;
    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: 100%;
    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-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 15px 0px 15px;
    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 integrações do portal */
#integracoes {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2fr para os botões, 3fr para o conteúdo */
    gap: 20px;
    width: 100%;
    padding: 0px 0px 0px 0px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
#integracoes > div > h2 {
    margin: 10px 5px 5px 5px;
}
.botoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.botao {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: rgb(20, 6, 9);
    color: white;
    padding: 5px;
    border: none;
    border-radius: 5px;
    width: 175px;
    height: 40px;
}
.botao:focus {
    background-color: rgba(0, 0, 0, 0);
    color: black;
    font-weight: bolder;
    border: 2px solid black;
}
.inte-app {
    width: 95%;
    margin: auto;
    display: none;
    padding: 10px 10px 35px 10px;
    background-color: whitesmoke;
    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;
    border: 1px solid black;
}
.inte-app.active {
    display: block;
}
.inte-app > h3 {
    text-align: center;
    margin: 10px 0px 20px 0px;
}
.inte-app > h4 {
    text-align: center;
    margin: 15px 0px 15px 0px;
}
.btn-agenda {
    margin: 10px 0px 20px 0px;
    width: 150px;
    height: 40px;
    background-color: rgb(20, 6, 9);
    border-radius: 5px;
    color: white;
    font-size: 12px;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
}
#agendaModal {
    width: 95%;
    margin: auto;
    display: none;
    border: 1px solid black;
    box-shadow: 2px 3px black;
}
#cabecalho {
    display: flex;
    justify-content: space-between;
    margin: 10px 0px 20px 0px;
}
#fechar {
    margin-right: 5px;
    background-color: red;
    color: white;
}
#data-hora {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    margin: 10px 0px 30px 0px;
}
#dia > label {
    font-weight: bolder;
}
#hora > label {
    font-weight: bolder;
}
#campos-agenda {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.dados-a {
    display: flex;
    flex-direction: column;
}
.dados-z {
    display: flex;
    flex-direction: column;
}
.dados-a > label {
    font-weight: bolder;
    margin-bottom: 6px;
}
.dados-z > input {
    margin: 0px 5px 3px 5px;
    height: 20px;       
}
.position-fechar {
    display: flex;
    justify-content: space-between;
    padding-right: 5px;
}
.bloco-1 {
    margin: 0px 0px 20px 0px;
}
.bloco-2 {
    margin: 20px 0px 35px 0px;
}
.link {
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 10px 30px 10px 30px;
    border-radius: 5px 5px 5px 5px;
}
.link:hover {
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border: solid 1px black;
    border-radius: 5px 5px 5px 5px;
}
/* Configurações da seção dos modelos de portais web */
#trabalhos {
    width: 100%;
    height: auto;
    padding: 20px;
    text-align: center;
    background-image: url('../imagens/foto-home-cogitowebsites-m.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 30px;
    margin-bottom: 50px;
}
.sub-titulo {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}
.conteudo-trabalhos {
    display: grid; 
    grid-template-columns: repeat(1, 1fr); 
    grid-gap: 10px; 
    justify-items: center; 
    align-items: center; 
    padding: 5px; 
    margin: auto;
}
.topico {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%; 
    background-color: rgba(128, 128, 128, 0);
    box-sizing: border-box;
    text-align: center;
    color: white;
    margin-bottom: 10px;
}
#outras-vers {
    display: block;
}
#mobile {
    display: none;
} 
.topico > h4 {
    font-size: 18px;
    margin: 30px 0px 0px 0px;
}
.topico > p {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 14px;
    padding: 0px 45px 0px 45px;
    text-align: justify;
}
.topico > a {
    text-decoration: none;
    background-color: rgba(128, 128, 128, 0);
    color: white;
    padding: 8px 12px 8px 12px;
    border: solid 1px white;
    font-size: 0.9em;
    font-weight: bolder;
    width: 55%;
}
/* Configurações da seção sobre mim */
#sobre-eu {
    background-color: white;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin: 0px 0px 50px 0px;
}
.desc-eu {
    width: 90%;
    height: 150px;
    margin: auto;
    text-align: center;
}
.desc-eu > h2 {
    text-align: left;
    font-size: 16px;
    color: red;
    text-decoration: overline;
}
.desc-eu > h3 {
    text-align: left;
    font-size: 16px;
    color: red;
    text-decoration: overline;
}
#des-eu {
    margin-top: 30px;
}
.desc-eu > p {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}
.desc-eu > p > a {
    text-decoration: none;
    color: red;
    margin-left: 20px;
    position: relative;
}
.desc-eu > p > a:hover::after {
   white-space: nowrap;
   position: absolute;
   top: 100%;
   left: 0px;
   content: "Entre em Contato"; 
}
#eu-foto {
    width: 90%;
    height: 450px;
    border: solid 1px black;
    margin: auto;
    background-image: url('../imagens/foto-eu-sobre.jpg');
    background-size: cover;
    background-position: bottom;
}
.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;
}
#frase {
    width: 90%;
    margin: auto;
}
#frase > blockquote > p {
    text-align: justify;
    padding: 70px 20px 50px 20px;
    font-size: 18px;
}
#frase > .decima {
    text-align: left;
    padding: 15px 0px 0px 15px;
}
#frase > .debaixo {
    text-align: right;
    padding: 20px 15px 15px 0px;
}
/* Configurações da seção 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 */
    * {
        padding: 0px;
        margin: 0px;
        border: 0px;
        box-sizing: border-box;
    }
    html, body {
        width: 100%;
        overflow-x: hidden;
        font-family: Helvetica, Arial, sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: Georgia, serif;
    }
    /* Configurações da seção de destaque */
    #destaque {
        width: 100%;
        height: 645px;
        background-image: url('../imagens/foto-home-cogitowebsites-m.jpg');
        background-size: cover;
    }
    /* Configuração do header */
    header {
        width: 100%;
        padding: 10px 0;
    }
    /* Alinhamento dos itens dentro do container de logos e navegação */
    .cab-superior {
        display: flex;
        align-items: center; 
        justify-content: flex-start;
        flex-wrap: nowrap; 
        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;
    }
    /* Adiciona um estilo para as logos se necessário */
    .logoimg {
        height: 20px;
        border-radius: 25px 25px 25px 25px;
        margin-left: 30px; 
    }
    .logoimg:hover{
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    /* Configurações destaque / info-box */
    #info-box-destaque {
        width: 100%;
        display: grid;
        margin: 100px 0px 0px 0px;
        align-items: center;
        justify-items: center;
    }
    #info-box-destaque > img {
        height: 20px;
        filter: brightness(300%);
    }
    #info-box-destaque > p {
        color: white;
        text-align: left;
        margin: 20px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
    }
    #info-box-destaque > h1 {
        color: white;
        margin: 15px 0px 30px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 26px;  
    }
    #info-box-destaque > a > h2 {
        color: white;
        margin: 0px 0px 10px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 18px;
    }
    #info-box-destaque > a > h2:hover {
        text-decoration: none;
        color: white;
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    #info-box-destaque > a > #mexe-estrutura {
        margin-bottom: 30px;
    }
    #info-box-destaque > p > a {
        color: white;
        text-decoration: none;
        margin: 20px 0px 0px 0px;
        padding: 10px 30px 10px 30px;
        background-color: rgb(20, 6, 9);
    }
    #info-box-destaque > p > a:hover {
        color: white;
        text-decoration: none;
        margin: 0px 0px 0px 0px;
        padding: 10px 30px 10px 30px;
        background-color: rgba(0, 0, 0, 0);
        border: solid 1px black;
        box-shadow: 0px 06px 10px black;
    }
    /* Configurações da seção descrição do trabalho */
    #seu-negocio-online {
        display: grid;
        grid-template-columns: 1fr 4fr;
        gap: 20px;
        width: 90%px;
        padding: 0px 0px 0px 0px;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .titulo {
        color: black;
    }
    .buttons {
        display: flex;
        flex-direction: column;
        padding: 0px 0px 0px 20px;
    }
    .button {
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 5px;
        margin: 10px 0;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 175px;
        height: 40px;
    }
    .button:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: 2px solid black;
        font-weight: bolder;
    }
    .button:hover {
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    .content {
        display: none;
        padding: 10px 10px 10px 10px;
        margin: 0px 30px 0px 0px;
        background-color: whitesmoke;
        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;
    }
    .content:hover {
        border-color: rgba(0, 0, 0, 0.795);
        box-shadow: 0 6px 10px black;
    }
    .content.active {
        display: block;
    }
    .content > h3 {
        margin: 10px 0px 15px 0px;
        text-align: center;
    }
    .content > p {
        margin-bottom: 30px;
        padding: 0px 80px 0px 80px;
        line-height: 20px;
    }
    .content > a {
        text-decoration: none;
        color: white;
        background-color: black;
        padding: 10px 30px 10px 30px;
        margin-bottom: 20px;
        border-radius: 5px 5px 5px 5px;
    }
    .content > a:hover {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: solid 1px black;
        border-radius: 5px 5px 5px 5px;
    }
    /* Configurações da seção de parcerias */
    #parceiros {
        width: 90%;
        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 de integrações do portal */
    #integracoes {
        display: grid;
        grid-template-columns: 1fr 3fr; /* 2fr para os botões, 3fr para o conteúdo */
        gap: 20px;
        width: 90%;
        padding: 0px 0px 0px 0px;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #integracoes > div > h2 {
        margin: 10px 0px 5px 0px;
    }
    .botoes {
        display: flex;
        flex-direction: column;
        padding: 0px 0px 0px 20px;
    }
    .botao {
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 5px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 175px;
        height: 40px;
    }
    .botao:hover {
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    .botao:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        font-weight: bolder;
        border: 2px solid black;
    }
    .inte-app {
        display: none;
        padding: 10px 10px 35px 10px;
        margin: 0px 0px 0px 0px;
        background-color: whitesmoke;
        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;
        border: 1px solid black;
    }
    .inte-app:hover {
        border-color: rgba(0, 0, 0, 0.795);
        box-shadow: 0 6px 10px black;
    }
    .inte-app.active {
        display: block;
    }
    .inte-app > h2 {
        text-align: center;
        margin: 10px 0px 20px 0px;
    }
    .inte-app > h3 {
        margin-bottom: 20px;
    }
    .inte-app > h4 {
        text-align: center;
        margin: 15px 0px 15px 0px;
    }
    .btn-agenda {
        margin: 10px 0px 20px 0px;
        width: 150px;
        height: 40px;
        background-color: rgb(20, 6, 9);
        color: white;
        font-size: 12px;
        font-weight: bolder;
        font-family: "Poppins", sans-serif;
    }
    #agendaModal {
        margin: auto;
        width: 95%;
        display: none;
        border: 1px solid black;
        box-shadow: 2px 3px black;
    }
    #cabecalho {
        display: flex;
        justify-content: space-between;
        margin: 10px 0px 20px 0px;
    }
    #fechar {
        margin-right: 5px;
        background-color: red;
        color: white;
    }
    #data-hora {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-content: center;
        margin: 10px 0px 30px 0px;
    }
    #dia > label {
        font-weight: bolder;
        
    }
    #hora > label {
        font-weight: bolder;
    }
    #campos-agenda {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 3fr 1fr 3fr;
    }
    .dados-a {
        display: flex;
        flex-direction: column;
    }
    .dados-z {
        display: flex;
        flex-direction: column;
    }
    .dados-a > label {
        font-weight: bolder;
        margin-bottom: 6px;
    }
    .dados-z > input {
        margin: 0px 5px 3px 5px;
        height: 20px;       
    }
    
    .position-fechar {
        display: flex;
        justify-content: space-between;
        padding-right: 5px;
    }
    #confirmarAgendamento {
        margin: 10px 0px 0px 0px;
        width: 150px;
        height: 40px;
        background-color: rgb(20, 6, 9);
        color: white;
        font-size: 12px;
        font-weight: bolder;
        font-family: "Poppins", sans-serif;
    }
    .bloco-1 {
        margin: 0px 0px 20px 0px;
    }
    .bloco-2 {
        margin: 20px 0px 35px 0px;
    }
    .link {
        text-decoration: none;
        color: white;
        background-color: black;
        padding: 10px 30px 10px 30px;
        border-radius: 5px 5px 5px 5px;
    }
    .link:hover {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: solid 1px black;
        border-radius: 5px 5px 5px 5px;
    }
    /* Configuração da seção de modelos de portais web */
    #trabalhos {
        width: 98%;
        margin: auto;
        padding-top: 50px;
        text-align: center;
        background-image: url('../imagens/foto-home-cogitowebsites-m.jpg');
        background-size: cover;
        background-position: center;
        margin-bottom: 50px;
    }
    .sub-titulo > h3 {
        font-size: 22px;
        color: white;
        margin-top: 0px;
    }
    .conteudo-trabalhos {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
        margin: 0px 0px 0px 0px;
        padding: 0px;
    }
    .topico {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgba(128, 128, 128, 0);
        text-align: center;
        color: white;
        margin: 50px 0px 50px 0px;
        padding: 0px;
    }
    .topico > h4 {
        margin-top: 45px;
    }
    .topico > p {
        margin-bottom: 30px;
        padding: 0px 15px 0px 15px;
        text-align: justify;
    }
    .topico > a {
        text-decoration: none;
        background-color: rgba(128, 128, 128, 0);
        color: white;
        padding: 10px 20px 10px 20px;
        border: solid 1px white;
        margin-bottom: 15px;
        font-weight: normal;
        width: 90%;
    }
    .topico > a:hover {
        background-color: rgb(20, 6, 9);
        font-weight: bolder;
    }
    #outras-vers {
        display: none;
    }
    #mobile {
        display: block;
        margin-top: 0px;
    }
    /* Configurações da seção sobre mim */
    #sobre-eu {
        background-color: white;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin: 0px 0px 50px 0px;
    }
    .desc-eu {
        width: 90%;
        height: 100px;
        margin: auto;
        text-align: center;
    }
    .desc-eu > h2 {
        text-align: left;
        font-size: 16px;
        color: red;
        text-decoration: overline;
    }
    .desc-eu > h3 {
        text-align: left;
        font-size: 16px;
        color: red;
        text-decoration: overline;
    }
    .desc-eu > p {
        text-align: left;
        font-size: 14px;
        margin-top: 10px;
    }
    .desc-eu > p > a {
        color: red;
        margin-left: 20px;
        position: relative;
    }
    .desc-eu > p > a:hover::after {
       content: "Saiba mais sobre";
       white-space: nowrap;
       position: absolute;
       top: 100%;
       left: 0px; 
    }
    #eu-foto {
        width: 90%;
        height: 600px;
        border: solid 1px black;
        margin: auto;
        background-image: url('../imagens/foto-eu-sobre.jpg');
        background-size: cover;
        background-position: bottom;
    }
    .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;
    }
    #frase {
        width: 100%;
        margin: auto;
    }
    #frase > blockquote > p {
        text-align: justify;
        padding: 40px 10px 40px 10px;
        font-size: 18px;
    }
    #frase > .decima {
        text-align: left;
        padding: 15px 0px 0px 15px;
    }
    #frase > .debaixo {
        text-align: right;
        padding: 20px 15px 15px 0px;
    }
    /* Configurações da seção de info-contato */
    #contato-info {
        width: 75%;
        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: 10px 0px 50px 0px;
    }
    #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;
    }
    #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(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 */
    * {
        padding: 0px;
        margin: 0px;
        border: 0px;
        box-sizing: border-box;
    }
    html, body {
        width: 100%;
        overflow-x: hidden;
        font-family: Helvetica, Arial, sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: 'Poppins', sans-serif;
    }
    /* Configurações da seção de destaque */
    #destaque {
        width: 100%;
        height: 650px;
        background-image: url('../imagens/foto-home-cogitowebsites-m.jpg');
        background-size: cover;
    }
    /* Configuração do header */
    header {
        width: 100%;
        padding: 10px 0;
    }
    /* 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;
        width: 100%;
    }
    /* 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;
    }
    /* Adiciona um estilo para as logos se necessário */
    .logoimg {
        height: 20px;
        border-radius: 25px 25px 25px 25px;
        margin-left: 30px; 
    }
    .logoimg:hover{
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    /* Configurações da info-box da seção de destaque */
    #info-box-destaque {
        width: 75%;
        display: grid;
        margin: auto;
        margin-top: 100px;
        align-items: center;
        justify-items: center;
    }
    #info-box-destaque > img {
        height: 20px;
        filter: brightness(300%);
    }
    #info-box-destaque > p {
        color: white;
        text-align: left;
        margin: 20px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
    }
    #info-box-destaque > h1 {
        color: white;
        margin: 15px 0px 30px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 26px;  
    }
    #info-box-destaque > a > h2 {
        color: white;
        margin: 0px 0px 5px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 18px;
    }
    #info-box-destaque > a > h2:hover {
        text-decoration: none;
        color: white;
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    #mexe-estrutura {
        margin-bottom: 30px;
    }
    #info-box-destaque > p > a {
        color: white;
        text-decoration: none;
        margin: 20px 0px 0px 0px;
        padding: 10px 30px 10px 30px;
        background-color: rgb(20, 6, 9);
    }
    #info-box-destaque > p > a:hover {
        color: white;
        text-decoration: none;
        margin: 0px 0px 0px 0px;
        padding: 10px 30px 10px 30px;
        background-color: rgba(0, 0, 0, 0);
        border: solid 1px black;
        box-shadow: 0px 06px 10px black;
    }
    /* Configurações da seção da descrição do trabalho*/
    #seu-negocio-online {
        display: grid;
        grid-template-columns: 1fr 4fr; 
        gap: 20px;
        width: 90%;
        padding: 0px 0px 0px 0px;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .buttons {
        display: flex;
        flex-direction: column;
        padding: 0px 0px 0px 20px;
    }
    .titulo {
        color: black;
    }
    .button:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: 2px solid black;
    }
    .button {
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 0px 0px 0px 0px;
        margin: 10px 0px 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 175px;
        height: 40px;
    }
    .button:hover {
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    .content {
        display: none;
        padding: 10px 10px 10px 10px;
        margin: 0px 50px 0px 0px;
        background-color: whitesmoke;
        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;
    }
    .content:hover {
        border-color: rgba(0, 0, 0, 0.795);
        box-shadow: 0 6px 10px black;
    }
    .content.active {
        display: block;
    }
    .content > h3 {
        margin: 10px 0px 15px 0px;
        text-align: center;
    }
    .content > p {
        margin-bottom: 30px;
        padding: 20px 150px 0px 150px;
        line-height: 20px;
    }
    .content > a {
        text-decoration: none;
        color: white;
        background-color: black;
        padding: 10px 30px 10px 30px;
        margin-bottom: 20px;
        border-radius: 5px 5px 5px 5px;
    }
    .content > a:hover {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: solid 1px black;
        border-radius: 5px 5px 5px 5px;
    }
    /* Configurações da seção de parcerias */
    #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:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: 2px solid black;
    }
    .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: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 integrações do portal */
    #integracoes {
        display: grid;
        grid-template-columns: 1fr 3fr; /* 2fr para os botões, 3fr para o conteúdo */
        gap: 20px;
        width: 90%;
        padding: 0px 0px 0px 0px;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #integracoes > div > h2 {
        margin: 10px 0px 5px 0px;
    }
    .botoes {
        display: flex;
        flex-direction: column;
        padding: 0px 0px 0px 20px;
    }
    .botao {
        margin: auto;
        margin: 10px 0px 10px 0px;
        background-color: rgb(20, 6, 9);
        color: white;
        padding: 5px;
        border-radius: 5px;
        cursor: pointer;
        width: 175px;
        height: 40px;
    }
    .botao:hover {
        transform: translate(10px, -1px);
        transition: transform .3s;
    }
    .botao:focus {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        font-weight: bolder;
        border: 2px solid black;
    }
    .inte-app {
        display: none;
        padding: 10px 10px 35px 10px;
        background-color: whitesmoke;
        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;
        border: 1px solid black;
    }
    .inte-app:hover {
        border-color: rgba(0, 0, 0, 0.795);
        box-shadow: 0 6px 10px black;
    }
    .inte-app.active {
        display: block;
    }
    .inte-app > h3 {
        text-align: center;
        margin: 10px 0px 20px 0px;
    }
    .inte-app > h4 {
        text-align: center;
        margin: 15px 0px 15px 0px;
    }
    .inte-app > p {
        margin-bottom: 30px;
    }
    .btn-agenda {
        cursor: pointer;
        margin: 10px 0px 20px 0px;
        width: 150px;
        height: 40px;
        background-color: rgb(20, 6, 9);
        color: white;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bolder;
        font-family: "Poppins", sans-serif;
    }
    .btn-agenda:hover {
        transform: translate(3px, -1px);
        transition: transform .3s;
    }
    #agendaModal {
        margin: auto;
        width: 90%;
        display: none;
        border: 1px solid black;
        box-shadow: 2px 3px black;
    }
    #cabecalho {
        display: flex;
        justify-content: space-between;
        margin: 10px 0px 20px 0px;
    }
    #fechar {
        margin-right: 5px;
        background-color: red;
        color: white;
    }
    #data-hora {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-content: center;
        margin: 10px 0px 30px 0px;
    }
    #dia > label {
        font-weight: bolder;
    }
    #hora > label {
        font-weight: bolder;
    }
    #campos-agenda {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 3fr 1fr 3fr;
    }
    .dados-a {
        display: flex;
        flex-direction: column;
    }
    .dados-z {
        display: flex;
        flex-direction: column;
    }
    .dados-a > label {
        font-weight: bolder;
        margin-bottom: 6px;
    }
    .dados-z > input {
        margin: 0px 5px 3px 5px;
        height: 20px;       
    }
    .position-fechar {
        display: flex;
        justify-content: space-between;
        padding-right: 5px;
    }
    .bloco-1 {
        margin: 0px 0px 20px 0px;
    }
    .bloco-2 {
        margin: 20px 0px 35px 0px;
    }
    .a-link {
        margin-top: 50px;
    }
    .link {
        text-decoration: none;
        color: white;
        background-color:rgb(20, 6, 9);
        padding: 10px 30px 10px 30px;
        border-radius: 5px 5px 5px 5px;
    }
    .link:hover {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: solid 1px black;
        border-radius: 5px 5px 5px 5px;
    }
    /* Configurações da seção dos modelos dos portais para os segmnentos de negócios */
    #trabalhos {
        width: 98%;
        margin: auto;
        padding-top: 50px;
        text-align: center;
        background-image: url('../imagens/foto-home-cogitowebsites-m.jpg');
        background-size: cover;
        background-position: center;
        margin-bottom: 50px;
    }
    .sub-titulo > h3 {
        font-size: 28px;
        color: white;
        margin-top: 0px;
    }
    .conteudo-trabalhos {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
        margin: 50px 0px 50px 0px;
        padding: 0px;
    }
    .topico {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgba(128, 128, 128, 0);
        text-align: center;
        color: white;
        margin: 50px 0px 50px 0px;
        padding: 0px;
    }
    .topico > h4 {
        margin: 45px 0px 35px 0px;
    }
    #mobile {
        margin: 45px 0px 35px 0px;
    }
    .topico > p {
        margin-bottom: 30px;
        padding: 0px 15px 0px 15px;
        text-align: justify;
    }
    .topico > a {
        text-decoration: none;
        background-color: rgba(128, 128, 128, 0);
        color: white;
        padding: 10px 20px 10px 20px;
        border: solid 1px white;
        margin-bottom: 15px;
        font-weight: normal;
        width: 90%;
    }
    .topico > a:hover {
        background-color: rgb(20, 6, 9);
        font-weight: bolder;
    }
    #outras-vers {
        display: block;
    }
    #mobile {
        display: none;
    }
    /* Configurações da seção sobre eu */
    #sobre-eu {
        background-color: white;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin: 0px 0px 50px 0px;
    }
    .desc-eu {
        width: 90%;
        height: 100px;
        margin: auto;
        text-align: center;
    }
    .desc-eu > h2 {
        text-align: left;
        font-size: 16px;
        color: red;
        text-decoration: overline;
    }
    .desc-eu > p {
        text-align: left;
        font-size: 14px;
        margin-top: 10px;
    }
    .desc-eu > p > a {
        color: red;
        margin-left: 20px;
        position: relative;
    }
    .desc-eu > p > a:hover::after {
       content: "Saiba mais sobre";
       white-space: nowrap;
       position: absolute;
       top: 100%;
       left: 0px; 
    }
    #eu-foto {
        width: 90%;
        height: 600px;
        border: solid 1px black;
        margin: auto;
        background-image: url('../imagens/foto-eu-sobre.jpg');
        background-size: cover;
        background-position: bottom;
    }
    .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;
    }
    #frase {
        width: 90%;
        margin: auto;
    }
    #frase > blockquote > p {
        text-align: justify;
        padding: 50px 20px 35px 20px;
        font-size: 18px;
    }
    #frase > .decima {
        text-align: left;
        padding: 15px 0px 0px 15px;
    }
    #frase > .debaixo {
        text-align: right;
        padding: 20px 15px 15px 0px;
    }
    /* Configurações da seção de info-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 30px 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;
        margin: 0px 0px 0px 0px;
    }
    .modelo > ul > li > a {

        text-decoration: none;
        color: white;
        margin: 0px 0px 0px 0px;
    }
    .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 30px 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;
    }
    
}


