body {
    margin: 0;
    font-family: Arial;
    background: #f4f6f9;
}

/* TOPO */

.topo-empresa {
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.topo-empresa::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.topo-conteudo {
    position: relative;
    z-index: 2;
}

.logo-empresa {
    max-height: 120px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.topo-conteudo h1 {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
}

/* CONTAINER */

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

/* TABLOIDE */

.secao-tabloide {
    text-align: center;
    margin-bottom: 60px;
}

/* PRODUTOS */

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.produto-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.produto-info {
    padding: 15px;
    text-align: center;
}

.preco {
    font-weight: bold;
    color: #0d6efd;
    margin: 10px 0;
}

/* RODAPÉ */

.rodape-empresa {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

/* RESPONSIVO */

@media(max-width:900px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}
#flipbook{
width:900px;
height:600px;
margin:40px auto;
}

#flipbook .page{
background:#fff;
}

#flipbook img{
width:100%;
height:100%;
object-fit:cover;
}
@media(max-width:900px) {

    #flipbook {
        width: 100%;
        height: 500px;
    }

}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
    transition: transform .3s;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
}

.zap-text {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: .3s;
}

.whatsapp-btn:hover .zap-text {
    opacity: 1;
    transform: translateX(0);
}

@media(max-width:768px) {
    .zap-text {
        display: none;
    }
}
.ranking-empresas{
max-width:1100px;
margin:50px auto;
text-align:center;
}

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

.ranking-card{
background:#fff;
padding:20px;
border-radius:10px;
text-decoration:none;
color:#000;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:.3s;
}

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

.ranking-card img{
max-height:60px;
margin-bottom:10px;
}
.modal-produto{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:999;
}

.modal-conteudo{
background:#fff;
padding:25px;
border-radius:10px;
max-width:500px;
width:90%;
text-align:center;
}

.modal-conteudo img{
max-width:100%;
}

.btn-fechar{
position:absolute;
top:10px;
right:10px;
border:none;
background:none;
font-size:22px;
cursor:pointer;
}

/* imagem principal */

#modalImgPrincipal {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

/* galeria */

.galeria {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.galeria img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

.galeria img:hover {
    border-color: #0d6efd;
}
.produto-card{
cursor:pointer;
transition:0.2s;
}

.produto-card:hover{
transform:scale(1.02);
}
.produto-card img {
width:90%;
height:270px;
border-radius:8px;
margin-bottom:20px; 
}


border-radius: 15px;
  border: 3px red;
  
}
@media(max-width:768px) {

    .produto-card img {
        height: 280px;
    }

}
.btn-whats{
display:inline-block;
margin-top:15px;
padding:12px 18px;
background:#25d366;
color:#fff;
font-weight:bold;
text-decoration:none;
border-radius:6px;
}

.btn-whats:hover{
background:#1ebe5b;
}
.btn-fechar{
position:absolute;
top:10px;
right:10px;
background:#fff;
border:none;
font-size:20px;
width:35px;
height:35px;
border-radius:50%;
cursor:pointer;
box-shadow:0 2px 6px rgba(0,0,0,0.2);
}

.btn-fechar:hover{
background:#f1f1f1;
}
.acoes-modal{
margin-top:15px;
display:flex;
gap:10px;
justify-content:center;
flex-wrap:wrap;
}

.btn-avaliar{
background:#ffc107;
padding:10px 15px;
border-radius:6px;
text-decoration:none;
color:#000;
font-weight:bold;
}

.btn-produtos{
background:#0d6efd;
padding:10px 15px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:bold;
}
.views{
font-size:12px;
color:#777;
margin-top:5px;
}
.avaliacao-empresa{

margin-top:10px;
font-weight:bold;

}

.box-avaliacao{

margin-top:40px;
padding:20px;
background:#f8f8f8;
border-radius:8px;

}

.estrelas span{
font-size:30px;
cursor:pointer;
color:#ccc;
transition:0.2s;
}

.estrelas span.ativa{
color:gold;
}

textarea{

width:100%;
height:80px;
margin-top:10px;

}

button{

margin-top:10px;
padding:10px 15px;
background:#0d6efd;
color:#fff;
border:none;
border-radius:5px;

}
.btn-carrinho{
cursor:pointer;
display:inline-block;
}
button {
    cursor: pointer;
}
/* botão flutuante */

.carrinho-flutuante{
position:fixed;
bottom:20px;
right:20px;
background:#28a745;
color:#fff;
padding:12px 16px;
border-radius:50px;
font-size:18px;
cursor:pointer;
z-index:9999;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

/* painel lateral */

.painel-carrinho{
position:fixed;
top:0;
right:-350px;
width:350px;
height:100%;
background:#fff;
box-shadow:-3px 0 10px rgba(0,0,0,0.2);
transition:0.3s;
z-index:9999;
display:flex;
flex-direction:column;
}

.painel-carrinho.ativo{
right:0;
}

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

#listaCarrinho{
flex:1;
overflow:auto;
padding:15px;
}

.item-carrinho{
border-bottom:1px solid #eee;
padding:8px 0;
}

.carrinho-footer{
padding:15px;
border-top:1px solid #eee;
}

.carrinho-footer button{
width:100%;
padding:10px;
background:#25D366;
border:none;
color:#fff;
font-size:16px;
cursor:pointer;
border-radius:6px;
}
.total-carrinho{
font-size:18px;
font-weight:bold;
margin-bottom:10px;
text-align:center;
}
.carrinho-flutuante{
position:fixed;
bottom:20px;
right:20px;
background:#28a745;
color:#fff;
padding:12px 16px;
border-radius:40px;
font-size:16px;
cursor:pointer;
z-index:9999;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
display:flex;
gap:8px;
align-items:center;
}
.zap-contato {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

.zap-icone {
    width: 150px;
    position: relative;
    z-index: 2;
}

@keyframes zapPulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}
.zap-icone{
width:150px;
animation:flutuar 2s infinite ease-in-out;
}

@keyframes flutuar{
0%{transform:translateY(0);}
50%{transform:translateY(-5px);}
100%{transform:translateY(0);}
}
.promocoes-loja{
margin-top:40px;
}

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