@charset "UTF-8";
*{
    padding: 0px;
    margin: 0px;
}
:root{
    --branco: #ffffff;
    --claro: #B7B7A4; 
    --medio: #A5A58D;
    --escuro: #696D5B;
    --cinza: #E6E6E6;
    --cinza-escuro: #313131;
}

/*nav*/
@media (max-width: 992px){
    .custom-navbar{
        background-color: var(--escuro);
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.468);
        width: 100%;
    }
    
    .custom-navbar .nav-link{
        text-decoration: none;
        color: var(--branco);
        font-size: 1em;
    }
    
    .custom-navbar .nav-link:hover{
        text-decoration: none;
        color: var(--cinza);
    }
    
    .custom-navbar .navbar-nav{
        list-style: none;
        gap: 2px;
    }
}

@media (min-width: 992px){
    .custom-navbar{
        background-color: var(--escuro);
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        height: 6vw;
        width: 100%;
    }
    
    .custom-navbar .navbar-nav{
        width: 100%;
    }
    
    .custom-navbar .nav-link{
        text-decoration: none;
        color: var(--branco);
        font-size: 2vw;
    }
    
    .custom-navbar .nav-link:hover{
        text-decoration: none;
        color: var(--cinza);
    }
    
    .custom-navbar .navbar-nav{
        list-style: none;
        gap: 40px;
        justify-content: center;
    }
}
/*fim nav*/


/*elegancia*/
.elegancia{
    background-color: var(--claro);
    height: 60vw;
    width: 100%;
    position: relative;
}

.elegancia-elegancia h1{
    border: 0.4vw solid var(--escuro);
    position: absolute;
    top: 6vw;
    font-size: 10vw;
    font-weight: bold;
    color: var(--escuro);
    transform: translateX(-50%);
    left: 50%;
}

.elegancia h2{
    font-size: 6vw;
    color: var(--cinza);
    position: absolute;
    top: 23vw;
    left: 35%;
    transform: translate(-50%);
}

.elegancia p{
    font-size: 2vw;
    color: var(--cinza);
    position: absolute;
    width: 50%;
    top: 30.5vw;
    left: 58%;
    transform: translate(-50%);
}

@media (max-width: 500px){
    .elegancia p{
        font-size: 2.3vw;
        color: var(--cinza);
        position: absolute;
        width: 50%;
        top: 30.5vw;
        left: 58%;
        transform: translate(-50%);
    }
}
/*fim elegancia*/


/*artigos*/
.artigos{
    background-color: var(--cinza);
}

.artigos a {
    display: block;
    margin: 10px 0;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

.linha{
    background-color: var(--claro);
    height: 2px;
    width: 90%;
    margin: auto;
}

body.modal-open{
    overflow: hidden;
    position: fixed;
}

@media (max-width: 500px){
    .artigos h1{
        font-size: 10vw;
        text-align: right;
        padding: 10vw 8vw 6vw 0;
        color: var(--escuro);
    }
    
    .artigos-modal h2{
        font-size: 10vw;
        color: var(--claro);
    }

    .artigos-modal h3{
        font-size: 5vw;
        color: var(--cinza-escuro);
    }

    .artigos-modal p{
        font-size: 2.5vw;
        color: var(--escuro);
        text-align: center;
    }

    .artigos-modal img{
        width: 6vw;
        max-width: 40px;
    }

    .artigos-modal{
        display: inline-block;
        width: 100%;
        padding: 5vw 20vw 5vw 20vw;
        text-align: center;
        margin: auto;
    }
    
    .modal {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
    }

    .modal p{
        font-size: 3.3vw;
        line-height: 1.6em;
        text-indent: 1.5em;
        text-align: justify;
        padding: 2vw;
    }

    .modal h3{
        text-align: center;
        padding: 30px;
    }

    .modal-content {
        background: white;
        border-radius: 10px;
        width: 90%;
        max-height: 80vh;
        overflow: hidden;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 3vw 6vw 3vw 6vw;
    }
    
    .close {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
    }
}

@media (min-width: 500px) and (max-width: 1000px){
    .artigos h1{
        font-size: 7vw;
        text-align: right;
        padding: 10vw 9vw 6vw 0vw;
        color: var(--escuro);
    }

    .artigos-modal h2{
        font-size: 4vw;
        color: var(--claro);
    }
    
    .artigos-modal h3{
        font-size: 2.5vw;
        color: var(--cinza-escuro);
    }
    
    .artigos-modal p{
        font-size: 2.25vw;
        color: var(--escuro);
        text-align: center;
    }
    
    .artigos-modal img{
        width: 6vw;
        max-width: 30px;
    }

    .container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .artigos-modal{
        padding: 5vw 7vw 5vw 7vw;
        text-align: center;
        /*para quebrar em dois*/
        width: 100%;
        margin-bottom: 0;
    }
    
    .linha{
        background-color: var(--claro);
        height: 2px;
        width: 90%;
        margin: auto;
        grid-column: 1 / -1;
    }

    .modal {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
    }
    
    .modal p{
        font-size: 1.2em;
        line-height: 1.6em;
        text-indent: 1.5em;
        text-align: justify;
        padding: 30px;
    }

    .modal h3{
        text-align: center;
        padding: 30px;
    }

    .modal-content {
        background: white;
        border-radius: 10px;
        width: 90%;
        max-height: 80vh;
        position: relative;
        overflow: hidden;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 3vw 6vw 3vw 6vw;
    }
    
    .close {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
    }
}

@media (min-width: 1000px){
    .artigos h1{
        font-size: 7vw;
        text-align: right;
        padding: 10vw 8vw 6vw 0;
        color: var(--escuro);
    }

    .artigos-modal h2{
        font-size: 3vw;
        color: var(--claro);
    }

    .artigos-modal h3{
        font-size: 2vw;
        color: var(--cinza-escuro);
    }

    .artigos-modal p{
        font-size: 2vw;
        color: var(--escuro);
        text-align: center;
    }

    .artigos-modal img{
        width: 6vw;
        max-width: 40px;
    }

    .container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .artigos-modal{
        padding: 5vw 7vw 5vw 7vw;
        text-align: center;
        /*para quebrar em dois*/
        width: 100%;
        margin-bottom: 0;
    }
    
    .linha{
        background-color: var(--claro);
        height: 2px;
        width: 90%;
        margin: auto;
        grid-column: 1 / -1;
    }

    .modal {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
    }

    .modal p{
        font-size: 1.2em;
        line-height: 1.6em;
        text-indent: 1.5em;
        text-align: justify;
        padding: 30px;
    }

    .modal h3{
        text-align: center;
        padding: 30px;
    }

    .modal-content {
        background: white;
        border-radius: 10px;
        width: 90%;
        max-height: 80vh;
        max-width: 600px;
        position: relative;
        overflow: hidden;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 3vw 6vw 3vw 6vw;
    }
    
    .close {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
    }
}
/*fim artigos*/


/*footer*/
/*celular*/
@media (max-width: 500px){
    footer{
        background-color:var(--escuro) ;
        height: 29vw;
        max-height: 170px;
        position: relative;
    }
    
    .container-footer{
        width: 80%;
        height: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .footer-luigi h1{
        font-size: 2vw;
        color: var(--cinza);
        font-weight: normal;
        text-align: center;
        padding-top: 5px;
    }
    
    /*footer paginas*/
    .footer-paginas{
        display: flex;
        gap: 2vw;
        justify-content: center;
        margin-top: 0.5vw;
        margin-bottom: 0.5vw;
    }
    
    .footer-paginas a{
        text-decoration: none;
        color: var(--claro);
        font-size: 1.8vw;
        text-align: center;
    }
    
    /*footer fotos*/
    .footer-fotos{
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: -4vw;
        margin-bottom: -4vw;
    }
    
    .footer-fotos img{
        width: 2.3vw;
        max-width: 18px;
    }
    
    /*footer direitos*/
    .footer-direitos {
        color: var(--cinza);
        font-size: 1.5vw;
        width: 100%;
        text-align: center;
        margin-top: -1vw;
    }
}
/*tablet*/
@media (min-width: 500px) and (max-width: 1000px){
    footer{
        background-color:var(--escuro) ;
        height: 29vw;
        max-height: 170px;
        position: relative;
    }
    
    .container-footer{
        width: 80%;
        height: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .footer-luigi h1{
        font-size: 2vw;
        color: var(--cinza);
        font-weight: normal;
        text-align: center;
        padding-top: 5px;
    }
    
    /*footer paginas*/
    .footer-paginas{
        display: flex;
        gap: 2vw;
        justify-content: center;
        padding-top: 2px;
        padding-bottom: 5px;
    }
    
    .footer-paginas a{
        text-decoration: none;
        color: var(--claro);
        font-size: 1.7vw;
        text-align: center;
    }
    
    /*footer fotos*/
    .footer-fotos{
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: -15px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    
    .footer-fotos img{
        width: 2.3vw;
        max-width: 18px;
    }
    
    /*footer direitos*/
    .footer-direitos {
        color: var(--cinza);
        font-size: 1.5vw;
        width: 100%;
        text-align: center;
        margin-top: -20px;
        padding-top: 0px;
    }
}
/*computador*/
@media (min-width: 1000px){
    footer{
        background-color:var(--escuro) ;
        height: 29vw;
        max-height: 190px;
        position: relative;
    }
    
    .container-footer{
        width: 80%;
        height: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .footer-luigi h1{
        font-size: 1.4vw;
        color: var(--cinza);
        font-weight: normal;
        text-align: center;
        padding-top: 5px;
    }

    /*footer paginas*/
    .footer-paginas{
        display: flex;
        gap: 2vw;
        justify-content: center;
        padding-top: 0.2vw;
        padding-bottom: 0.2vw;
    }
    
    .footer-paginas a{
        text-decoration: none;
        color: var(--claro);
        font-size: 1.2vw;
        text-align: center;
    }
    
    /*footer fotos*/
    .footer-fotos{
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: -15px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    
    .footer-fotos img{
        width: 2.3vw;
        max-width: 18px;
    }

    /*footer direitos*/
    .footer-direitos {
        color: var(--cinza);
        font-size: 1vw;
        width: 100%;
        text-align: center;
        margin-top: -20px;
        padding-top: 0px;
    }
}

/*fim footer*/


