@import url('../css/reset.css');
@import url('../css/rodape.css');

* {
    box-sizing: border-box;
    scroll-padding-top: 4rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root {
    --cor-primaria: #000000;
    --cor-secundaria: #f6f6f6;
    --cor-terciaria: #6e5a72;
    --cor-hover: #6e5a72;
    --font-primaria: Georgia, 'Times New Roman', Times, serif;
}

body {
    font-family: var(--font-primaria);
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.logo1 img {
    width: 140px;
    margin-left: 70%;
}

.menu nav {
    list-style-type: none;
    display: flex;
}

.menu nav li {
    margin-right: 10px;
}

.menu nav li a {
    text-decoration: none;
    color: var(--cor-primaria);
    font-size: 18px;
    margin-left: 50px;
}

.menu nav li a:hover {
    color: var(--cor-hover);
}

.icons {
    margin-right: 10%;
}

.icons a {
    text-decoration: none;
    margin-left: 40px;
    font-size: 1rem;
    color: var(--cor-primaria);
}

.icons a:hover {
    color: var(--cor-hover);
}

.icons a i {
    font-size: 17px;
}

/* menu-mobile */

.menu-mobile {
    background-color: #00000062;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1000; /* Definindo um valor alto para ficar na frente */
}

.menu-mobile nav a {
    color: var(--cor-secundaria);
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    font-size: 16pt;
}

.menu-mobile nav a:hover {
    background-color: #00000060;
}

.menu-mobile nav {
    list-style-type: none; /* Remove os pontos da lista */
}

.menu-mobile nav li a {
    list-style-type: none; /* Remove os pontos da lista */
}

#btn-menu {
    background: transparent;
    width: 50px;
    height: 50px;
    outline: none;
    cursor: pointer;
    border: 4px solid #ccc;
    border-radius: 20px;
    transition: .2s;
    display: none;
}

.linha {
    position: relative;
    height: 3px;
    background-color: #ccc;
    width: 25px;
    display: block;
    margin: 5px auto;
    transform-origin: center;
    transition: 0.2s;
}

#btn-menu.ativo {
    border: 2px solid #5c1919;
}

#btn-menu.ativo .linha:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
    background-color: #5c1919;
}

#btn-menu.ativo .linha:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
    background-color: #5c1919;
}

#btn-menu.ativo .linha:nth-child(2) {
    width: 0;
    background-color: #5c1919;
}

.title {
    width: 84%;
    padding: 1rem;
    margin: 2rem 0;
    margin-left: 8%;
    text-align: center;
    font-size: 50px;
    color: #000000;
    background: rgba(119, 84, 126, 0.11);
}

.title h2 {
    font-size: 2.5rem;
}

/* Products container styles - unchanged for both desktop and mobile */
.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem; /* Adicionando espaçamento nos cantos da página */
    max-width: 1200px; /* Largura máxima para centralizar na página */
    margin: 0 auto; /* Centralizando a seção na página */
}

.products-container .box {
    flex: 1 1 280px;
    height: 55vh;
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}

.products-container img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(75, 72, 72, 0.1);
}

.products-container .box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem;
}

.products-container .box .content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.products-container .box .content span {
    padding: 0 1rem;
    color: var(--cor-secundaria);
    background: #77547e;
    border-radius: 4px;
    font-weight: 500;
}

.products-container .box .content a {
    padding: 0 1rem;
    color: var(--texto-cor);
    border: 2px solid #77547e;
    border-radius: 4px;
}

.products-container .box .content a:hover {
    background: #77547e;
    color: var(--cor-secundaria);
    transition: 0.2s all linear;
} 

/* Responsive styles */
@media screen and (max-width: 990px) {
    .menu, .icons {
        display: none;
    }

    .logo {
        width: 1%;
    }

    .menu-mobile.abrir {
        visibility: visible;
        height: calc(100vh - 77px);
    }

    #btn-menu {
        display: block;
    }
}



