body {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #f0f3ff 0%, #e5ecff 45%, #dfe9f3 100%);
    display: flex;
    justify-content: center;
    padding: 40px 16px 64px;
    box-sizing: border-box;
}

.page {
    width: 100%;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(28, 67, 150, 0.12);
    border: 1px solid rgba(117, 134, 201, 0.12);
}

.hero-card {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, #ffffff 60%, #f6f7ff 100%);
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(76, 110, 245, 0.1);
    color: #4c6ef5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.avatar {
    width: 96px;
    height: 96px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    box-shadow: 0 12px 24px rgba(19, 37, 89, 0.25);
}

.hero-card h1 {
    font-size: 24px;
    color: #1c2754;
    margin: 0 0 6px;
}

.subtitle {
    color: #6a7597;
    margin: 0 0 14px;
    font-size: 15px;
}

.hero-card p {
    color: #3f4a6d;
    line-height: 1.6;
}

.hero-text {
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.hero-media {
    width: 92%;
    border-radius: 22px;
    margin-bottom: 22px;
    box-shadow: 0 14px 40px rgba(28, 67, 150, 0.25);
}

.second-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.second-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(18, 140, 126, 0.4);
}

.second-button .wa-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-button .wa-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.second-button.secondary {
    background: linear-gradient(90deg, #5f6cf0 0%, #7b89ff 100%);
    box-shadow: 0 15px 30px rgba(85, 98, 240, 0.3);
}

.footer-card {
    text-align: center;
    color: #7b819f;
    font-size: 14px;
}

.footer-links {
    margin: 8px 0 14px;
}

.footer-links a {
    color: #5661b3;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.company-info {
    font-size: 13px;
    color: #6a7597;
}

@media (max-width: 520px) {
    body {
        padding: 24px 12px 48px;
    }

    .card {
        padding: 24px;
        border-radius: 20px;
    }

    .hero-media {
        width: 100%;
        margin-bottom: 16px;
    }
}

