/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f0f2f5;
    color: #1c1e21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 24px;
}

.logo-placeholder {
    font-weight: 900;
    font-size: 1.5rem;
    color: #4f46e5;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

header p {
    color: #65676b;
    font-size: 1rem;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-container {
    margin-bottom: 24px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 4px;
}

.value {
    font-size: 3rem;
    font-weight: 900;
}

.btn {
    display: block;
    background-color: #4f46e5;
    color: white;
    padding: 16px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: transform 0.1s ease, background-color 0.2s ease;
    margin-bottom: 16px;
}

.btn:hover {
    background-color: #4338ca;
    transform: scale(1.02);
}

.security-info {
    font-size: 0.875rem;
    color: #8a8d91;
    line-height: 1.6;
}

/* Obrigado Style */
.check-icon {
    width: 60px;
    height: 60px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 16px;
}

.success-title {
    color: #15803d;
}

.status-msg {
    margin: 16px 0;
    font-size: 0.8rem;
    color: #4f46e5;
    background: #eef2ff;
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 24px;
    font-size: 0.935rem;
    color: #4b5563;
}

.link-secondary {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
}

.link-secondary:hover {
    text-decoration: underline;
}