body {
    font-family: 'Georgia', serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card {
    background: #fff;
    padding: 60px 80px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    text-align: center;
}

h1 {
    color: #FF0000; /*vermelho*/
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

blockquote {
    text-align: left;
    font-size: 1.5em;
    line-height: 1.6;
    color: #111;
    position: relative;
    margin: 0;
    padding-left: 30px;
    border-left: 6px solid #FF0000; /*vermelho*/
    font-family: 'Times New Roman', Times, serif;
}

blockquote footer {
    margin-top: 20px;
    font-size: 1em;
    color: #555;
    text-align: right;
    font-style: italic;
}

blockquote footer a {
    color: #1e66ff;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 6px 9px rgba(30,102,255,0.6);
    
}

blockquote footer a {
    color: #1e66ff;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: transparent; /* começa "invisível" */
    text-underline-offset: 6px; /* distância da linha pro texto */
    transition: text-decoration-color 0.3s ease, text-underline-offset 0.3s ease;
}

blockquote footer a:hover {
    text-decoration-color: #1e66ff; /* revela o sublinhado */
    text-underline-offset: 3px; /* aproxima a linha */
}
