:root {
    --font-h1-min: 32px;
    --font-h1-max: 62px;
    --font-h2-min: 28px;
    --font-h2-max: 48px;
    --font-h3-min: 24px;
    --font-h3-max: 40px;
    --scale-h1: 7vw;
    --scale-h2: 5vw;
    --scale-h3: 4vw;

    /* Cores primárias e secundárias */
    --color-primary: #007bff;
    --color-secondary: #6c757d;
    --color-background-dark: #333;

    /* Tamanhos específicos para <p> primário e secundário */
    --font-p-primary-min: 14px;
    --font-p-primary-max: 18px;
    --font-p-secondary-min: 12px;
    --font-p-secondary-max: 16px;

    /* Outros tamanhos, se desejar */
    --scale-p-primary: 3vw; /* exemplo de escala */
    --scale-p-secondary: 2.5vw; /* exemplo de escala */
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
                                                
}

/* Para títulos já existentes */
h1 {
    font-size: clamp(var(--font-h1-min), var(--scale-h1), var(--font-h1-max));
}
h2 {
    font-size: clamp(var(--font-h2-min), var(--scale-h2), var(--font-h2-max));
}
h3 {
    font-size: clamp(var(--font-h3-min), var(--scale-h3), var(--font-h3-max));
}

/* Classes específicas para <p> primário e secundário com clamp */
.p-primary {
    font-size: clamp(var(--font-p-primary-min), var(--scale-p-primary), var(--font-p-primary-max));
    color: #fff;
}

.p-secondary {
    font-size: clamp(var(--font-p-secondary-min), var(--scale-p-secondary), var(--font-p-secondary-max));
    color: var(--color-secondary);
}

html {
     scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #F7F2ED;
}

/* HEADER */

header {
    width: 100vw;
    height: 80px;
    background-color: transparent;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
}

header.header-scroll {
    transition: 0.8s;
    background-color: #785F49;
}

.content__header {
    width: 100%;
    max-width: 1440px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
    padding: 0px 100px;
}


.container__nav {
    max-width: 400px;
    width: 100%;
    height: 100%;
}

.content_list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.logo__header {
    width: 280px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    overflow: hidden;
    background-color: #9BB1A4;
}

.logo__header_img {
    width: 280px;
}

.link__nav {
    color: #fff;
    text-shadow: 2px 2px 4px #000000;
    font-size: 16px;
}

.container__menu__mobile {
    display: none;
    color: #fff;
    font-size: 20px;
    align-items: center;
}

@media screen and (max-width: 1024px){
    .content__header {
        padding: 0px 50px;
    }
}

@media screen and (max-width: 768px){
    .container__menu__mobile {
        display: flex;
    }

    .container__nav {
        display: none;
    }
}

@media screen and (max-width: 500px){
    .content__header {
        padding: 0px 10px 0px 0px
    }
    
    .logo__header {
        width: 200px;
        height: 80px;
        object-fit: cover;
        overflow: hidden;
    }
}

/* ASIDE */

aside {
    width: 320px;
    height: 100vh;
    background-color: #785F49;
    position: fixed;
    top: 0px;
    right: -100%;
    transition: 0.4s;
    z-index: 10;
}

aside.show {
    right: 0px;
}

.container_close {
    display: flex;
    justify-content: start;
    margin: 20px;
}

#close__aside {
    color: #fff;
    z-index: 10;
}

.container__menu__mobile__nav {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content__menu_list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.logo__header__mobile {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo__header__mobile_img {
    width: 150px;
}

/* HOME */

.home {
    width: 100vw;
    max-height: 100vh;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.home__img {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.lancamentos-section {
    width: 100%;
    padding: 0px 0px;
    background-color: #785F49;
}

.lancamentos {
    max-width: 1440px;
    margin: 0px auto;
    text-align: center;
    padding: 65px 0px
}

.title-primary {
    color: #fff;
    font-weight: 600;
}

.title-primary span {
    text-shadow: 2px 2px 4px #000000;
    color: #CFB59B;
}

.container__lancamentos {
    display: flex;
    gap: 40px; /* Espaçamento entre os cards */
    flex-wrap: wrap; /* Permite que os cards quebrem para a próxima linha em telas menores */
    justify-content: center; /* Centraliza os cards na linha */
    margin-top: 50px;
    transition: transform 1s ease-in-out;
}

.product-card__lancamentos:hover {
    transform: scale(1.05); /* Aumenta 5% no hover */
    cursor: pointer;
}

.product-card__lancamentos {
    background-color: #9BB1A4;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(155, 177, 164 0.4);
    overflow: hidden; /* Garante que a imagem fique dentro das bordas arredondadas */
    width: 300px; /* Largura aproximada dos cards (ajuste conforme necessário) */
}



.product-card__lancamentos img {
    width: 100%;
    display: block; /* Remove espaço extra abaixo da imagem */
    height: 400px; /* Mantém a proporção da imagem */
    object-fit: cover; /* Preenche o espaço mantendo a proporção e cortando se necessário */
}

.card-title__lancamentos {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

/* Estilos responsivos (opcional) */
@media (max-width: 768px) {
    .product-card__lancamentos {
        width: 90%;
    }

    .home__img {
        height: 50vh;
    }
}


/* Footer */

.footer {
    width: 100vw;
    height: 270px;
    padding: 40px 0px;
}

.container__footer {
    background-color: #bcb7b1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
}

.content_footer {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    padding: 0px 20px;
}


.logo__footer {
    width: 300px;
}

.logo__footer_img {
    width: 100%;
}

.endereco__footer {
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.redes-sociais__footer {
    color: #fff;
    font-size: 50px;
}

.link {
    color: #fff;
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
}

.barra__footer {
    width: 100%;
    max-width: 1440px;
    margin: 0px auto;
}

.politica-privacidade {
    text-align: center;
    color: #9BB1A4;
    margin-top: 10px;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .footer {
        width: 100vw;
        height: max-content;
        padding: 40px 0px 0px 0px;
    }
    
    .content_footer {
        display: flex;
        flex-direction: column;
        row-gap: 50px;
    }

    .endereco__footer {
        text-align: center;
    }
    
}

.introducao {
    max-width: 1440px;
    padding: 40px;
    margin: 150px auto;
    display: flex;
}

.left-content h2 {
    color:rgb(219, 199, 154);
}

.left-content h2 span {
    color: #fff;
}

.right-content {
    color: #fff;
    margin-left: 50px;
}

@media (max-width: 970px) {
    .introducao {
        flex-direction: column;
        text-align: center;
        row-gap: 50px;
    }

    .right-content {
        margin-left: 0px;
    }
    
}