@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;
    }
}
/* Configurações da seção de endereço da agencia */
#endereco {
    background-color: rgb(20, 6, 9);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    color: white;
}
.cep-email {
    width: 90%;
    height: 400px;
    background-color: rgb(20, 6, 9);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: left;
    justify-items: left;
}
#ender > address > h2 {
    padding: 0px 0px 0px 0px;
    margin: 40px 0px 10px 0px;
}
#telefone address > h2 {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
}
#telefone address > a {
    text-decoration: none;
    color: white;
}
#email > address > h2 {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
}
#email > address > a {
    text-decoration: none;
    color: white;
}
#redes-sociais {
    padding: 0px 0px 0px 0px;
}
#ender > h2 {
    margin-bottom: 15px;
}
#telefone > h2 {
    margin-bottom: 10px;
}
#email > h2 {
    margin-bottom: 10px;
}
.mapa {
    width: 90%;
    height: 500px;
    background-image: url('../imagens/mapa.png');
    background-size: cover;
    background-position: top;
    margin: auto;
}
/* Configurações da seção do formulário */
#formulario {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 5px;
    margin-bottom: 100px;
    margin: auto;
    background-color:#FFEDE6 ;
}
.descr {
    width: 95%;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: justify;
    padding-top: 50px;
}
.descr > h2 {
    margin: 0px 5px 50px 5px;
    font-family: Georgia, serif;
    font-size: 18px;
}
.descr > h3 {
    margin: 5px 5px 70px 5px;
    font-size: 18px;
}
.descr > p {
    margin: 10px 5px 0px 20px;
}
.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    background-color:#FFFFFF;
    margin: auto;
    margin-top: 35px;
}
#formula {
    width: 80%;
    margin: 30px 0px 30px 0px;
}
#formula > label {
    display: inline-block;
    font-weight: bolder;
    
}
form > #nome, #email, #telefone {
    width: 100%;
    height: 26px;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 15px 0px;
    border: solid 2px black;
    border-radius: 5px 5px 5px 5px;
    
}
form > #mensagem {
    width: 100%;
    height: 170px;
    border: solid 2px black;
    border-radius: 5px 5px 5px 5px;
}
form > #btn {
    padding: 10px 30px 10px 30px;
    margin: 50px 0px 0px 0px;
    background-color: rgb(20, 6, 9);
    color: white;
}
form > #btn:hover {
    background-color: red;
}
/* Configurações da seção de info-contato */
#contato-info {
    width: 100%;
    background-color: #FFEDE6;
    color: black;
    margin: auto;
    text-align: center;
    font-weight: bolder;
    padding: 0px 20px 50px 20px;
}
#contato-info > h2 {
    font-size: 26px;
    margin: 35px 0px 35px 0px;
}
#contato-info > p {
    color: black;
    font-size: 14px;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 50px;
}
#contato-info > a {
    text-decoration: none;
    color: black;
    border: solid 1px black;
    padding: 10px 20px 10px 20px;
    font-family: Helvetica, Arial, sans-serif;
}
#contato-info > a:hover {
    text-decoration: none;
    background-color: rgb(20, 6, 9);
    color: white;
    border: solid 1px black;
    padding: 10px 20px 10px 20px;
}
/* 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: #FFEDE6;
        font-family: Helvetica, Arial, sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: "Poppins", sans-serif;
    }
    /* Configurações da seçaõ de destaque */
    #destaque {
        width: 100%;
    }
    /* 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: 100px;
        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: 50px; 
        margin-left: 50px; 
        color: white;
    }
    /* 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 seção de informações de contato e endereço da agencia */
    #endereco {
        background-color: rgb(20, 6, 9);
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        color: white;
    }
    .cep-email {
        width: 90%;
        height: 500px;
        background-color: rgb(20, 6, 9);
        margin: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: left;
        justify-items: left;
    }
    #ender > address > h2 {
        padding: 0px 0px 0px 0px;
        margin: 65px 0px 10px 0px;
    }
    #telefone > address > h2 {
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 10px 0px;
    }
    #telefone > address > a {
        text-decoration: none;
        color: white;
    }
    #email > address > h2 {
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 10px 0px;
    }
    #email > address > a {
        text-decoration: none;
        color: white;
    }
    #redes-sociais {
        padding: 0px 0px 0px 0px;
    }
    #ender > h2 {
        margin-bottom: 10px;
    }
    #telefone > h2 {
        margin-bottom: 10px;
    }
    #email > h2 {
        margin-bottom: 10px;
    }
    .mapa {
        width: 90%;
        height: 500px;
        background-image: url('../imagens/mapa.png');
        background-size: cover;
        background-position: top;
        margin: auto;
    }
    /* Configurações da seção de formulário */
    #formulario {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5px;
        margin: auto;
        background-color:#FFEDE6 ;
        padding-top: 100px;
    }
    .descr {
        width: 95%;
        margin: auto;
        align-items: center;
        justify-content: center;
        text-align: justify;
    }
    .descr > h2 {
        margin: 0px 5px 50px 5px;        font-size: 18px;
    }
    .descr > h3 {
        margin: 5px 5px 70px 5px;
        font-size: 18px;
    }
    .descr > p {
        margin: 10px 5px 0px 20px;
    }
    .form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95%;
        background-color:#FFFFFF;
        margin: auto;
    }
    #formula {
        width: 80%;
        margin: 30px 0px 30px 0px;
    }
    #formula > label {
        display: inline-block;
        font-weight: bolder;
        
    }
    form > #nome, #email, #telefone {
        width: 100%;
        height: 26px;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 15px 0px;
        border: solid 2px black;
        border-radius: 5px 5px 5px 5px;
    }
    form > #mensagem {
        width: 100%;
        height: 170px;
        border: solid 2px black;
        border-radius: 5px 5px 5px 5px;
    }
    form > #btn {
        padding: 10px 30px 10px 30px;
        margin: 50px 0px 0px 0px;
        background-color: rgb(20, 6, 9);
        color: white;
    }
    form > #btn:hover {
        background-color: red;
    }
    /* Configurações da seção info-contato */
    #contato-info {
        width: 100%;
        background-color: #FFEDE6;
        color: black;
        margin: auto;
        text-align: center;
        font-weight: bolder;
    }
    #contato-info > h2 {
        font-size: 26px;
        margin: 0px 0px 20px 0px;
        padding: 75px 150px 0px 150px;
    }
    #contato-info > p {
        color: black;
        font-weight: bolder;
        text-align: center;
        margin-bottom: 50px;
        padding: 0px 150px 0px 150px;
    }
    #contato-info > a {
        text-decoration: none;
        color: white;
        background-color: rgb(20, 6, 9);
        border: solid 1px black;
        padding: 10px 50px 10px 50px;
    }
    #contato-info > a:hover {
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: solid 2px black;
        padding: 10px 50px 10px 50px;
        font-weight: bolder;
    }
    /* 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:#FFEDE6 ;
        overflow-x: hidden;
        font-family: Helveitca, Arial, sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: "Poppins", sans-serif;
    }
    /* Configurações da seçaõ de destaque */
    #destaque {
        width: 100%;
    }
    /* 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: 100px;
        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: 50px; 
        margin-left: 50px; 
        color: white;
    }
    /* 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 seção de informações de contato e endereço da agencia */
    #endereco {
        background-color: rgb(20, 6, 9);
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        color: white;
    }
    .cep-email {
        width: 90%;
        height: 500px;
        background-color: rgb(20, 6, 9);
        margin: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: left;
        justify-items: left;
    }
    #ender {
        padding: 0px 0px 0px 0px;
        margin: 65px 0px 0px 0px;
    }
    #ender > address > h2 {
        margin-bottom: 10px;
    }
    #telefone > address > h2 {
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 10px 0px;
    }
    #telefone > address > a {
        text-decoration: none;
        color: white;
        
    }
    #email > address > h2 {
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 10px 0px;
    }
    #email > address > a {
        text-decoration: none;
        color: white;
        
    }
    #redes-sociais {
        padding: 0px 0px 0px 0px;
    }
    
    #ender > h2 {
        margin-bottom: 10px;
    }
    #telefone > h2 {
        margin-bottom: 10px;
    }
    #email > h2 {
        margin-bottom: 10px;
    }
    .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;
    }
    .mapa {
        width: 90%;
        height: 500px;
        background-image: url('../imagens/mapa.png');
        background-size: cover;
        background-position: top;
        margin: auto;
    }
    /* Configurações da seção do formulário */
    #formulario {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5px;
        padding-top: 100px;
        margin-bottom: 100px;
        margin: auto;
        background-color:#FFEDE6 ;
    }
    .descr {
        width: 100%;
        padding: 0px 50px 0px 50px;
        margin: auto;
        align-items: center;
        justify-content: center;
        text-align: justify;
    }
    .descr > h2 {
        margin: 0px 5px 50px 5px;
        font-family: Georgia, serif;
    }
    .descr > h3 {
        margin: 5px 5px 70px 5px;
    }
    .descr > p {
        margin: 10px 5px 0px 20px;
    }
    .form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95%;
        background-color:#FFFFFF;
        margin: auto;
    }
    #formula {
        width: 80%;
        margin: 30px 0px 30px 0px;
    }
    #formula > label {
        display: inline-block;
        font-weight: bolder;
    }
    form > #nome, #email, #telefone {
        width: 100%;
        height: 26px;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 15px 0px;
        border: solid 2px black;
        border-radius: 5px 5px 5px 5px;
    }
    form > #mensagem {
        width: 100%;
        height: 170px;
        border: solid 2px black;
        border-radius: 5px 5px 5px 5px;
    }
    form > #btn {
        padding: 10px 30px 10px 30px;
        margin: 50px 0px 0px 0px;
        background-color: rgb(20, 6, 9);
        color: white;
    }
    form > #btn:hover {
        background-color: red;
    }
    /* Configurações da seção de info-contato */
    #contato-info {
        width: 100%;
        color: black;
        margin: auto;
        text-align: center;
        font-weight: bolder;
        margin-bottom: 30px;
    }
    #contato-info > h2 {
        font-size: 32px;
        margin-bottom: 20px;
        width: 80%;
        margin: auto;
    }
    #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;
    }
    
}