/* =========================================
   PÁGINA DE AGRADECIMENTO
   ========================================= */
.pagina-agradecimento {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh; /* Garante que fique no meio da tela entre o header e o footer */
    background-color: #f4eee8; /* O fundo bege característico da Fllumen */
    padding: 60px 20px;
}

.cartao-agradecimento {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 800px;
    text-align: center;
    border-top: 6px solid #e30613; /* A linha vermelha premium no topo */
}

.cartao-agradecimento h1 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #e30613;
    font-size: 36px;
    margin-bottom: 25px;
}

.cartao-agradecimento p {
    font-family: 'Roboto', sans-serif;
    color: #444;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cartao-agradecimento .boa-sorte {
    font-size: 22px;
    font-weight: 700;
    color: #e30613;
    margin-top: 30px;
}

.cartao-agradecimento .assinatura {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 40px;
}

.cartao-agradecimento .assinatura strong {
    color: #e30613;
}

.btn-voltar-home {
    display: inline-block;
    background-color: #e30613;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-voltar-home:hover {
    background-color: #b00000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}