* {
    margin: 0;
    padding: 0;
    font-family: var(--satoshi);
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    /* PRETO */
    --preto-900: #0A0A0B; /* preto principal da marca, quase absoluto */
    --preto-800: #1A1A1D; /* fundo escuro, headers, footer */
    --preto-700: #2E2E33; /* texto principal em fundo claro */
    --preto-500: #4A4A50; /* texto secundário */
    --preto-400: #6c6c70; /* texto desabilitado, ícones sutis */
    --preto-300: #8A8A90; /* texto desabilitado, ícones sutis */
    --preto-100: #D8D7DA; /* bordas sobre fundo escuro */
    --preto-50:  #F5F4F6; /* fundo neutro claro, quase branco */
    
    /* LILAS */
    --lilas-900: #2E1F45; /* lilás profundo, quase roxo — títulos de destaque */
    --lilas-800: #4A3170; /* variação escura, hover de botão */
    --lilas-600: #7C57A8; /* lilás principal da marca — cor de assinatura */
    --lilas-400: #A987C9; /* lilás médio, ilustrações, ícones */
    --lilas-200: #D6C3E8; /* tag, badge, fundo suave */
    --lilas-50:  #F3EDF9; /* fundo de seção, cards claros */
    
    /* DOURADO */
    --dourado-900: #5C4308; /* dourado escuro, texto sobre fundo claro dourado */
    --dourado-800: #8A660F; /* dourado profundo */
    --dourado-600: #C6952A; /* dourado principal — detalhes, bordas, ícones */
    --dourado-400: #D9B65E; /* dourado claro — hover, destaques suaves */
    --dourado-200: #EDD9A3; /* fundo de badge dourado */
    --dourado-50:  #FBF4E4; /* fundo quente, seções de destaque */
    
    /* ---------- NEUTROS DE APOIO ---------- */
    --branco:      #FFFFFF;
    --off-white:   #FAF9FB; /* fundo geral do site — mais aconchegante que branco puro */

    /* FONTES */
    --satoshi: 'Satoshi', sans-serif;
    --serif: 'Boska', serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.header {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.header-linha1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--branco);
    min-height: 3.5vh;
    padding: 6px 12px;
    background-color: var(--preto-300);
}

.header-linha1 span {
    font-size: clamp(11px, 2.2vw, 15px);
    text-align: center;
}

.header-linha2 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--preto-900);
    min-height: 13vh;
    align-items: center;
    gap: clamp(12px, 2vw, 32px);
    border-bottom: 1px solid var(--preto-300);
    padding: 8px 16px;
}

.header-logo {
    width: clamp(70px, 4.5vw, 130px);
    padding-top: 2vh;
    padding-bottom: 1vh;
}

.header-navegacao {
    display: flex;
    gap: clamp(10px, 1vw, 20px);
    order: 3;
}

.header-navegacao-esquerda {
    order: 1;
}

.header-centro {
    order: 2;
}

.header-navegacao-direita {
    order: 3;
}

.a-header-navegacao {
    color: var(--preto-50);
    padding-bottom: 0.4vh;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
    font-size: clamp(13px, 1.1vw, 16px);
    white-space: nowrap;
}

.a-header-navegacao:hover {
    color: var(--branco);
    border-bottom: 1px solid var(--branco);
}

.header-linha3 {
    display: flex;
    min-height: 6vh;
    align-items: center;
    justify-content: center;
    background-color: var(--preto-900);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 12px;
}

.header-linha3::-webkit-scrollbar {
    display: none;
}

.a-header-produtos {
    color: var(--preto-100);
    margin-left: clamp(8px, 2vw, 32px);
    margin-right: clamp(8px, 2vw, 32px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(12px, 1vw, 15px);
    white-space: nowrap;
    flex-shrink: 0;
}

.lucide-chevron-down {
    font-weight: 100;
}

.a-header-produtos:hover {
    color: var(--branco);
}

/* --- Menu hambúrguer (escondido no desktop) --- */
.menu-toggle-input {
    display: none;
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    order: 0;
    padding: 8px;
}

.menu-toggle-label span {
    width: 24px;
    height: 2px;
    background-color: var(--preto-50);
    transition: all 0.3s ease;
}

.menu-toggle-label:hover span {
    background-color: var(--branco);
}

.section-hero {
    background-image: url('../img/recebendo-presente.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 78vh;
    text-align: center;
}

.h1 {
    font-size: clamp(2.2rem, 5.2vw, 6rem);
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    color: var(--preto-50);
    font-weight: 600;
    padding-top: 7vh;
}

.p-hero {
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
    color: var(--preto-100);
    padding-bottom: 10vh;
}

.botao-hero {
    color: var(--branco);
    border: 1px solid var(--branco);
    font-size: 18px;
    padding: 1vh 3vw;
    margin-left: 1vw;
    margin-right: 1vw;
    transition: all 0.3s ease;
}

.botao-hero:hover {
    background-color: #FFFFFF35;
}

/* faixa */

.faixa-info {
    background-color: var(--branco);
    overflow: hidden;
    padding: 2vh 0;
}
 
.faixa-track {
    display: flex;
    width: max-content;
    animation: faixa-scroll 25s linear infinite;
}
 
.faixa-grupo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
 
.faixa-item {
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    color: var(--preto-700);
    white-space: nowrap;
    padding: 0 1.5vw;
}
 
.faixa-ponto {
    color: var(--preto-700);
    font-size: 12px;
}
 
@keyframes faixa-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* section sobre nos */

.div-sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    align-items: center;
}

.img-sobre {
    width: 100%;
}

.sobre-texto h2 {
    color: var(--lilas-900);
    font-size: 2.5rem;
}

.sobre-texto p {
    margin-top: 4vh;
    max-width: 60%;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    line-height: 35px;
    color: var(--preto-800);
}


/* section produtos destaque */
.section-destaques {
    padding: 5vh 5vw;
    background-color: var(--preto-50);
    text-align: center;
}

.destaques-header {
    margin-bottom: 6vh;
}
 
.h2-destaques {
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--preto-900);
    margin-bottom: 1vh;
}
 
.p-destaques {
    font-size: 15px;
    color: var(--preto-500);
}
 
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 75%;
    gap: 4vw;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.card-produto {
    color: inherit;
    display: block;
}
 
.card-produto-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 4 / 5;
    background-color: var(--preto-50);
    overflow: hidden;
    margin-bottom: 1.5vh;
}
 
.card-produto-imagem img {
    width: 70%;
    height: auto;
    object-fit: cover;
    display: block;
}
 
.card-produto-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--preto-900);
    color: var(--branco);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1vh 1vw;
}
 
.card-produto-titulo {
    font-size: 15px;
    font-weight: 500;
    color: var(--preto-900);
    margin-bottom: 0.3vh;
}
 
.card-produto-texto {
    font-size: 13px;
    color: var(--preto-300);
    margin-bottom: 0.8vh;
}
 
.card-produto-preco {
    font-size: 14px;
    color: var(--preto-700);
}
 
.card-produto-preco-de {
    color: var(--preto-300);
    text-decoration: line-through;
    margin-right: 0.6vw;
}

.link-todos-produtos {
    padding-top: 1vh;
}

.link-todos-produtos a {
    position: relative;
    color: var(--preto-300);
    padding-bottom: 0.3vh;
    display: inline-flex;
    align-items: center;
    transition: all 0.5s ease;
}

.link-todos-produtos a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.1px;
    background-color: var(--lilas-800);
    transform: scaleX(0);
    transform-origin: left; 
    transition: transform 0.4s ease;
}

.link-todos-produtos a:hover {
    color: var(--lilas-800);
}

.link-todos-produtos a:hover::after {
    transform: scaleX(1);
}

.lucide-chevron-right {
    width: 1.2vw;
}


/* section banner */
.section-banner {
    background-color: var(--preto-50);
    padding: 8vh 0;
    display: flex;
    justify-content: center;
}
 
.banner-box {
    width: 75%;
    height: 40vh;
    background-color: var(--lilas-800);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8vw;
    overflow: visible;
}
 
.banner-texto {
    max-width: 50%;
}
 
.banner-texto p {
    color: var(--off-white);
    font-size: 2rem;
    line-height: 1.4;
}
 
.banner-imagem {
    position: relative;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
}
 
.banner-imagem img {
    position: absolute;
    right: -4vw;
    bottom: -19vh;
    width: 65vh;
    max-width: none;
}

.section-todos-produtos {
    padding: 5vh 5vw 20vh 5vw;
    background-color: var(--preto-50);
    text-align: center;
}

.produtos-header h2 {
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--preto-900);
    margin-bottom: 1vh;
}

.produtos-header p {
    font-size: 15px;
    color: var(--preto-500);    
}


/* footer */
.footer {
    background-color: var(--preto-900);
    padding: 8vh 6vw 0;
    border-top: 1px solid var(--preto-300);
}
 
.footer-topo {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 4vw;
    padding-bottom: 6vh;
}
 
.footer-logo {
    font-size: 1.6rem;
    color: var(--branco);
    margin-bottom: 1.2vh;
}
 
.footer-tagline {
    font-size: 14px;
    color: var(--preto-300);
    max-width: 85%;
    line-height: 1.5;
    margin-bottom: 2.5vh;
}
 
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--preto-400);
    font-size: 14px;
    transition: color 0.3s ease;
}
 
.footer-whatsapp:hover {
    color: var(--dourado-400);
}
 
.footer-icone {
    width: 16px;
    height: 16px;
}
 
.footer-titulo-coluna {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--preto-50);
    font-weight: 600;
    margin-bottom: 2vh;
}
 
.footer-link {
    display: block;
    font-size: 14px;
    color: var(--preto-300);
    margin-bottom: 1.4vh;
    width: fit-content;
    transition: color 0.3s ease;
}
 
.footer-link:hover {
    color: var(--branco);
}
 
.footer-texto {
    font-size: 14px;
    color: var(--preto-300);
    line-height: 1.6;
    margin-bottom: 1.4vh;
}
 
.footer-redes {
    display: flex;
    gap: 12px;
}
 
.footer-rede-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--preto-300);
    border-radius: 50%;
    color: var(--preto-100);
    transition: all 0.3s ease;
}
 
.footer-rede-icone svg {
    width: 16px;
    height: 16px;
}
 
.footer-rede-icone:hover {
    color: var(--preto-900);
    background-color: var(--dourado-400);
    border-color: var(--dourado-400);
}

.footer-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vh 0;
    border-top: 1px solid var(--preto-700);
}
 
.footer-base p {
    font-size: 12px;
    color: var(--preto-300);
}





/* produto.html */
.section-produto {
    margin: 10vh 10vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    text-align: center;
    align-items: center;
}

.div-imgproduto img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.div-textoproduto {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.div-textoproduto h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--preto-500);
}

.div-textoproduto p {
    color: var(--preto-400);
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--preto-100);
    font-size: clamp(0.95rem, 1.3vw, 1rem);
}

.div-textoproduto h2 {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    color: var(--preto-700);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

.div-textoproduto a {
    display: inline-block;
    background-color: var(--preto-800);
    color: var(--branco);
    padding: 1.2rem 2.5rem;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    transition: all 0.3s ease;
}

.div-textoproduto a:hover {
    background-color: var(--preto-700);
}














@media (max-width: 1200px) {
    .div-sobre {
        grid-template-columns: 1fr; 
        gap: 4vh;
        padding: 0 6vw 6vh;
    }

    .sobre-texto {
        order: 2; 
    }

    .div-sobre > div:last-child {
        order: 1; 
    }

    .sobre-texto h2 {
        margin: 0;
        font-size: 1.8rem;
    }

    .img-sobre {
        display: block;
        width: calc(100% + 12vw);
        max-width: none;
        margin: 0 -6vw;
    }

    .sobre-texto p {
        max-width: 100%; 
        text-align: left; 
        font-size: 1rem;
        line-height: 1.6; 
    }
}

@media (max-width: 1100px) {
 
    .banner-box {
        width: 85%;
        height: 34vh;
        padding: 0 6vw;
    }
 
    .banner-texto p {
        font-size: 1.6rem;
    }
 
    .banner-imagem img {
        width: 48vh;
        right: -2vw;
        bottom: -13vh;
    }
}

@media (max-width: 992px) {
    .header-navegacao {
        gap: 14px;
    }

    .section-produto {
        margin: 8vh 6vw;
        gap: 5vw;
    }
}

@media (max-width: 900px) {
    /* section hero */
    .h1 {
        padding-top: 12vh;
        font-size: 3rem;
        max-width: 90%;
    }

    .p-hero {
        max-width: 90%;
    }


    /* faixa */
    .faixa-item {
        font-size: 13px;
        padding: 0 4vw;
    }


    /* section sobre nos */
    .div-sobre {
        grid-template-columns: 1fr; 
        gap: 4vh;
        padding: 0 6vw 6vh;
    }

    .sobre-texto {
        order: 2; 
    }

    .div-sobre > div:last-child {
        order: 1; 
    }

    .sobre-texto h2 {
        margin: 0;
        font-size: 1.8rem;
    }

    .img-sobre {
        display: block;
        width: calc(100% + 12vw);
        max-width: none;
        margin: 0 -6vw;
    }

    .sobre-texto p {
        max-width: 100%; 
        text-align: left; 
        font-size: 1rem;
        line-height: 1.6; 
    }


    /* section produtos destaques */
    .produtos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
        margin-bottom: 10vh;
        gap: 5vw;
    }

    .card-produto {
        flex: 0 0 75%; 
        scroll-snap-align: start;
    }

    .produtos-grid::-webkit-scrollbar {
        display: none;
    }

    .produtos-grid {
        scrollbar-width: none; 
    }


    /* footer */
    .footer {
        padding: 6vh 6vw 0;
    }
 
    .footer-topo {
        grid-template-columns: 1fr 1fr;
        row-gap: 5vh;
    }
 
    .footer-marca {
        grid-column: 1 / -1;
    }
 
    .footer-tagline {
        max-width: 100%;
    }
 
    .footer-base {
        flex-direction: column;
        gap: 1vh;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-linha2 {
        position: relative;
        justify-content: center;
        min-height: auto;
        padding: 10px 16px;
    }

    .menu-toggle-label {
        display: flex;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-centro {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 1vh;
    }

    .header-logo {
        width: clamp(80px, 20vw, 120px);
        padding: 0;
    }

    .header-navegacao-esquerda,
    .header-navegacao-direita {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    #menu-toggle:checked ~ .header-navegacao-esquerda,
    #menu-toggle:checked ~ .header-navegacao-direita {
        max-height: 200px;
        padding-top: 10px;
    }

    #menu-toggle:checked ~ .header-navegacao-esquerda {
        padding-bottom: 4px;
    }

    .a-header-navegacao {
        font-size: 15px;
    }

    .header-linha3 {
        justify-content: center;
    }

    .section-produto {
        grid-template-columns: 1fr;
        margin: 6vh 8vw;
        gap: 4vh;
    }

    .div-imgproduto img {
        max-width: 320px;
    }

    .div-textoproduto {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
 
    .banner-box {
        width: 80%;
        height: auto;
        flex-direction: column;
        border-radius: 28px;
        padding: 5vh 6vw 0;
        overflow: hidden; /* aqui o vazamento não faz sentido, então cortamos */
    }
 
    .banner-texto {
        max-width: 100%;
        text-align: center;
    }
 
    .banner-texto p {
        font-size: 1.3rem;
    }
 
    .banner-imagem {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 3vh;
    }
 
    .banner-imagem img {
        position: static;
        width: 100%;
        max-width: 260px;
    }
}


@media (max-width: 560px) {
    .footer-topo {
        grid-template-columns: 1fr;
        row-gap: 4.5vh;
    }
}

@media (max-width: 480px) {
    .header-linha1 span {
        font-size: 11px;
    }

    .a-header-produtos {
        font-size: 12px;
        margin-left:7px;
        margin-right: 7px;
    }

    .a-header-produtos svg {
        width: 18px;
        height: 18px;
    }

    .section-produto {
        margin: 5vh 6vw;
    }

    .div-imgproduto img {
        max-width: 260px;
    }

    .div-textoproduto a {
        padding: 1rem 1.8rem;
    }
}