.modelo-restaurante {
    background: #111;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 30px;
}

.modelo-restaurante .header-interno-res {
    background: linear-gradient(90deg, #ff0000, #ff6600);
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.modelo-restaurante .banner-res {
    background: url("https://images.unsplash.com/photo-1550547660-d9450f859349") center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modelo-restaurante .banner-res h1 {
    background: rgba(0,0,0,0.7);
    padding: 15px 30px;
    border-radius: 10px;
    border: 2px solid #ffcc00;
}

.modelo-restaurante .filtros-res {
    text-align: center;
    padding: 30px 0;
}

.modelo-restaurante .filtros-res button {
    margin: 5px;
    padding: 12px 25px;
    border: none;
    background: #FFC107;
    color: black;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.modelo-restaurante .filtros-res button:hover {
    background: #ff6600;
    color: white;
    transform: scale(1.1);
}

.modelo-restaurante .cardapio-res {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px 5%;
}

.modelo-restaurante .item-res {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #333;
}

.modelo-restaurante .item-res:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.modelo-restaurante .item-res img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.modelo-restaurante .info-item { padding: 15px; }

.modelo-restaurante .item-res h3 { color: #ffcc00; margin-bottom: 5px; }

.modelo-restaurante .btn-pedir {
    width: 100%;
    margin-top: 15px;
    background: #25d366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.modelo-restaurante .footer-interno-res {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #333;
    margin-top: 50px;
}

.modelo-restaurante .footer-interno-res {
    background: #0a0a0a;
    padding: 40px 5% 20px 5%;
    border-top: 2px solid #ff6600;
    color: #eee;
}

.modelo-restaurante .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.modelo-restaurante .footer-info h4 {
    color: #ffcc00;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
}

.modelo-restaurante .footer-info p {
    font-size: 14px;
    color: #bbb;
    margin: 5px 0;
}

.modelo-restaurante .footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}