
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root{

    --background:#0d0d0f;
    --background-secondary:#17181b;
    --card:#1f2024;

    --gold:#c8a96b;
    --gold-soft:#e2c48d;

    --white:#ffffff;
    --text:#d8d8d8;

    --border:rgba(255,255,255,.08);

    --shadow:
    0 15px 45px rgba(0,0,0,.30);

    --radius:18px;

    --transition:.35s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:
    radial-gradient(circle at top,#202020 0%,#111 45%,#090909 100%);

    color:var(--white);

    font-family:'Manrope',sans-serif;

    overflow-x:hidden;

}

/* Scroll */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
    var(--gold),
    #8f7444
    );

    border-radius:50px;

}

/* Seleção */

::selection{

    background:var(--gold);

    color:#111;

}

/* Container */

.container{

    width:min(92%,1400px);

    margin:auto;

}

/* Links */

a{

    text-decoration:none;

    color:inherit;

}

/* Lista */

ul{

    list-style:none;

}

/* Imagens */

img{

    display:block;

    width:100%;

}

/* Loader */

#loader{

    position:fixed;

    inset:0;

    background:#090909;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.6s;

}

.loader-logo{

    text-align:center;

}

.loader-logo h1{

    font-size:56px;

    letter-spacing:8px;

    color:var(--gold);

    font-family:'Cormorant Garamond',serif;

}

.loader-logo span{

    display:block;

    margin-top:15px;

    color:#888;

    letter-spacing:4px;

    font-size:12px;

}

/* Header */

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:5000;

    transition:.4s;

    backdrop-filter:blur(16px);

    background:
    rgba(10,10,10,.45);

    border-bottom:

    1px solid rgba(255,255,255,.05);

}

/* Quando rolar a página */
#header.scrolled{

    background:

    rgba(8,8,8,.90);

    box-shadow:

    0 10px 35px rgba(0,0,0,.35);

}

/* Navbar */

.nav-container{

    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* Logo */

.logo{

    font-size:34px;

    font-family:

    'Cormorant Garamond',serif;

    letter-spacing:3px;

    color:white;

}

.logo span{

    color:var(--gold);

}

/* Menu */

#navbar ul{

    display:flex;

    gap:45px;

}

#navbar a{

    position:relative;

    font-size:15px;

    letter-spacing:1px;

    color:#ececec;

    transition:.3s;

}

#navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:1px;

    background:var(--gold);

    transition:.35s;

}

#navbar a:hover{

    color:var(--gold);

}

#navbar a:hover::after{

    width:100%;

}

/* Botão */

.header-btn{

    padding:

    14px 26px;

    border-radius:50px;

    background:

    linear-gradient(
    135deg,
    var(--gold),
    #9d7d45
    );

    color:#111;

    font-weight:700;

    transition:var(--transition);

    box-shadow:

    0 10px 25px rgba(201,169,107,.25);

}

.header-btn:hover{

    transform:

    translateY(-3px);

    box-shadow:

    0 18px 35px rgba(201,169,107,.35);

}

/* Mobile */

#mobile-button{

    display:none;

    border:none;

    background:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

/* Hero */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* Fundo */

.hero-video{

    position:absolute;

    inset:0;

    z-index:-2;

}

.hero-video img{

    width:100%;

    height:100%;

    object-fit:cover;

    filter:

    brightness(.38);

    transform:scale(1.05);

}

/* Overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.45),

    rgba(0,0,0,.78)

    );

    z-index:-1;

}

/* Conteúdo */

.hero-content{

    max-width:760px;

    padding-top:90px;

}

.hero-subtitle{

    color:var(--gold);

    letter-spacing:4px;

    font-size:13px;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:78px;

    line-height:1;

    font-family:

    'Cormorant Garamond',serif;

    margin-bottom:28px;

}

.hero-content h1 span{

    display:block;

    color:var(--gold);

    margin-top:10px;

}

.hero-text{

    color:#d5d5d5;

    line-height:2;

    max-width:650px;

    font-size:18px;

}

/* Botões Hero */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

    flex-wrap:wrap;

}

.btn-gold{

    padding:

    18px 34px;

    border-radius:50px;

    background:

    linear-gradient(
    135deg,
    var(--gold),
    #987740
    );

    color:#111;

    font-weight:700;

    transition:.35s;

}

.btn-gold:hover{

    transform:

    translateY(-4px);

}

.btn-transparent{

    padding:

    18px 34px;

    border-radius:50px;

    border:

    1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    transition:.35s;

}

.btn-transparent:hover{

    background:

    rgba(255,255,255,.06);

}

/* Scroll Indicator */

.hero-scroll{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

}

.hero-scroll span{

    width:28px;

    height:48px;

    display:block;

    border-radius:30px;

    border:

    2px solid rgba(255,255,255,.5);

    position:relative;

}

.hero-scroll span::before{

    content:"";

    width:6px;

    height:6px;

    border-radius:50%;

    background:var(--gold);

    position:absolute;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    animation:scrollMove 2s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:1;
        top:8px;

    }

    100%{

        opacity:0;
        top:26px;

    }

}



section{

    padding:120px 0;

    position:relative;

}

/* Cabeçalhos */

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(200,169,107,.35);

    color:var(--gold);

    border-radius:50px;

    letter-spacing:3px;

    font-size:12px;

    margin-bottom:22px;

    backdrop-filter:blur(10px);

}

.section-header h2{

    font-family:'Cormorant Garamond',serif;

    font-size:62px;

    font-weight:600;

    margin-bottom:20px;

}

.section-header p{

    max-width:700px;

    margin:auto;

    color:#bdbdbd;

    line-height:1.9;

}

/* ==========================
   SOBRE
========================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-images{

    position:relative;

    min-height:650px;

}

.about-image{

    overflow:hidden;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.about-image img{

    transition:.7s;

    height:100%;

    object-fit:cover;

}

.about-image:hover img{

    transform:scale(1.08);

}

.image-large{

    width:82%;

    height:520px;

}

.image-small{

    position:absolute;

    width:52%;

    height:300px;

    right:0;

    bottom:0;

    border:8px solid #111;

}

.about-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    margin-bottom:30px;

    line-height:1.1;

}

.about-content p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:22px;

}

.about-features{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin:45px 0;

}

.feature-card{

    display:flex;

    align-items:center;

    gap:22px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    padding:22px;

    backdrop-filter:blur(10px);

    transition:.35s;

}

.feature-card:hover{

    transform:translateX(8px);

    border-color:rgba(200,169,107,.25);

}

.feature-card i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(200,169,107,.10);

    color:var(--gold);

    font-size:24px;

}

.feature-card h4{

    margin-bottom:6px;

    font-size:18px;

}

.feature-card span{

    color:#a9a9a9;

}

/* ==========================
   ESTATÍSTICAS
========================== */

.stats-section{

    background:

    linear-gradient(
    180deg,
    rgba(255,255,255,.02),
    transparent
    );

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    padding:45px 20px;

    text-align:center;

    border-radius:20px;

    background:rgba(255,255,255,.025);

    border:1px solid rgba(255,255,255,.04);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:rgba(200,169,107,.25);

}

.stat-box h2{

    font-size:62px;

    color:var(--gold);

    font-family:'Cormorant Garamond',serif;

    margin-bottom:12px;

}

.stat-box p{

    color:#bfbfbf;

}

/* ==========================
   COLEÇÕES
========================== */

.collections-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.collection-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    height:420px;

    box-shadow:var(--shadow);

}

.collection-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.collection-card:hover img{

    transform:scale(1.12);

}

.collection-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    background:

    linear-gradient(
    transparent,
    rgba(0,0,0,.82)
    );

}

.collection-overlay h3{

    font-size:34px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:10px;

}

.collection-overlay span{

    color:var(--gold);

    letter-spacing:1px;

}

/* ==========================
   PRODUTOS
========================== */

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.product-card{

    overflow:hidden;

    border-radius:22px;

    background:var(--card);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 25px 60px rgba(0,0,0,.35);

}

.product-image{

    overflow:hidden;

    height:340px;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    padding:28px;

}

.product-category{

    display:inline-block;

    color:var(--gold);

    letter-spacing:2px;

    font-size:12px;

    margin-bottom:12px;

}

.product-info h3{

    font-size:30px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:14px;

}

.product-info p{

    color:#bcbcbc;

    line-height:1.8;

    margin-bottom:24px;

}

.product-info a{

    color:var(--gold);

    font-weight:700;

    transition:.3s;

}

.product-info a:hover{

    letter-spacing:1px;

}


.gallery-section{

    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.02)
    );

}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:22px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    background:#000;

}

.gallery-item img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.7s;

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    transparent,
    rgba(0,0,0,.45)
    );

    opacity:0;

    transition:.35s;

    z-index:2;

}

.gallery-item::after{

    content:"+";

    position:absolute;

    left:50%;

    top:50%;

    transform:
    translate(-50%,-50%);

    width:75px;

    height:75px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    color:white;

    font-size:42px;

    opacity:0;

    transition:.35s;

    z-index:3;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover::after{

    opacity:1;

}

/* ==========================
   DEPOIMENTOS
========================== */

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:28px;

}

.testimonial-card{

    background:

    rgba(255,255,255,.03);

    border:

    1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(10px);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:

    rgba(200,169,107,.25);

}

.stars{

    color:var(--gold);

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:30px;

}

.testimonial-card strong{

    font-size:17px;

    color:white;

}

/* ==========================
   CTA
========================== */

.cta-section{

    padding:140px 0;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    padding:80px;

    text-align:center;

    background:

    linear-gradient(
    135deg,
    #1a1b1e,
    #101113
    );

    border:

    1px solid rgba(255,255,255,.05);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:

    radial-gradient(
    rgba(200,169,107,.18),
    transparent
    );

    right:-180px;

    top:-180px;

    border-radius:50%;

}

.cta-box span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;

}

.cta-box h2{

    font-family:

    "Cormorant Garamond",serif;

    font-size:68px;

    margin:

    20px 0;

}

.cta-box p{

    max-width:760px;

    margin:auto;

    color:#c9c9c9;

    line-height:2;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================
   FOOTER
========================== */

.footer{

    background:#090909;

    border-top:

    1px solid rgba(255,255,255,.05);

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr;

    gap:60px;

    padding-bottom:70px;

}

.footer-logo{

    font-family:

    "Cormorant Garamond",serif;

    font-size:42px;

    margin-bottom:18px;

}

.footer-logo span{

    color:var(--gold);

}

.footer p{

    color:#ababab;

    line-height:2;

}

.footer h3{

    margin-bottom:25px;

    color:white;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer a{

    color:#b8b8b8;

    transition:.3s;

}

.footer a:hover{

    color:var(--gold);

    padding-left:6px;

}

.footer-bottom{

    border-top:

    1px solid rgba(255,255,255,.05);

    text-align:center;

    padding:28px;

    color:#888;

    font-size:14px;

}

/* ==========================
   WHATSAPP
========================== */

.floating-whatsapp{

    position:fixed;

    right:35px;

    bottom:35px;

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(
    135deg,
    #2dd46f,
    #18a94d
    );

    color:white;

    font-size:34px;

    z-index:999;

    box-shadow:

    0 15px 35px
    rgba(0,0,0,.35);

    transition:.35s;

}

.floating-whatsapp:hover{

    transform:
    translateY(-8px)
    scale(1.05);

}

/* ==========================
   ANIMAÇÃO SUAVE
========================== */

.fade-up{

    opacity:1;

    transform:
    translateY(50px);

    transition:
    1s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

.blur-in{

    opacity:0;

    filter:blur(10px);

    transition:1s;

}

.blur-in.show{

    opacity:1;

    filter:none;

}

.timeline{

    max-width:900px;

    margin:0 auto;

    position:relative;

}



.timeline-item{

    display:flex;

    align-items:center;

    margin-bottom:50px;

    position:relative;

}

.timeline-year{

    min-width:120px;

    padding:15px;

    border-radius:50px;

    text-align:center;

    background:var(--gold);

    color:#111;

    font-weight:700;

    z-index:2;

}

.timeline-content{

    margin-left:30px;

    padding:30px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    flex:1;

}

.timeline-content h3{

    margin-bottom:10px;

    font-size:24px;

}

.timeline-content p{

    color:#cfcfcf;

    line-height:1.8;

}
/* CONTATO */

.contact-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:40px;

align-items:start;

}

.contact-form{

background:rgba(255,255,255,.03);

padding:40px;

border-radius:25px;

border:1px solid rgba(255,255,255,.05);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:18px;

border:none;

outline:none;

border-radius:15px;

background:rgba(255,255,255,.04);

color:white;

font-size:16px;

}

.contact-form textarea{

resize:none;

}

.contact-info{

display:flex;

flex-direction:column;

gap:20px;

}


.produto-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}

.imagem-principal{

border-radius:25px;

overflow:hidden;

margin-bottom:20px;

}

.imagem-principal img{

width:100%;

height:600px;

object-fit:cover;

}

.miniaturas{

display:flex;

gap:15px;

}

.thumb{

width:110px;

height:110px;

border-radius:15px;

object-fit:cover;

cursor:pointer;

opacity:.7;

transition:.3s;

}

.thumb:hover,
.thumb.active{

opacity:1;

transform:translateY(-5px);

}

.produto-info h1{

font-size:56px;

margin:15px 0 25px;

font-family:"Cormorant Garamond",serif;

}

.produto-info p{

line-height:2;

color:#cfcfcf;

margin-bottom:35px;

}

.produto-especificacoes{

display:flex;

flex-direction:column;

gap:18px;

margin-bottom:40px;

}

.produto-especificacoes div{

padding:18px;

background:rgba(255,255,255,.03);

border-radius:15px;

border:1px solid rgba(255,255,255,.05);

}



