:root {
    --cor-fundo-escuro: #1a120b;
    --cor-fundo-destaque: #41151a;
    --cor-destaque-dourado: #c79f5e;
    --cor-texto-principal: #f5e9d8;
    --cor-texto-secundario: #3a2b20;
    --fonte-titulos: 'Cinzel', serif;
    --fonte-corpo: 'Roboto Slab', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-corpo);

    background-image: url('../img/fundo.jpg'); 
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    color: var(--cor-texto-principal);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    
}

h1, h2, h3 {
    font-family: var(--fonte-titulos);
    color: var(--cor-destaque-dourado);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 3rem; 
}

h2 { 
    font-size: 2.5rem; 
    text-align: center; 
}

h3 { 
    font-size: 1.5rem; 
}

p { 
    margin-bottom: 1rem; 
}

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

main{
    margin-top: 130px;
}


.cabecalho {
    background-color: rgba(26, 18, 11, 0.8);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #c79f5e44;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.cabecalho .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.logo img {
    height: 90px;

   
}

.navegacao ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navegacao a {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navegacao a:hover {
    color: #fff;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100; 
}

.hamburger-menu .bar {
    width: 28px;
    height: 3px;
    background-color: var(--cor-destaque-dourado); 
}

.menu-redes-sociais{
    display: flex;
    gap:10px;
    align-items: center;
    justify-content: center;
    padding-top: 15px;

}

.menu-redes-sociais img{
    height: 25px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.menu-redes-sociais a:hover img {
    opacity: 1;
}


.secao {
    background-color: rgba(26, 18, 11, 0.9);
    padding: 80px 0;
    margin-bottom: 20px;
}


.hero {
    background-image: linear-gradient(rgba(26, 18, 11, 0.7), rgba(26, 18, 11, 0.7)), url('../img/fundo.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 0; 
    box-shadow: none; 
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.botao-principal {
    background-color: var(--cor-destaque-dourado);
    color: var(--cor-texto-secundario);
    font-family: var(--fonte-titulos);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.botao-principal:hover {
    background-color: #dfb88a;
    transform: translateY(-3px);
}


#promocoes h2 { margin-bottom: 3rem; }
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.produto-card {
    background-color: var(--cor-texto-secundario);
    border: 1px solid #c79f5e66;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.produto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produto-card h3 { padding-top: 1rem; }
.produto-card .descricao-produto { padding: 0 1rem; font-size: 0.9rem; }
.produto-card .preco { padding: 1rem; }
.preco-antigo { text-decoration: line-through; opacity: 0.7; margin-right: 10px; }
.preco-novo { font-size: 1.4rem; font-weight: 700; color: var(--cor-destaque-dourado); }


.secao-destaque {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    max-width: none;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--cor-fundo-escuro);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.sugestao-conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
}

.sugestao-imagem { 
    display: none;
    
}
.sugestao-texto { 
    max-width: 600px;
    text-align: center;
    background-color: rgba(26, 18, 11, 0.85);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--cor-destaque-dourado);
}
.sugestao-texto h3 { 
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}


.fade {
    animation-name: carouselFade;
    animation-duration: 1.5s;
}

@keyframes carouselFade {
    from {opacity: .4}
    to {opacity: 1}
}


.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
    
}

.dot.active {
    background-color: var(--cor-destaque-dourado);
}

.servico-item img{
    height: 60px;
    margin-bottom: 10px;
}


#servicos h2 {
     margin-bottom: 3rem; 
    
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;

}

.servico-item {
    background-color: var(--cor-texto-secundario);
    padding: 20px;
    border-radius: 8px;
    border-top: 4px solid var(--cor-destaque-dourado);
}

.servico-item h4 {
    font-family: var(--fonte-titulos);
    font-size: 1.3rem;
    color: var(--cor-destaque-dourado);
    margin-bottom: 1rem;
}

.link-servico {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.link-servico:hover { color: #fff; }


.rodape {
    background-color: var(--cor-texto-secundario);
    color: var(--cor-texto-principal);
    padding: 30px;
    text-align: center;
    margin-top: 20px;  
    padding-bottom: 20px;
    font-size: 0.8em;    
}

.rodape-superior {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c79f5e22; 
}

.metodos-pagamento {
    text-align: center;
    

}

.metodos-pagamento h4 {
    font-family: var(--fonte-titulos);
    color: var(--cor-destaque-dourado);
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icones-pagamento {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.icones-pagamento img {
    height: 25px;
    opacity: 0.8;
}

#visa{
    height: 40px;
}

#money{
    height: 35px;
}

 .redes-sociais{
    gap: 30px;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
   
}

.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;   
    right: 25px;    
    z-index: 1000;  
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-flutuante img {
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.icon-card{
    display: flex;
    gap: 30px;
    justify-content: center;
}

#rede{
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    justify-content: center;
}

#rede img{
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;

}
#rede:hover img {
    opacity: 1;
}

#redes{
    height: 60px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .navegacao { display: none; }

    .produtos-grid, .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        height: 500px;
    }
    .sugestao-conteudo {
        flex-direction: column;
        padding: 20px;
    }
    .sugestao-texto {
        padding: 20px;
        max-width: 100%;
    }
    .sugestao-texto h3 { 
        font-size: 1.8rem; 
    }

     .whatsapp-flutuante {
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-flutuante img {
        width: 50px;
        height: 50px;
    }

    .cabecalho .container {
        flex-direction: row; 
        align-items: center;
    }

   
    .hamburger-menu {
        display: flex;
    }


    .navegacao {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background-color: var(--cor-fundo-escuro);
        border-left: 1px solid var(--cor-destaque-dourado);  
        transition: right 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 50px; 
        
    }

    .navegacao.active {
        right: 0;
    }

    .navegacao ul {
        padding-top: 200px;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        display: flex;
    }

    .navegacao a {
        font-size: 1.5rem; 
    }

 
    .menu-redes-sociais {
        display: flex; 
        gap: 2rem;
        border-top: 1px solid #c79f5e44; 
        padding-top: 2rem;
        margin-top: auto
    }

    .menu-redes-sociais img {
        height: 30px; 
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .menu-redes-sociais a:hover img {
        opacity: 1;
    }
}

    
