/* Estética Fofa e Rosa Claro */
body {
    font-family: 'Segoe UI', 'Comic Sans MS', cursive, sans-serif; /* Fonte levemente mais lúdica */
    line-height: 1.6;
    margin: 0;
    background-color: #fff5f7; /* Rosa claríssimo de fundo */
    color: #7d5a5a; /* Marrom suave em vez de preto para menos contraste */
}

header {
    background: #ffdae9; /* Rosa pastel */
    color: #d85a8d;
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 5px solid #fbc2d8;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px #ffffff;
}

nav {
    background: #ffffff;
    padding: 10px;
    text-align: center;
    border-bottom: 2px dashed #fbc2d8;
}

nav a {
    color: #d85a8d;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #ff99c8;
    letter-spacing: 1px;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

article {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 20px; /* Bordas bem arredondadas */
    border: 2px solid #fbc2d8;
    box-shadow: 8px 8px 0px #fce4ec; /* Sombra sólida estilo 'pop' */
}

article h2 {
    color: #d85a8d;
    margin-top: 0;
}

.meta {
    font-size: 0.85rem;
    color: #bfa3a3;
    background: #fff0f5;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.btn-leia-mais, .voltar {
    display: inline-block;
    background: #ffc1d7;
    color: #d85a8d;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-leia-mais:hover {
    background: #ff99c8;
    color: white;
    transform: scale(1.05); /* Efeito de pulso ao passar o mouse */
}

footer {
    text-align: center;
    padding: 30px;
    color: #d85a8d;
    font-size: 0.9rem;
}

/* Detalhe extra: barra de rolagem fofa */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fff5f7;
}


::-webkit-scrollbar-thumb {
    background: #fbc2d8;
    border-radius: 10px;
}
