/* ===============================
   PÁGINA DE AGRADECIMENTO — PNAE 2026
   =============================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #083FCF 0%, #0629a3 50%, #040f5a 100%);
    min-height: 100vh;
    color: #1F2937;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thank-you-container {
    max-width: 560px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.ty-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.check-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    margin-top: 1rem;
}

.check-icon svg circle {
    fill: rgba(255, 255, 255, 0.1);
}

.check-icon svg path {
    stroke: #ffffff;
}

.ty-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ty-logo {
    height: 56px;
    width: auto;
}

.ty-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-top: -0.1rem;
    margin-bottom: -0.35rem;
}

.ty-congrats {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FC7D55 0%, #B073FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-top: -0.1rem;
    margin-bottom: -0.35rem;
}

.ty-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 480px;
    text-align: center;
    margin-top: -0.3rem;
    margin-bottom: -0.3rem;
}

.ty-subtitle strong {
    color: #ffffff;
}

.ty-subtitle-secondary {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
    .ty-title {
        font-size: 1.75rem;
    }

    .ty-logo {
        height: 44px;
    }
}
