/* Estilos gerais do card */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ff8da1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: #A020F0;
    width: 420px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* TÍTULO DO CARD */
.card-titulo {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #ff0090;
    letter-spacing: 3px; /* espaçamento entre letras */
    text-align: center;
    margin-bottom: 20px;
}

/* BLOCO DE CITAÇÃO */
.citacao {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    text-align: justify;
    text-indent: 30px; /* recuo da primeira linha */
    line-height: 1.8; /* espaçamento entre linhas */
    color: #fff700;
    margin-bottom: 25px;
}

/* NOME DO AUTOR */
.autor {
    text-align: right;
    font-style: italic;
    color: #00ff04;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* LINK DO AUTOR (opcional) */
.link-autor {
    color: #00ff04;
    text-decoration: none; /* remove sublinhado */
    text-transform: capitalize;
    transition: color 0.3s;
}

.link-autor:hover {
    color: #00ff04;
}
