/* Estilo geral */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ffd1dc, #ffe4e9);
    text-align: center;
    color: #333;
}

/* Menu superior estilizado */
.menu-superior {
    width: 100%;
    background: linear-gradient(45deg, #ffafc2, #ffcfd9);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 0 0 15px 15px;
    transition: background 0.4s ease-in-out;
}

.menu-superior:hover {
    background: linear-gradient(45deg, #ffcfd9, #ffafc2);
}

.menu-superior ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.menu-superior a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.menu-superior a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    color: #ff6b81;
}

/* Efeito no fundo da página */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/soft-wallpaper.png');
    opacity: 0.3;
    z-index: -1;
}

/* Seção de Categorias */
.categorias {
    margin-top: 100px;
    padding: 30px;
}

.categorias h1 {
    font-size: 28px;
    color: #ff6b81;
    font-family: 'Pacifico', cursive;
}

.categoria-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Botões de categoria interativos */
.categoria {
    display: block;
    background: linear-gradient(45deg, #ffc1cc, #ffafc2);
    padding: 15px;
    border-radius: 10px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);
}

.categoria:hover {
    background: linear-gradient(45deg, #ff8fa3, #ffc1cc);
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.2);
}

/* Animação especial para entradas na página */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.categoria-box a {
    animation: fadeIn 0.8s ease-in-out;
}
