/* Configurações Gerais - Foco em Leitura e Minimalismo */
body {
    background-color: #ffffff; /* Fundo branco para combinar com seu novo ícone */
    color: #1a1a1a; /* Texto quase preto para melhor contraste e leitura */
    font-family: 'Georgia', serif; /* Fonte clássica, estilo editorial/livro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased; /* Melhora a nitidez da fonte no iPhone */
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 40px 0;
}

/* Cabeçalho Minimalista */
header h1 {
    font-weight: 300;
    letter-spacing: 6px;
    font-size: 0.85rem;
    margin-bottom: 80px;
    text-transform: uppercase;
    color: #888; /* Cinza suave para não distrair do conteúdo principal */
}

/* Área do Conteúdo (Fragmento Filosófico) */
#content {
    margin-bottom: 60px;
    min-height: 250px; /* Evita que o layout "pule" ao trocar de frase */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.8s ease-in-out;
}

#texto-diario {
    font-size: clamp(1.3rem, 5vw, 2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: normal;
}

#autor {
    display: block;
    font-style: italic;
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animação de Carregamento (Ponto Pulsante) */
#texto-diario:empty::before {
    content: "•";
    display: block;
    animation: pulsar 1.5s infinite;
    font-size: 2rem;
    color: #ccc;
}

@keyframes pulsar {
    0% { opacity: 0.2; }
    50% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

/* Botão Principal */
#btn-nova {
    background: none;
    border: 1px solid #ddd;
    color: #333;
    padding: 18px 35px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#btn-nova:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Ações Secundárias (WhatsApp e Agenda) */
.acoes-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-acao {
    background: none;
    border: none;
    color: #bbb;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-acao:hover {
    color: #000;
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 20px 0;
    }
    header h1 {
        margin-bottom: 40px;
    }
}