html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.footer{
    background: #0f5f3d; 
    color: #ffffff;
    padding: 60px 5% 25px;
}
.footer-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-col h4{
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.footer-contact p{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.footer-contact i{
    font-size: 1.1rem;
    color: #f59300;
}
.footer-center{
    display: flex;
    justify-content: flex-start;      
}
.footer-map iframe{
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 14px;
}
.footer-bottom{
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.85;
}
.footer-social{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-social a{
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59300;
    font-size: 1.3rem;
    transition: 0.3s;
    text-decoration: none;
}
.footer-social a:hover{
    background: #ffffff;
    color: #0f5f3d;
}
.status-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.restaurante-img{
    max-width: 400px;
    display: block;
}
@keyframes float{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
    100%{ transform: translateY(0); }
}
.status-buttons{
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}
.status-btn{
    display: none; 
    padding: 12px 34px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: 0.3s;
}
.status-btn.open{
    background: #00ff66; 
    color: #003b1c;
}
.status-btn.close{
    background: #ff2b2b;
    color: #fff;
}
.status-btn.active{
    display: block; 
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
}
.status-horario{
    font-size: 0.75rem;
    opacity: 0.9;
    text-align: center;
    line-height: 1.4;
}
.status-inner{
    display: flex;
    flex-direction: column;
    align-items: center; 
    transform: translateX(-30px);
}
@media (max-width: 768px){
    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact p{
        justify-content: center;
    }
    .footer-map iframe{
        height: 220px;
    }
    .footer-social{
        justify-content: center;
    }
    .footer-center{
        display: flex;
        justify-content: center;
    }
    .status-inner{
        transform: translateX(0);  
        align-items: center;       
    }
    .restaurante-img{
        max-width: 300px; 
    }
    .status-buttons{
        margin-top: 24px;    
        justify-content: center;
    }
}
