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

body{
font-family:'Poppins',sans-serif;
background:#0d0d0d;
color:#fff;
overflow-x: hidden; /* Evita barra de rolagem horizontal */
}

/* Animations - Mantendo seu Fade-in */
section{
opacity:0;
transform:translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

section.fade-in{
opacity:1;
transform:translateY(0);
}

header{
position:fixed;
width:100%;
padding:20px 40px;
display:flex;
align-items:center;
justify-content:space-between;
transition:0.3s;
z-index:1000;
gap:20px;
}

.logo{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
color:#fff;
}

.logo img{
width:42px;
height:auto;
border-radius:10px;
object-fit:contain;
}

.logo span{
font-size:20px;
font-weight:700;
letter-spacing:1px;
}

header.scrolled{
background:rgba(0,0,0,0.95);
backdrop-filter:blur(10px);
}

nav a{
color:#fff;
margin:0 10px;
text-decoration:none;
}

nav a:hover,
.logo:hover span{
color:#D69E6B
}

/* BOTÃO DO CARRINHO */
.cart-button {
    background: transparent;
    border: 2px solid #D69E6B;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.cart-button:hover {
    background: rgba(214, 158, 107, 0.1);
    transform: scale(1.05);
}

.cart-count {
    background: #D69E6B;
    color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* HERO - Ajustado para Carrossel com Zoom */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
overflow: hidden; /* Importante para o zoom não vazar */
}

.carousel{
position:absolute;
width:100%;
height:100%;
z-index: 1; /* Atrás do overlay e conteúdo */
}

.carousel img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transform: scale(1); /* Base para o zoom */
transition: opacity 1.5s ease, transform 5s linear; /* Zoom suave e longo */
}

.carousel img.active{
opacity:1;
transform: scale(1.15); /* Efeito de zoom na ativa */
}

.overlay {
position: absolute;
width: 100%;
height: 100%;
/* Gradiente que começa transparente e termina na cor exata do seu fundo */
background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(13,13,13,1) 100%);
z-index: 2;
}

.hero-content{
position:relative;
text-align:center;
max-width:720px;
padding:0 20px;
z-index: 3; /* Texto no topo para ser clicável */
}

.hero h1{
font-size:48px;
margin-bottom:20px;
letter-spacing:1px;
}

.hero-content p{
font-size:18px;
line-height:1.8;
max-width:560px;
margin:0 auto;
}

/* BOTÃO */
.btn{
display:inline-block;
margin-top:20px;
padding:14px 28px;
background:#D69E6B;
border-radius:30px;
color:#fff;
text-decoration:none;
transition: 0.3s;
}

.btn:hover {
transform: scale(1.05);
background: #b88659;
}

/* PRODUTOS - Título centralizado e design refinado */
.produtos {
padding: 80px 40px;
text-align: center; /* Isso centraliza o título e o que estiver dentro da section */
}

.produtos h2 {
margin-bottom: 50px; /* Dá mais respiro entre o título e os cards */
font-size: 2rem;
letter-spacing: 1px;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
text-align: center; /* Mantém o conteúdo dos cards centralizado */
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.card{
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);

padding:20px;
border-radius:15px;
text-align:center;
transition:0.3s;
}

.card img{
width:100%;
border-radius:10px;
}

.card:hover{
transform:translateY(-10px);
}

.card span{
display:block;
margin:10px 0;
color:#D69E6B;
font-weight:bold;
}

.destaque{
border:2px solid #D69E6B
}

/* PROMO */
.promo{
text-align: center;
height:400px;
background:url('images/bg2.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
}

.promo-text{
background:rgba(0,0,0,0.6);
padding:30px;
border-radius:15px;
text-align: center;
align-items: center;
}

.promo-text p2{
font-size:10px;
margin:10px 0;
display:flex;


}

/* BENEFÍCIOS - ORGANIZADO */
.beneficios {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 40px;
    background: #111;
    flex-wrap: wrap; /* Garante que quebre linha no mobile */
}

.beneficio-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03); /* Fundo sutil */
    border-radius: 15px;
    transition: 0.3s;
}

.beneficio-item:hover {
    background: rgba(214, 158, 107, 0.1); /* Brilho dourado ao passar o mouse */
    transform: translateY(-5px);
}

.beneficio-item strong {
    display: block;
    font-size: 1.2rem;
    color: #D69E6B; /* Cor dourada da sua marca */
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.beneficio-item p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Ajuste específico para Mobile dentro da sua Media Query */
@media (max-width: 768px) {
    .beneficios {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .beneficio-item {
        width: 100%;
        max-width: 100%;
    }
}

/* CONTATO */
.contato{
text-align:center;
padding:100px;
}

.whatsapp{
background:#D69E6B;
padding:15px 30px;
border-radius:30px;
color:#fff;
text-decoration:none;
}

/* SOBRE NÓS */
.sobre{
padding:80px 40px;
text-align:center;
background:#111;
}

.sobre p{
max-width:600px;
margin:20px auto;
line-height:1.6;
}

.stats{
display:flex;
justify-content:space-around;
margin-top:40px;
}

.stat h3{
font-size:36px;
color:#D69E6B;
}

.stat p{
margin-top:10px;
}

/* DEPOIMENTOS */
.depoimentos{
padding:80px 40px;
background:#0d0d0d;
}

.depoimentos h2{
text-align:center;
margin-bottom:40px;
}

.depoimento{
background:#111;
padding:20px;
border-radius:15px;
margin:20px auto;
max-width:400px;
text-align:center;
}

.depoimento p{
margin-bottom:10px;
font-style:italic;
}

cite{
color:#D69E6B;
}

/* INSTAGRAM - Ajustado para o Widget Behold */
.instagram-section {
    padding: 80px 20px;
    background-color: #0d0d0d; /* Fundo preto oficial */
    text-align: center;
    opacity: 1 !important; /* Garante que a seção apareça */
    transform: none !important; 
}

/* Estilo do Botão com Logo */
.instagram-section .btn {
    background: transparent !important; 
    border: 1px solid #D69E6B !important; /* Bordinha dourada fina */
    color: #fff;                        /* Texto branco */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.instagram-section .btn:hover {
    background: rgba(214, 158, 107, 0.1) !important; /* Brilho leve ao passar o mouse */
    transform: translateY(-2px);
}

.instagram-section .btn img {
    width: 40px;
    height: 40px;
}

.insta-container {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 300px; /* Evita que a página "pule" enquanto carrega */
}

/* Forçar o widget a ocupar 100% da largura disponível */
behold-widget {
    width: 100%;
    display: block;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .instagram-section {
        padding: 50px 15px;
    }
    
    .instagram-section h2 {
        font-size: 24px;
    }
}
/* FOOTER */
footer{
background:#000;
padding:40px;
text-align:center;
}

footer p{
margin:10px 0;
}

.social a{
color:#fff;
margin:0 10px;
text-decoration:none;
}

/* Back to Top */
.back-to-top{
position:fixed;
bottom:20px;
right:20px;
background:#D69E6B;
color:#fff;
border:none;
border-radius:50%;
width:50px;
height:50px;
font-size:20px;
cursor:pointer;
display:none;
transition:0.3s;
z-index:1000;
}

.back-to-top:hover{
background:#D69E6B;
}

/* MODAL DO CARRINHO */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 2px solid #D69E6B;
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.cart-modal.open {
    right: 0;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D69E6B;
}

.cart-header h2 {
    font-size: 20px;
    margin: 0;
}

.close-btn {
    background: transparent;
    border: none;
    color: #D69E6B;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
    transform: scale(1.2);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    background: rgba(214, 158, 107, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 8px;
}

.cart-item-price {
    color: #D69E6B;
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;
}

.quantity-btn {
    background: transparent;
    border: none;
    color: #D69E6B;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
}

.quantity-btn:hover {
    transform: scale(1.2);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.remove-btn:hover {
    transform: scale(1.2);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cart-footer {
    border-top: 1px solid #D69E6B;
    padding-top: 15px;
}

.cart-total {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: right;
    color: #D69E6B;
}

.discount-text {
    display: block;
    font-size: 14px;
    color: #4CAF50;
    margin: 8px 0;
    font-weight: normal;
}

.btn-checkout {
    width: 100%;
    margin-top: 10px;
}

/* Fundo escuro quando o modal está aberto */
.cart-modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: -1;
}

.cart-modal.open::before {
    display: block;
}

/* RESPONSIVIDADE CORRIGIDA */
@media (max-width: 768px) {
    header { 
        padding: 15px 20px; 
        flex-direction: column; /* Coloca a logo em cima e o menu embaixo */
        gap: 10px;
        height: auto;
        background: rgba(0,0,0,0.95); /* Garante leitura no mobile */
    }

    /* REMOVIDO O DISPLAY NONE - Agora ele aparece organizado */
    nav { 
        display: flex; 
        justify-content: center; 
        gap: 15px; 
        width: 100%;
    }

    nav a {
        margin: 0;
        font-size: 13px; /* Diminui um pouco a letra para caber tudo em uma linha */
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .logo span {
        font-size: 18px;
    }

    .hero h1 { 
        font-size: 2.5rem; 
    }

    .stats { 
        gap: 30px; 
        flex-direction: column; /* Stats um embaixo do outro no celular */
    }

    .promo { 
        padding: 20px; 
        justify-content: center; 
        text-align: center; 
        height: auto;
        min-height: 400px;
    }

    .card img { 
        height: 250px; 
    }

    .beneficios {
        padding: 40px 20px;
    }

    /* CARRINHO RESPONSIVO */
    .cart-modal {
        width: 100%;
        right: -100%;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-controls {
        width: 100%;
        margin-top: 10px;
        justify-content: space-between;
    }
}