/* =========================================================
   VELAS TALISMÃ
   STYLE.CSS
   ========================================================= */

:root {

    --black: #080706;
    --black-soft: #0e0c0a;
    --black-card: #12100d;

    --gold: #d5ad63;
    --gold-light: #f0d49a;
    --gold-dark: #9f7838;

    --cream: #f4ead9;
    --cream-soft: #cfc3b0;

    --border:
        rgba(213, 173, 99, 0.18);

    --serif:
        Georgia,
        "Times New Roman",
        serif;

    --sans:
        Arial,
        Helvetica,
        sans-serif;

}


/* =========================================================
   RESET
   ========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    background:
        var(--black);

}


body {

    min-height: 100vh;

    background:
        var(--black);

    color:
        var(--cream);

    font-family:
        var(--sans);

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


::selection {

    background:
        var(--gold);

    color:
        var(--black);

}


/* =========================================================
   LOADER
   ========================================================= */

.loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(213,173,99,0.10),
            transparent 36%
        ),
        #080706;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;

}


.loader.hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


.loader-candle {

    position: relative;

    width: 50px;

    height: 82px;

    margin-bottom: 27px;

}


.loader-body {

    position: absolute;

    left: 8px;

    bottom: 6px;

    width: 34px;

    height: 51px;

    border-radius:
        5px 5px 8px 8px;

    background:
        linear-gradient(
            90deg,
            #79582e,
            #d5ad63 30%,
            #f0d49a 50%,
            #a17839 76%,
            #694b28
        );

    box-shadow:
        inset 5px 0 9px rgba(255,255,255,0.08),
        inset -5px 0 10px rgba(0,0,0,0.16),
        0 0 25px rgba(255,207,112,0.18);

}


.loader-base {

    position: absolute;

    left: 3px;

    bottom: 0;

    width: 44px;

    height: 9px;

    border-radius: 50%;

    background:
        var(--gold-dark);

}


.loader-wick {

    position: absolute;

    left: 24px;

    top: 22px;

    width: 2px;

    height: 12px;

    background:
        #302419;

    z-index: 3;

}


.loader-flame {

    position: absolute;

    z-index: 4;

    left: 15px;

    top: 0;

    width: 20px;

    height: 27px;

    border-radius:
        50% 50% 50% 50% /
        68% 68% 32% 32%;

    background:
        radial-gradient(
            circle at 50% 70%,
            #fff7d7 0 17%,
            #f0c86c 35%,
            #c98736 69%,
            transparent 72%
        );

    filter:
        drop-shadow(
            0 0 11px rgba(213,173,99,0.85)
        );

    transform-origin:
        bottom center;

    animation:
        flameLoader
        0.8s
        infinite
        alternate
        ease-in-out;

}


.loader-content h2 {

    font-family:
        var(--serif);

    font-size:
        22px;

    letter-spacing:
        0.18em;

    font-weight:
        400;

}


.loader-content > span {

    margin-top:
        7px;

    color:
        var(--gold);

    font-size:
        9px;

    letter-spacing:
        0.4em;

}


.loader-line {

    width:
        120px;

    height:
        1px;

    margin-top:
        25px;

    overflow:
        hidden;

    background:
        rgba(213,173,99,0.15);

}


.loader-line div {

    width:
        40%;

    height:
        100%;

    background:
        var(--gold);

    animation:
        loaderLine
        1.2s
        ease-in-out
        infinite;

}


/* =========================================================
   HEADER
   ========================================================= */

.header {

    position: fixed;

    z-index: 1000;

    top: 0;
    left: 0;
    right: 0;

    padding:
        17px 6vw 12px;

    background:
        rgba(8,7,6,0.68);

    border-bottom:
        1px solid transparent;

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    transition:
        background 0.3s ease,
        border-color 0.3s ease;

}


.header.scrolled {

    background:
        rgba(8,7,6,0.93);

    border-color:
        var(--border);

}


.header-top {

    max-width:
        1400px;

    margin:
        auto;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

}


.logo {

    display:
        flex;

    flex-direction:
        column;

    line-height:
        1;

}


.logo-main {

    font-family:
        var(--serif);

    font-size:
        20px;

    letter-spacing:
        0.05em;

}


.logo-sub {

    margin-top:
        5px;

    color:
        var(--gold);

    font-size:
        8px;

    letter-spacing:
        0.4em;

    text-transform:
        uppercase;

}


.socials {

    display:
        flex;

    gap:
        8px;

}


.social-link {

    width:
        32px;

    height:
        32px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(213,173,99,0.25);

    border-radius:
        50%;

    color:
        var(--cream-soft);

    transition:
        0.25s ease;

}


.social-link svg {

    width:
        15px;

    height:
        15px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.6;

}


.social-link:nth-child(2) svg {

    fill:
        currentColor;

    stroke:
        none;

}


.social-link:hover {

    color:
        var(--gold-light);

    border-color:
        var(--gold);

    background:
        rgba(213,173,99,0.08);

    transform:
        translateY(-2px);

}


.navigation {

    max-width:
        1400px;

    margin:
        13px auto 0;

    display:
        flex;

    justify-content:
        flex-end;

    gap:
        29px;

}


.navigation a {

    position:
        relative;

    color:
        rgba(244,234,217,0.65);

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

    transition:
        color 0.25s ease;

}


.navigation a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        -7px;

    width:
        0;

    height:
        1px;

    background:
        var(--gold);

    transition:
        width 0.3s ease;

}


.navigation a:hover {

    color:
        var(--cream);

}


.navigation a:hover::after {

    width:
        100%;

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position:
        relative;

    min-height:
        100vh;

    min-height:
        720px;

    display:
        flex;

    align-items:
        center;

    padding:
        150px 8vw 100px;

    overflow:
        hidden;

    background:
        radial-gradient(
            ellipse at 73% 52%,
            rgba(213,173,99,0.09),
            transparent 30%
        ),
        radial-gradient(
            ellipse at 25% 100%,
            rgba(213,173,99,0.045),
            transparent 40%
        ),
        var(--black);

}


.hero::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

}


.hero-content {

    position:
        relative;

    z-index:
        4;

    max-width:
        680px;

}


.eyebrow {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    margin-bottom:
        23px;

    color:
        var(--gold);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.4em;

}


.eyebrow span {

    width:
        22px;

    height:
        1px;

    background:
        var(--gold);

    opacity:
        0.6;

}


.hero h1 {

    max-width:
        650px;

    font-family:
        var(--serif);

    font-weight:
        400;

    font-size:
        clamp(58px,8vw,110px);

    line-height:
        0.91;

    letter-spacing:
        -0.055em;

}


.hero h1 strong {

    display:
        block;

    color:
        var(--gold-light);

    font-weight:
        400;

    font-style:
        italic;

}


.hero-content > p {

    max-width:
        420px;

    margin-top:
        29px;

    color:
        var(--cream-soft);

    font-size:
        14px;

    line-height:
        1.8;

}


/* =========================================================
   BOTÕES
   ========================================================= */

.hero-buttons {

    display:
        flex;

    gap:
        13px;

    margin-top:
        37px;

}


.btn {

    min-height:
        49px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    padding:
        0 21px;

    border-radius:
        3px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;

    transition:
        0.3s ease;

}


.btn svg {

    width:
        16px;

    height:
        16px;

    fill:
        currentColor;

}


.btn-primary {

    color:
        #090806;

    background:
        var(--gold-light);

}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 30px
        rgba(213,173,99,0.2);

    background:
        #f6dda8;

}


.btn-location {

    color:
        var(--cream);

    border:
        1px solid
        rgba(213,173,99,0.35);

    background:
        rgba(213,173,99,0.035);

}


.btn-location:hover {

    transform:
        translateY(-3px);

    border-color:
        var(--gold);

    background:
        rgba(213,173,99,0.09);

}


/* =========================================================
   VELAS 3D DO HERO
   ========================================================= */

.hero-candles {

    position:
        absolute;

    z-index:
        2;

    right:
        9vw;

    bottom:
        11%;

    width:
        285px;

    height:
        410px;

    transform:
        perspective(900px)
        rotateY(-7deg);

    transform-origin:
        bottom right;

}


.candle {

    position:
        absolute;

    bottom:
        55px;

    width:
        70px;

    height:
        165px;

}


.candle-one {

    left:
        18px;

    height:
        145px;

}


.candle-two {

    left:
        105px;

    height:
        205px;

    z-index:
        3;

}


.candle-three {

    left:
        195px;

    height:
        120px;

}


/* CORPO */

.candle-body {

    position:
        absolute;

    left:
        5px;

    right:
        5px;

    bottom:
        7px;

    height:
        calc(100% - 31px);

    border-radius:
        7px 7px 9px 9px;

    background:
        linear-gradient(
            90deg,
            #664821,
            #96703a 15%,
            #d1a85e 33%,
            #f0d49a 50%,
            #c0934b 67%,
            #88632f 84%,
            #593e1d
        );

    box-shadow:
        inset 7px 0 12px rgba(255,255,255,0.08),
        inset -8px 0 13px rgba(0,0,0,0.20),
        8px 10px 18px rgba(0,0,0,0.24);

    overflow:
        hidden;

}


.candle-highlight {

    position:
        absolute;

    left:
        17%;

    top:
        8%;

    width:
        15%;

    height:
        72%;

    border-radius:
        50%;

    background:
        rgba(255,244,210,0.18);

    filter:
        blur(3px);

}


.candle-top {

    position:
        absolute;

    z-index:
        2;

    left:
        5px;

    right:
        5px;

    top:
        20px;

    height:
        16px;

    border-radius:
        50%;

    background:
        radial-gradient(
            ellipse at center,
            #f3dca7,
            #c69a55 58%,
            #805d2d
        );

}


.candle-bottom {

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        100%;

    height:
        15px;

    border-radius:
        50%;

    background:
        linear-gradient(
            180deg,
            #a27a3b,
            #694b26
        );

}


.wick {

    position:
        absolute;

    z-index:
        5;

    left:
        50%;

    top:
        11px;

    width:
        2px;

    height:
        17px;

    transform:
        translateX(-50%);

    background:
        #2b2117;

}


.flame {

    position:
        absolute;

    z-index:
        6;

    left:
        50%;

    top:
        -18px;

    width:
        22px;

    height:
        32px;

    transform:
        translateX(-50%);

    border-radius:
        50% 50% 50% 50% /
        72% 72% 28% 28%;

    background:
        radial-gradient(
            circle at 50% 70%,
            #fff9e4 0 15%,
            #f5d27a 33%,
            #d18a36 65%,
            transparent 72%
        );

    filter:
        drop-shadow(
            0 0 12px
            rgba(213,173,99,0.9)
        );

    transform-origin:
        bottom center;

    animation:
        flame
        0.85s
        infinite
        alternate
        ease-in-out;

}


.candle-two .flame {

    animation-delay:
        -0.25s;

}


.candle-three .flame {

    animation-delay:
        -0.5s;

}


.candle-shadow {

    position:
        absolute;

    left:
        3px;

    right:
        -5px;

    bottom:
        43px;

    height:
        38px;

    border-radius:
        50%;

    background:
        rgba(0,0,0,0.72);

    filter:
        blur(18px);

}


/* =========================================================
   HERO GLOW
   ========================================================= */

.hero-glow {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

}


.glow-one {

    width:
        300px;

    height:
        300px;

    right:
        5%;

    top:
        31%;

    background:
        rgba(213,173,99,0.045);

}


.glow-two {

    width:
        500px;

    height:
        500px;

    left:
        -300px;

    bottom:
        -350px;

    background:
        rgba(213,173,99,0.035);

}


/* =========================================================
   SCROLL
   ========================================================= */

.scroll-indicator {

    position:
        absolute;

    left:
        8vw;

    bottom:
        32px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    color:
        rgba(244,234,217,0.4);

    text-transform:
        uppercase;

    letter-spacing:
        0.2em;

}


.scroll-indicator span {

    width:
        30px;

    height:
        1px;

    background:
        var(--gold);

    animation:
        scrollLine
        1.6s
        infinite
        ease-in-out;

}


.scroll-indicator small {

    font-size:
        8px;

}


/* =========================================================
   PRODUTOS
   ========================================================= */

.products-section {

    position:
        relative;

    padding:
        130px 8vw;

    background:
        #f0e7d7;

    color:
        #18130e;

    overflow:
        hidden;

}


.section-heading {

    max-width:
        580px;

    margin:
        0 auto 65px;

}


.section-tag {

    color:
        var(--gold-dark);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        0.32em;

}


.section-heading h2 {

    margin-top:
        17px;

    font-family:
        var(--serif);

    font-size:
        clamp(43px,5vw,70px);

    font-weight:
        400;

    line-height:
        0.95;

    letter-spacing:
        -0.04em;

}


.section-heading h2 em {

    color:
        #aa7c39;

    font-style:
        italic;

}


.section-heading p {

    max-width:
        400px;

    margin-top:
        20px;

    color:
        #776e62;

    font-size:
        13px;

    line-height:
        1.7;

}


/* GRID CORRIGIDO */

.products-grid {

    width:
        100%;

    max-width:
        1400px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(24,19,14,0.15);

    border-left:
        1px solid
        rgba(24,19,14,0.15);

}


.product-card {

    position:
        relative;

    min-width:
        0;

    min-height:
        330px;

    padding:
        32px 27px;

    border-right:
        1px solid
        rgba(24,19,14,0.15);

    border-bottom:
        1px solid
        rgba(24,19,14,0.15);

    overflow:
        hidden;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.product-card:hover {

    z-index:
        2;

    background:
        rgba(255,255,255,0.35);

    transform:
        translateY(-7px);

}


.card-number {

    position:
        absolute;

    right:
        22px;

    top:
        23px;

    color:
        rgba(24,19,14,0.22);

    font-size:
        9px;

    letter-spacing:
        0.15em;

}


/* =========================================================
   NOVOS ÍCONES DE VELAS
   TODOS COM A MESMA LINGUAGEM 3D
   ========================================================= */

.card-icon {

    position:
        relative;

    width:
        70px;

    height:
        82px;

    margin-bottom:
        24px;

}


/* BASE COMUM DA VELA */

.candle-icon .mini-body {

    position:
        absolute;

    left:
        50%;

    bottom:
        9px;

    transform:
        translateX(-50%);

    width:
        35px;

    height:
        45px;

    border-radius:
        5px 5px 8px 8px;

    background:
        linear-gradient(
            90deg,
            #79572d,
            #bd914c 20%,
            #f0d49a 48%,
            #c0924b 72%,
            #704e26
        );

    box-shadow:
        inset 5px 0 7px
        rgba(255,255,255,0.10),

        inset -5px 0 8px
        rgba(0,0,0,0.16),

        4px 7px 12px
        rgba(0,0,0,0.12);

    overflow:
        hidden;

}


.candle-icon .mini-shine {

    position:
        absolute;

    left:
        7px;

    top:
        7px;

    width:
        5px;

    height:
        29px;

    border-radius:
        50%;

    background:
        rgba(255,245,215,0.22);

    filter:
        blur(1px);

}


.candle-icon .mini-top {

    position:
        absolute;

    z-index:
        3;

    left:
        50%;

    top:
        18px;

    transform:
        translateX(-50%);

    width:
        35px;

    height:
        12px;

    border-radius:
        50%;

    background:
        radial-gradient(
            ellipse,
            #f4dca8,
            #bd9049 65%,
            #805d2d
        );

}


.candle-icon .mini-base {

    position:
        absolute;

    z-index:
        2;

    left:
        50%;

    bottom:
        5px;

    transform:
        translateX(-50%);

    width:
        45px;

    height:
        10px;

    border-radius:
        50%;

    background:
        linear-gradient(
            180deg,
            #a77a3b,
            #674922
        );

}


.candle-icon .mini-wick {

    position:
        absolute;

    z-index:
        5;

    left:
        50%;

    top:
        9px;

    transform:
        translateX(-50%);

    width:
        2px;

    height:
        12px;

    background:
        #332619;

}


.candle-icon .mini-flame {

    position:
        absolute;

    z-index:
        6;

    left:
        50%;

    top:
        -6px;

    transform:
        translateX(-50%);

    width:
        13px;

    height:
        20px;

    border-radius:
        50% 50% 50% 50% /
        70% 70% 30% 30%;

    background:
        radial-gradient(
            circle at 50% 70%,
            #fff9e3 0 18%,
            #efc766 35%,
            #bd792e 67%,
            transparent 73%
        );

    filter:
        drop-shadow(
            0 0 7px
            rgba(213,173,99,0.65)
        );

    transform-origin:
        bottom center;

    animation:
        cardFlame
        1s
        infinite
        alternate
        ease-in-out;

}


/* =========================================================
   01 — PISCINA
   VELA MAIS BAIXA E LARGA
   ========================================================= */

.pool-candle .mini-body {

    width:
        42px;

    height:
        37px;

    bottom:
        12px;

}


.pool-candle .mini-top {

    width:
        42px;

    top:
        26px;

}


.pool-candle .mini-base {

    width:
        52px;

    bottom:
        7px;

}


.pool-candle .mini-wick {

    top:
        17px;

}


/* =========================================================
   02 — AROMÁTICA
   VELA ALTA COM DETALHE DE AROMA
   ========================================================= */

.aroma-candle .mini-body {

    width:
        30px;

    height:
        53px;

}


.aroma-candle .mini-top {

    width:
        30px;

}


.aroma-candle .mini-base {

    width:
        39px;

}


.aroma-ring {

    position:
        absolute;

    left:
        50%;

    bottom:
        0;

    transform:
        translateX(-50%);

    width:
        57px;

    height:
        19px;

    border:
        1px solid
        rgba(159,120,56,0.4);

    border-radius:
        50%;

}


/* =========================================================
   03 — DECORATIVA
   VELA DIFERENTE NO FORMATO,
   MAS MESMA LINGUAGEM
   ========================================================= */

.decor-candle .mini-body {

    width:
        38px;

    height:
        44px;

    border-radius:
        9px 9px 12px 12px;

}


.decor-candle .mini-top {

    width:
        38px;

}


.decor-candle .mini-base {

    width:
        48px;

}


.decor-detail {

    position:
        absolute;

    z-index:
        4;

    left:
        50%;

    bottom:
        26px;

    transform:
        translateX(-50%);

    width:
        23px;

    height:
        1px;

    background:
        rgba(255,236,184,0.5);

    box-shadow:
        0 7px 0 rgba(255,236,184,0.18);

}


/* =========================================================
   04 — AMBIENTES
   VELA ALTA E MAIS FINA
   ========================================================= */

.ambient-candle .mini-body {

    width:
        27px;

    height:
        57px;

    border-radius:
        4px 4px 7px 7px;

}


.ambient-candle .mini-top {

    width:
        27px;

}


.ambient-candle .mini-base {

    width:
        37px;

}


.ambient-band {

    position:
        absolute;

    z-index:
        4;

    left:
        50%;

    bottom:
        28px;

    transform:
        translateX(-50%);

    width:
        27px;

    height:
        5px;

    border-top:
        1px solid
        rgba(255,235,180,0.35);

    border-bottom:
        1px solid
        rgba(255,235,180,0.20);

}


/* =========================================================
   TEXTOS DOS CARDS
   ========================================================= */

.product-card h3 {

    max-width:
        190px;

    font-family:
        var(--serif);

    font-size:
        21px;

    font-weight:
        400;

    line-height:
        1.12;

}


.product-card p {

    max-width:
        220px;

    margin-top:
        13px;

    color:
        #776e62;

    font-size:
        11px;

    line-height:
        1.7;

}


.card-line {

    position:
        absolute;

    left:
        27px;

    bottom:
        25px;

    width:
        30px;

    height:
        1px;

    background:
        #ad803d;

    transition:
        width 0.35s ease;

}


.product-card:hover .card-line {

    width:
        55px;

}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement {

    position:
        relative;

    min-height:
        470px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        90px 7vw;

    overflow:
        hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(213,173,99,0.09),
            transparent 38%
        ),
        #090806;

    text-align:
        center;

}


.statement-content {

    position:
        relative;

    z-index:
        2;

}


.tiny-label {

    color:
        var(--gold);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.45em;

}


.statement h2 {

    max-width:
        850px;

    margin-top:
        20px;

    font-family:
        var(--serif);

    font-size:
        clamp(45px,7vw,90px);

    font-weight:
        400;

    line-height:
        0.95;

    letter-spacing:
        -0.045em;

}


.statement h2 span {

    color:
        var(--gold-light);

    font-style:
        italic;

}


.statement-line {

    width:
        50px;

    height:
        1px;

    margin:
        35px auto 0;

    background:
        var(--gold);

}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {

    padding:
        125px 8vw;

    background:
        #e8ddcb;

    color:
        #17120d;

}


.about-layout {

    max-width:
        1250px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        100px;

}


.about-title h2 {

    max-width:
        450px;

    margin-top:
        17px;

    font-family:
        var(--serif);

    font-size:
        clamp(44px,5vw,70px);

    font-weight:
        400;

    line-height:
        0.98;

    letter-spacing:
        -0.04em;

}


.about-text {

    padding-top:
        28px;

}


.about-highlight {

    color:
        #a2763a;

    font-family:
        var(--serif);

    font-size:
        25px;

}


.about-text > p:nth-child(2) {

    max-width:
        480px;

    margin-top:
        18px;

    color:
        #70675b;

    font-size:
        13px;

    line-height:
        1.8;

}


.about-details {

    display:
        flex;

    margin-top:
        48px;

    border-top:
        1px solid
        rgba(23,18,13,0.15);

}


.about-details div {

    flex:
        1;

    padding-top:
        18px;

}


.about-details div + div {

    padding-left:
        20px;

    border-left:
        1px solid
        rgba(23,18,13,0.15);

}


.about-details span {

    color:
        #a2763a;

    font-size:
        9px;

    font-weight:
        700;

}


.about-details p {

    margin-top:
        8px;

    font-family:
        var(--serif);

    font-size:
        16px;

}


/* =========================================================
   CONTATO
   ========================================================= */

.contact-section {

    position:
        relative;

    min-height:
        470px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        100px 7vw;

    overflow:
        hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(213,173,99,0.08),
            transparent 40%
        ),
        #080706;

    text-align:
        center;

}


.contact-section::before,
.contact-section::after {

    content:
        "";

    position:
        absolute;

    border:
        1px solid
        rgba(213,173,99,0.1);

    border-radius:
        50%;

}


.contact-section::before {

    width:
        550px;

    height:
        550px;

}


.contact-section::after {

    width:
        750px;

    height:
        750px;

}


.contact-content {

    position:
        relative;

    z-index:
        2;

}


.contact-content h2 {

    margin-top:
        20px;

    font-family:
        var(--serif);

    font-size:
        clamp(48px,7vw,88px);

    font-weight:
        400;

    line-height:
        0.95;

    letter-spacing:
        -0.05em;

}


.contact-content h2 em {

    display:
        block;

    color:
        var(--gold-light);

    font-style:
        italic;

}


.contact-content > p {

    max-width:
        400px;

    margin:
        25px auto 0;

    color:
        var(--cream-soft);

    font-size:
        12px;

    line-height:
        1.7;

}


.contact-decoration {

    display:
        flex;

    justify-content:
        center;

    gap:
        7px;

    margin-top:
        34px;

}


.contact-decoration span {

    width:
        4px;

    height:
        4px;

    border-radius:
        50%;

    background:
        var(--gold);

    animation:
        dotPulse
        1.5s
        infinite
        ease-in-out;

}


.contact-decoration span:nth-child(2) {

    animation-delay:
        0.2s;

}


.contact-decoration span:nth-child(3) {

    animation-delay:
        0.4s;

}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {

    min-height:
        90px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        25px 7vw;

    background:
        #050504;

    border-top:
        1px solid
        rgba(213,173,99,0.1);

    color:
        rgba(244,234,217,0.45);

}


.footer-logo {

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    font-family:
        var(--serif);

    font-size:
        15px;

}


.footer-logo strong {

    color:
        var(--gold);

    font-weight:
        400;

}


.footer p {

    font-size:
        9px;

}


.footer-made {

    color:
        rgba(213,173,99,0.55);

    font-size:
        8px;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;

}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {

    opacity:
        0;

    transform:
        translateY(28px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity:
        1;

    transform:
        translateY(0);

}


.products-grid .product-card:nth-child(2) {

    transition-delay:
        0.08s;

}


.products-grid .product-card:nth-child(3) {

    transition-delay:
        0.16s;

}


.products-grid .product-card:nth-child(4) {

    transition-delay:
        0.24s;

}


/* =========================================================
   ANIMAÇÕES
   ========================================================= */

@keyframes flame {

    0% {

        transform:
            translateX(-50%)
            scale(1)
            rotate(-2deg);

    }

    100% {

        transform:
            translateX(-50%)
            scale(0.88,1.08)
            rotate(3deg);

    }

}


@keyframes cardFlame {

    0% {

        transform:
            translateX(-50%)
            scale(1)
            rotate(-3deg);

    }

    100% {

        transform:
            translateX(-50%)
            scale(0.88,1.08)
            rotate(3deg);

    }

}


@keyframes flameLoader {

    from {

        transform:
            scale(1)
            rotate(-3deg);

    }

    to {

        transform:
            scale(0.9,1.08)
            rotate(3deg);

    }

}


@keyframes loaderLine {

    0% {

        transform:
            translateX(-120%);

    }

    100% {

        transform:
            translateX(350%);

    }

}


@keyframes scrollLine {

    0%,
    100% {

        opacity:
            0.3;

        transform:
            scaleX(0.7);

        transform-origin:
            left;

    }

    50% {

        opacity:
            1;

        transform:
            scaleX(1);

    }

}


@keyframes dotPulse {

    0%,
    100% {

        opacity:
            0.3;

        transform:
            scale(0.8);

    }

    50% {

        opacity:
            1;

        transform:
            scale(1.3);

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .hero {

        padding-left:
            7vw;

        padding-right:
            7vw;

    }


    .hero-candles {

        right:
            1vw;

        transform:
            perspective(900px)
            rotateY(-7deg)
            scale(0.82);

        opacity:
            0.72;

    }


    .products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .about-layout {

        gap:
            55px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .header {

        padding:
            13px 18px 10px;

    }


    .logo-main {

        font-size:
            18px;

    }


    .logo-sub {

        font-size:
            7px;

    }


    .social-link {

        width:
            30px;

        height:
            30px;

    }


    .navigation {

        justify-content:
            flex-start;

        width:
            100%;

        margin-top:
            11px;

        gap:
            23px;

        overflow-x:
            auto;

        scrollbar-width:
            none;

    }


    .navigation::-webkit-scrollbar {

        display:
            none;

    }


    .navigation a {

        flex-shrink:
            0;

        font-size:
            8px;

    }


    /* HERO */

    .hero {

        min-height:
            100svh;

        min-height:
            650px;

        padding:
            150px 24px 90px;

        align-items:
            center;

    }


    .hero::before {

        background-size:
            55px 55px;

    }


    .hero h1 {

        font-size:
            clamp(55px,17vw,82px);

    }


    .hero-content > p {

        max-width:
            310px;

        margin-top:
            22px;

        font-size:
            12px;

    }


    .hero-buttons {

        position:
            relative;

        z-index:
            10;

        flex-wrap:
            wrap;

        gap:
            10px;

        margin-top:
            28px;

    }


    .btn {

        min-height:
            46px;

        padding:
            0 16px;

        font-size:
            8px;

    }


    /* VELAS HERO */

    .hero-candles {

        right:
            -38px;

        bottom:
            4%;

        width:
            205px;

        height:
            280px;

        transform:
            perspective(800px)
            rotateY(-7deg)
            scale(0.66);

        opacity:
            0.42;

        pointer-events:
            none;

    }


    .scroll-indicator {

        left:
            24px;

        bottom:
            22px;

    }


    /* PRODUTOS */

    .products-section {

        padding:
            85px 20px;

    }


    .section-heading {

        margin-bottom:
            45px;

    }


    .section-heading h2 {

        font-size:
            48px;

    }


    .products-grid {

        grid-template-columns:
            1fr;

    }


    .product-card {

        min-height:
            285px;

        padding:
            28px 23px;

    }


    .product-card:hover {

        transform:
            none;

    }


    .card-line {

        left:
            23px;

    }


    /* STATEMENT */

    .statement {

        min-height:
            390px;

        padding:
            75px 22px;

    }


    .statement h2 {

        font-size:
            50px;

    }


    /* ABOUT */

    .about-section {

        padding:
            85px 22px;

    }


    .about-layout {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .about-title h2 {

        font-size:
            50px;

    }


    .about-text {

        padding-top:
            0;

    }


    .about-details {

        margin-top:
            37px;

    }


    /* CONTACT */

    .contact-section {

        min-height:
            400px;

        padding:
            80px 20px;

    }


    .contact-section::before {

        width:
            400px;

        height:
            400px;

    }


    .contact-section::after {

        width:
            560px;

        height:
            560px;

    }


    .contact-content h2 {

        font-size:
            54px;

    }


    /* FOOTER */

    .footer {

        flex-direction:
            column;

        justify-content:
            center;

        padding:
            28px 20px;

        text-align:
            center;

    }


    .footer-made {

        display:
            none;

    }

}


/* =========================================================
   CELULAR PEQUENO
   ========================================================= */

@media (max-width: 390px) {

    .hero {

        padding-top:
            145px;

    }


    .hero h1 {

        font-size:
            52px;

    }


    .hero-buttons {

        flex-direction:
            column;

        width:
            100%;

        max-width:
            300px;

    }


    .btn {

        width:
            100%;

    }


    .hero-candles {

        right:
            -58px;

        bottom:
            2%;

        transform:
            perspective(800px)
            rotateY(-7deg)
            scale(0.54);

        opacity:
            0.30;

    }


    .statement h2,
    .about-title h2 {

        font-size:
            45px;

    }


    .contact-content h2 {

        font-size:
            47px;

    }

}


/* =========================================================
   REDUZIR ANIMAÇÕES
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }


    .reveal {

        opacity:
            1;

        transform:
            none;

    }

}