/* ===============================
   PÁGINA DE AGRADECIMENTO — SPONTE
   =============================== */

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

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #083FCF 0%, #3a1a7a 50%, #B073FF 100%);
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.ty-sponte-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.ty-sponte-container {
    max-width: 520px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ty-sponte-check {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.ty-sponte-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.ty-sponte-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 440px;
}

.ty-sponte-btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FC7D55 0%, #B073FF 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0 2rem;
    height: 56px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(252, 125, 85, 0.35);
}

.ty-sponte-btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252, 125, 85, 0.45);
}

.ty-sponte-btn-instagram i {
    font-size: 1.4rem;
}

.ty-sponte-logos {
    margin-top: 1rem;
}

.ty-sponte-logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

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

    .ty-sponte-subtitle {
        font-size: 1rem;
    }

    .ty-sponte-btn-instagram {
        width: 100%;
        justify-content: center;
    }
}
