
:root {
   
    --cor-principal: #d49b08;      
    --cor-secundaria: #F5E6CC;      
    --cor-fundo: #FDFDFD;           
    --cor-texto: #070707;           
    --cor-whatsapp: #25D366;
    
  
    --fonte-serifa: 'Playfair Display', serif; 
    --fonte-corpo: 'Lato', sans-serif; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--fonte-corpo);
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: var(--cor-fundo);
    overflow-x: hidden; 
}

a {
    text-decoration: none;
    color: var(--cor-principal);
}

section, header, footer {
    padding: 60px 5%; 
    text-align: center;
}


h1, h2, h3 {
    font-family: var(--fonte-serifa); 
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 700;
}

h2 {
    font-size: 2.8em;
    color: var(--cor-principal);
    text-transform: uppercase;
}

#hero-section {
    background-attachment: fixed; 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url(./img/wallp.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 5%; 
    min-height: 60vh;
}

#hero-section h1 {
    font-size: 4em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}


.cta-button, .comprar-button {
    display: inline-block;
    background-color: var(--cor-principal);
    color: white;
    padding: 18px 40px; 
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 2px; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    border: 2px solid var(--cor-principal);
    cursor: pointer;
    letter-spacing: 1px;
}

.cta-button:hover, .comprar-button:hover {
    background-color: #A08040;
    transform: scale(1.03); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.produtos-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.produto-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    width: 300px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

.produto-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); /
}

.produto-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.produto-card h3 {
    font-size: 1.5em;
    color: var(--cor-principal);
}

.produto-card .valor {
    color: var(--cor-principal);
    font-size: 2em; 
    font-weight: bold;
    font-family: var(--fonte-serifa);
    margin: 10px 0 20px 0;
}

/* Seções de Produtos (Fundos) */
#lancamentos { background-color: var(--cor-secundaria); }
.produto-card.novo { border: 2px solid var(--cor-principal); }

#produtos { background-color: var(--cor-fundo); }

#prata925 { background-color: var(--cor-secundaria); }
#prata925 p { font-size: 1.1em; margin-bottom: 30px; }

#destaques { background-color: var(--cor-fundo); }


/* =======================================================
                   Sessão de Carrossel
   ======================================================= */
.carousel-container {
    position: relative;
    max-width: 900px; 
    margin: 40px auto;
    display: flex;
    align-items: center;
}
.carousel-slides {
    display: flex;
    overflow-x: auto; 
    scroll-behavior: smooth; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.carousel-item {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center; 
}
.carousel-item .produto-card {
    box-shadow: none;
    width: 300px;
}
/* Esconder a barra de rolagem */
.carousel-slides::-webkit-scrollbar { display: none; }
.carousel-slides { -ms-overflow-style: none; scrollbar-width: none; }

/* --- CÓDIGO CORRIGIDO PARA AS SETAS --- */
.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7); 
    color: white;
    border: none;
    cursor: pointer;
    z-index: 5;
    font-size: 24px;
    
    
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; 
    
    transition: background-color 0.3s;
}

.prev-button:hover, .next-button:hover {
    background: var(--cor-principal); 
}
.prev-button { 
    left: -25px; 
}
.next-button { 
    right: -25px;
}



@media (max-width: 768px) {
 
    
    .prev-button, .next-button { 
        display: none; 
    }
}


#depoimentos { background-color: #ffffff; }

.depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.depoimento-card {
    background-color: var(--cor-fundo);
    padding: 25px;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); 
    text-align: left;
    transition: box-shadow 0.3s;
    border-left: 5px solid var(--cor-principal);
}

.depoimento-card p {
    font-family: var(--fonte-serifa);
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}
.estrelas { color: orange; font-size: 1.2em; }



#diferenciais { 
    background-color: var(--cor-secundaria); 
}

.diferenciais-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.diferencial-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 300px;
    text-align: center;
    border-bottom: 4px solid var(--cor-principal); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#contato { background-color: var(--cor-fundo); }

#formulario-contato {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#formulario-contato input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 1em;
}



.whatsapp-flutuante {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    background-color: var(--cor-whatsapp);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}


footer {
    background-color: #0a0a0a;
    color: white;
    font-size: 0.9em;
    padding: 25px 5%;
}



@media (max-width: 992px) {
    #hero-section { padding: 100px 5%; }
    #hero-section h1 { font-size: 3em; }
}

@media (max-width: 768px) {
    section, header, footer { padding: 40px 3%; }
    #hero-section h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    
    .cta-button { padding: 15px 30px; }
    
    .produto-card, .depoimento-card, .diferencial-item {
        width: 100%; 
        max-width: none;
    }
    

    .prev-button, .next-button { display: none; }
}