:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.1);
    --text-main: #000000;
    --text-muted: #000000;
    --accent: #16a34a;
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
    z-index: -1;
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-5%, -5%);
    }
}

.container {
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    color: #000000;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #000000;
}

.content p {
    margin-bottom: 24px;
}

strong {
    color: #0f172a;
    font-weight: 600;
}

.alert-box {
    background: #fef2f2;
    border: 2px solid #ef4444;
    padding: 24px;
    border-radius: 16px;
    margin: 32px 0;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.1);
}

.alert-box p {
    margin: 0;
    color: #991b1b;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 500;
}

.alert-box strong {
    color: #7f1d1d;
    font-size: 1.4rem;
}

.alert-box span {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 700;
}

.pdf-notice {
    background: rgba(147, 51, 234, 0.05);
    /* Roxo claro para o fundo */
    border-left: 4px solid #9333ea;
    /* Roxo vivo para a borda */
    padding: 18px;
    border-radius: 12px;
    margin: 28px 0;
}

.pdf-notice p {
    margin: 0;
    color: #7e22ce;
    /* Roxo vivo para o texto */
    font-size: 1rem;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    margin: 36px 0;
}

.support-section h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #000000;
}

.support-section>p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.highlight-note {
    display: block;
    margin: 16px 0;
    color: #b45309;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.4;
    padding: 16px;
    background: #fffbeb;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.support-item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: #e2e8f0;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.support-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.support-text strong {
    font-size: 1.1rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.support-item:hover strong {
    color: var(--primary);
}

.whatsapp:hover strong {
    color: var(--accent);
}

.footer {
    text-align: center;
    margin-top: 48px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Icons */
.icon-email {
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.icon-whatsapp {
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2316a34a' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.438 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .card {
        padding: 32px 20px;
        border-radius: 20px;
    }

    h1 {
        font-size: 2.1rem;
    }

    .support-item {
        padding: 14px;
        gap: 12px;
    }
}