﻿/* 🌟 Estilo geral */
body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fdf9ff;
    color: #2d2d3a;
    padding: 20px;
}

.painel-admin h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: #5c2e91;
}

/* ✨ Card com os 7 nós */
.card-nos {
    background: rgba(92, 46, 145, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(92,46,145,0.2);
    margin-bottom: 30px;
}

    .card-nos h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

.linha-nos {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}

.no {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #2a1e3f;
    box-shadow: 0 0 6px #000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.no-aceso {
    background-color: #ffe473;
    box-shadow: 0 0 12px #ffe473;
}

.no-apagado {
    background-color: #2a1e3f;
    opacity: 0.3;
}

/* 📜 Lista de evolução */
.lista-evolucao {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: auto;
}

    .lista-evolucao li {
        background: #f8f0ff;
        border-left: 5px solid #9b59b6;
        padding: 14px;
        margin-bottom: 16px;
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .lista-evolucao strong {
        display: block;
        font-size: 18px;
        margin-bottom: 4px;
        color: #42027d;
    }

    .lista-evolucao em {
        font-style: italic;
        font-size: 14px;
        color: #555;
    }
