* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

nav {
    background-color: #d32f2f; /* Rojo intenso */
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1562967914-608f82629710?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 10px; }

.btn-pedido {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #ff9800; /* Naranja */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-pedido:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

.menu { padding: 50px 10%; text-align: center; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.item h3 { color: #d32f2f; margin-bottom: 10px; }

.info {
    background-color: #222;
    color: white;
    padding: 40px 10%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.info-card { margin: 20px; flex: 1; min-width: 250px; }

footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 20px;
}