/* =========================================
   PÁGINA DE AGRADECIMENTO - TIME FLLU (Estilos do seu HTML)
   ========================================= */

/* O fundo bege que centraliza tudo na tela */
.secao-agradecimento {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    background-color: #f4eee8; /* Fundo bege */
    padding: 60px 20px;
}

/* O cartão branco com a linha vermelha */
.container-sucesso {
    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; /* Linha vermelha no topo */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* O "Olá! 💌" agindo como o título principal */
.carta-vermelha-fllu p:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    color: #e30613;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Os parágrafos de texto padrão */
.carta-vermelha-fllu p {
    font-family: 'Roboto', sans-serif;
    color: #444;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* A primeira assinatura ("Boa Sorte! 💛") com destaque vermelho */
.carta-vermelha-fllu .assinatura-fllu:nth-last-of-type(2) {
    font-size: 22px;
    font-weight: 700;
    color: #e30613;
    margin-top: 30px;
}

/* A segunda assinatura ("Com carinho, Equipe Fllumen") */
.carta-vermelha-fllu .assinatura-fllu:last-of-type {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* O Botão de voltar para a Home */
.container-sucesso .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;
    margin-top: 10px;
}

.container-sucesso .btn-voltar-home:hover {
    background-color: #b00000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}