/* Variáveis CSS para cores e outros valores reutilizáveis */
:root {
    --primary-color: #5f0b88;       /* Roxo */
    --secondary-color: #5f0b88;     /* Roxo Trend */
    --accent-color: #5638d7;        /* Roxo mais claro */
    --dark-color: #161922;          /* Quase preto */
    --light-color: #f8f9fa;         /* Branco com tom */
    --text-color: #333;             /* Cinza escuro para texto */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header e logo */
header {
    padding: 20px 0;
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Conteúdo principal */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.thanks-content {
    background-color: white;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    border-top: 5px solid var(--primary-color);
}

h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.decoration-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 4px;
}

.message {
    margin-bottom: 30px;
    color: #666;
    font-size: 0.95rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: #777;
    font-size: 0.8rem;
    margin-top: auto;
}

/* Media queries para responsividade */
@media (min-width: 576px) {
    .thanks-content {
        padding: 50px 30px;
        max-width: 500px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .message {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .action-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-content {
        padding: 60px 40px;
        max-width: 600px;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .thanks-content {
        padding: 70px 50px;
        max-width: 700px;
    }

    .logo {
        max-width: 220px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
} 