/* =========================================================
   GLAMOUR É CHARME
   ESTILO PRINCIPAL
========================================================= */


/* =========================================================
   CORES DO PROJETO
========================================================= */

:root {

    --rosa-claro: #fff5f5;
    --rosa-suave: #f8dddd;
    --rosa: #e8b7b7;
    --rosa-escuro: #c98686;

    --dourado: #b88a44;
    --dourado-claro: #d8b36a;
    --dourado-suave: #f2dfb4;

    --branco: #ffffff;
    --creme: #fffaf5;

    --texto: #4c3838;
    --texto-suave: #806868;

    --sombra:
        0 10px 30px rgba(120, 70, 70, 0.12);
}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            var(--rosa-claro),
            var(--creme)
        );

    color: var(--texto);

    min-height: 100vh;

}


img {

    display: block;
    max-width: 100%;

}


button,
a {

    -webkit-tap-highlight-color: transparent;

}


button {

    font-family: inherit;

}


/* =========================================================
   CABEÇALHO
========================================================= */

.cabecalho {

    width: 100%;

    background:
        rgba(
            255,
            250,
            250,
            0.96
        );

    border-bottom:
        1px solid
        rgba(
            184,
            138,
            68,
            0.25
        );

    position: sticky;

    top: 0;

    z-index: 1000;

    backdrop-filter:
        blur(10px);

}


.container-cabecalho {

    width: min(
        1200px,
        calc(100% - 40px)
    );

    min-height: 90px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;

}


/* =========================================================
   MARCA
========================================================= */

.marca {

    display: flex;

    align-items: center;

    gap: 15px;

}


.logo {

    width: 70px;

    height: 70px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid
        var(--dourado-claro);

    box-shadow:
        0 5px 15px
        rgba(
            184,
            138,
            68,
            0.20
        );

}


.nome-marca h1 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    font-weight: 500;

    color: var(--dourado);

}


.nome-marca p {

    margin-top: 3px;

    font-size: 13px;

    color: var(--texto-suave);

}


/* =========================================================
   MENU
========================================================= */

.menu {

    display: flex;

    align-items: center;

    gap: 28px;

}


.menu a {

    position: relative;

    text-decoration: none;

    color: var(--texto);

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s;

}


.menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--dourado),
            var(--dourado-claro)
        );

    transition: 0.3s;

}


.menu a:hover {

    color: var(--dourado);

}


.menu a:hover::after {

    width: 100%;

}


/* =========================================================
   CARROSSEL
========================================================= */

.secao-carrossel {

    width: min(
        1300px,
        calc(100% - 40px)
    );

    margin: 35px auto 0;

}


.carrossel {

    position: relative;

    width: 100%;

    height: 500px;

    overflow: hidden;

    border-radius: 28px;

    background: var(--rosa-suave);

    box-shadow: var(--sombra);

}


.slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;

}


.slide.ativo {

    opacity: 1;

    visibility: visible;

}


.slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* CAMADA SOBRE A FOTO */

.slide::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(72, 38, 38, 0.65),
            rgba(72, 38, 38, 0.15),
            transparent
        );

}


/* =========================================================
   TEXTO DO CARROSSEL
========================================================= */

.conteudo-slide {

    position: absolute;

    z-index: 5;

    top: 50%;

    left: 7%;

    transform:
        translateY(-50%);

    width: min(
        500px,
        75%
    );

    color: var(--branco);

}


.conteudo-slide span {

    display: inline-block;

    margin-bottom: 12px;

    padding:
        7px 15px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.55
        );

    border-radius: 30px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.conteudo-slide h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        35px,
        5vw,
        60px
    );

    line-height: 1.05;

    font-weight: 500;

    margin-bottom: 18px;

}


.conteudo-slide p {

    max-width: 450px;

    line-height: 1.6;

    margin-bottom: 25px;

    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

}


/* =========================================================
   BOTÃO DESTAQUE
========================================================= */

.botao-destaque {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 25px;

    border-radius: 30px;

    text-decoration: none;

    color: #49331e;

    font-weight: bold;

    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c79545
        );

    box-shadow:
        0 7px 20px
        rgba(
            0,
            0,
            0,
            0.15
        );

    transition: 0.3s;

}


.botao-destaque:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(
            0,
            0,
            0,
            0.22
        );

}


/* =========================================================
   SETAS DO CARROSSEL
========================================================= */

.botao-carrossel {

    position: absolute;

    z-index: 10;

    top: 50%;

    transform:
        translateY(-50%);

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    font-size: 25px;

    color: var(--branco);

    background:
        rgba(
            0,
            0,
            0,
            0.28
        );

    backdrop-filter:
        blur(5px);

    transition: 0.3s;

}


.botao-carrossel:hover {

    background:
        rgba(
            184,
            138,
            68,
            0.90
        );

}


.anterior {

    left: 20px;

}


.proximo {

    right: 20px;

}


/* =========================================================
   INDICADORES DO CARROSSEL
========================================================= */

.indicadores-carrossel {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-top: 17px;

}


.indicador {

    width: 10px;

    height: 10px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    background: #d9c4c4;

    transition: 0.3s;

}


.indicador.ativo {

    width: 28px;

    border-radius: 10px;

    background:
        var(--dourado);

}


/* =========================================================
   SEÇÃO DE PRODUTOS
========================================================= */

.secao-produtos {

    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin:
        80px auto 100px;

}


/* =========================================================
   TÍTULO DA SEÇÃO
========================================================= */

.titulo-secao {

    text-align: center;

    max-width: 650px;

    margin:
        0 auto 40px;

}


.titulo-secao span {

    display: block;

    margin-bottom: 8px;

    color: var(--dourado);

    font-size: 13px;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 3px;

}


.titulo-secao h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        35px,
        5vw,
        50px
    );

    font-weight: 500;

    color: var(--texto);

    margin-bottom: 12px;

}


.titulo-secao p {

    color: var(--texto-suave);

    line-height: 1.7;

}


/* =========================================================
   CATEGORIAS
========================================================= */

.categorias {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 40px;

}


.categoria {

    min-height: 42px;

    padding:
        0 21px;

    border:
        1px solid
        #ead2d2;

    border-radius: 30px;

    cursor: pointer;

    background: var(--branco);

    color: var(--texto);

    font-weight: 600;

    transition: 0.3s;

}


.categoria:hover {

    border-color:
        var(--dourado-claro);

    color:
        var(--dourado);

}


.categoria.ativa {

    color: var(--branco);

    border-color:
        var(--dourado);

    background:
        linear-gradient(
            135deg,
            var(--dourado-claro),
            var(--dourado)
        );

}


/* =========================================================
   GRADE DE PRODUTOS
========================================================= */

.grade-produtos {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 28px;

}


/* =========================================================
   CARD DO PRODUTO
========================================================= */

.card-produto {

    overflow: hidden;

    border:
        1px solid
        rgba(
            184,
            138,
            68,
            0.15
        );

    border-radius: 22px;

    background: var(--branco);

    box-shadow:
        0 8px 25px
        rgba(
            100,
            60,
            60,
            0.08
        );

    transition:
        transform 0.3s,
        box-shadow 0.3s;

}


.card-produto:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 15px 35px
        rgba(
            100,
            60,
            60,
            0.15
        );

}


/* =========================================================
   IMAGEM DO PRODUTO
========================================================= */

.imagem-produto {

    position: relative;

    width: 100%;

    height: 300px;

    overflow: hidden;

    background:
        var(--rosa-claro);

}


.imagem-produto img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s;

}


.card-produto:hover
.imagem-produto img {

    transform:
        scale(1.05);

}


/* =========================================================
   ETIQUETA
========================================================= */

.etiqueta-produto {

    position: absolute;

    top: 15px;

    left: 15px;

    padding:
        7px 13px;

    border-radius: 20px;

    color: var(--branco);

    background:
        linear-gradient(
            135deg,
            var(--rosa-escuro),
            var(--dourado)
        );

    font-size: 11px;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   INFORMAÇÕES DO PRODUTO
========================================================= */

.informacoes-produto {

    padding: 23px;

}


.informacoes-produto h3 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 10px;

    color: var(--texto);

}


.informacoes-produto p {

    min-height: 68px;

    color: var(--texto-suave);

    font-size: 14px;

    line-height: 1.6;

}


.preco {

    display: block;

    margin:
        15px 0 18px;

    color: var(--dourado);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

}


/* =========================================================
   BOTÃO COMPRAR
========================================================= */

.botao-comprar {

    width: 100%;

    min-height: 48px;

    border: none;

    border-radius: 30px;

    cursor: pointer;

    color: var(--branco);

    font-weight: bold;

    background:
        linear-gradient(
            135deg,
            var(--rosa-escuro),
            #b67878
        );

    transition: 0.3s;

}


.botao-comprar:hover {

    transform:
        translateY(-2px);

    background:
        linear-gradient(
            135deg,
            var(--dourado-claro),
            var(--dourado)
        );

}


/* =========================================================
   CONTATO
========================================================= */

.secao-contato {

    padding:
        80px 20px;

    background:
        linear-gradient(
            135deg,
            #f3cccc,
            #fff0e8
        );

    text-align: center;

}


.conteudo-contato {

    max-width: 700px;

    margin: auto;

}


.conteudo-contato span {

    color: var(--dourado);

    text-transform: uppercase;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;

}


.conteudo-contato h2 {

    margin:
        12px 0 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        32px,
        5vw,
        48px
    );

    font-weight: 500;

}


.conteudo-contato p {

    max-width: 550px;

    margin:
        0 auto 25px;

    color: var(--texto-suave);

    line-height: 1.7;

}


/* =========================================================
   WHATSAPP
========================================================= */

.botao-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding:
        0 28px;

    border-radius: 30px;

    text-decoration: none;

    color: var(--branco);

    font-weight: bold;

    background:
        linear-gradient(
            135deg,
            var(--dourado-claro),
            var(--dourado)
        );

    box-shadow:
        0 8px 20px
        rgba(
            130,
            90,
            40,
            0.20
        );

    transition: 0.3s;

}


.botao-whatsapp:hover {

    transform:
        translateY(-3px);

}


/* =========================================================
   RODAPÉ
========================================================= */

.rodape {

    padding:
        45px 20px;

    text-align: center;

    background: #4b3737;

    color:
        rgba(
            255,
            255,
            255,
            0.85
        );

}


.conteudo-rodape h3 {

    margin-bottom: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    font-weight: 500;

    color:
        var(--dourado-suave);

}


.conteudo-rodape p {

    font-size: 14px;

    line-height: 1.6;

}


.copyright {

    margin-top: 18px;

    opacity: 0.65;

    font-size: 12px !important;

}


/* =========================================================
   TABLET
========================================================= */

@media (
    max-width: 900px
) {

    .container-cabecalho {

        min-height: 80px;

    }


    .nome-marca p {

        display: none;

    }


    .grade-produtos {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

    }


    .carrossel {

        height: 440px;

    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (
    max-width: 650px
) {

    .container-cabecalho {

        width:
            calc(100% - 24px);

        gap: 10px;

    }


    .logo {

        width: 55px;

        height: 55px;

    }


    .nome-marca h1 {

        font-size: 20px;

    }


    .menu {

        gap: 12px;

    }


    .menu a {

        font-size: 12px;

    }


    .secao-carrossel {

        width:
            calc(100% - 24px);

        margin-top: 20px;

    }


    .carrossel {

        height: 420px;

        border-radius: 20px;

    }


    .conteudo-slide {

        left: 8%;

        width: 78%;

    }


    .conteudo-slide h2 {

        font-size: 37px;

    }


    .conteudo-slide p {

        font-size: 14px;

    }


    .botao-carrossel {

        width: 40px;

        height: 40px;

        font-size: 19px;

    }


    .anterior {

        left: 10px;

    }


    .proximo {

        right: 10px;

    }


    .secao-produtos {

        width:
            calc(100% - 24px);

        margin:
            60px auto 70px;

    }


    .grade-produtos {

        grid-template-columns:
            1fr;

        gap: 22px;

    }


    .imagem-produto {

        height: 330px;

    }


    .informacoes-produto p {

        min-height: auto;

    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (
    max-width: 430px
) {

    .menu a:nth-child(3) {

        display: none;

    }


    .carrossel {

        height: 390px;

    }


    .conteudo-slide h2 {

        font-size: 32px;

    }


    .conteudo-slide p {

        line-height: 1.5;

    }


    .imagem-produto {

        height: 290px;

    }

}