/* Estilos para correção visual do site Los Chapas */

/* Barra de cashback fixa em amarelo */
.cashback {
    background-color: #ffd700;
    color: #000;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 60px;
    z-index: 900;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cashback h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

/* Efeito piscante aprimorado para o status das lojas */
@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-bar.aberto {
    animation: piscar 1s infinite;
    background-color: #2a9d8f;
}

.status-bar.fechado {
    background-color: #e63946;
}

/* Ajuste para posicionar o texto ABERTO/FECHADO sobre a barra de status */
.status-text {
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Efeito flutuante aprimorado para os cards das lojas */
.loja-card {
    transition: all 0.4s ease;
    transform-origin: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.loja-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

/* Botão Ver Cardápio */
.btn-cardapio {
    display: inline-block;
    background-color: #1d1d1d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 10px 0 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cardapio:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo para links de endereço */
.endereco-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.endereco-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Melhorias gerais de design */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Correção para exibição de imagens */
.loja-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.banner {
    background-size: cover;
    background-position: center;
    height: 500px;
}