
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: url('img/background-food.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    color: white;
}

.container {
    text-align: center;
    padding-top: 5vh;
    backdrop-filter: blur(6px);
}

.logo-area img {
    width: 120px;
}

.logo-area h1 {
    font-size: 2.5em;
    text-shadow: 0 0 10px #ff6f00;
    margin-top: 10px;
}

.botoes {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.botao {
    background: rgba(0,0,0,0.6);
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px #00ffd5;
    border: 1px solid #00ffd5;
}

.botao:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ffd5;
}

.botao img {
    width: 30px;
    height: 30px;
}

/* Ícones de comida flutuantes */
.icon-float {
    position: absolute;
    width: 50px;
    animation: floatIcons 12s infinite ease-in-out;
    opacity: 0.7;
    z-index: 0;
}

@keyframes floatIcons {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    30% { opacity: 0.7; }
    100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}
