* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: #f3f4f7;
    color: #1f2937;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 96px;
}

.card {
    width: min(520px, 100%);
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    position: relative;
}

.card__banner img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card__profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    overflow: hidden;
    margin: -60px auto 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.card__profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__content {
    text-align: center;
    padding: 0 28px 32px;
}

.card__content h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
}

.card__title {
    margin: 0 0 6px;
    font-size: 15px;
    color: #475569;
}

.card__location {
    margin: 0 0 20px;
    font-size: 14px;
    color: #64748b;
}

.card__actions {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn--primary {
    background: #2563eb;
    color: #ffffff;
}

.btn--ghost {
    background: #ffffff;
    color: #2563eb;
    border-color: #cbd5f5;
}

.btn--whatsapp {
    background: #22c55e;
    color: #ffffff;
}

.card__icon-links {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.icon-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.icon-link img {
    width: 22px;
    height: 22px;
}

.consent {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    max-width: min(520px, calc(100% - 32px));
    z-index: 10;
}

.consent p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #475569;
}

.consent__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 480px) {
    .card__actions {
        grid-template-columns: 1fr;
    }
}
