:root {
    color-scheme: dark;
    --bg: radial-gradient(circle at top left, rgba(137, 87, 255, 0.35), transparent 45%),
            radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 40%),
            linear-gradient(180deg, #0b0418 0%, #050108 70%, #000000 100%);
    --card: rgba(12, 11, 24, 0.75);
    --stroke: rgba(255, 255, 255, 0.16);
    --muted: rgba(255, 255, 255, 0.68);
    --pill: rgba(255, 255, 255, 0.12);
    --highlight: linear-gradient(135deg, #8640ff, #f16fff);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg) fixed;
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 32px 16px 48px;
}

body.age-gate-open { overflow: hidden; }

/* Age Gate */
.age-gate-overlay[hidden] { display: none !important; }
.age-gate-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 1, 8, 0.78);
    backdrop-filter: blur(8px);
    z-index: 9999;
}

.age-gate {
    width: min(92vw, 420px);
    background: rgba(12, 12, 24, 0.92);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 24px 48px rgba(3, 0, 17, 0.55);
}

.age-gate-icon { font-size: 1.4rem; margin-bottom: 6px; }
.age-gate h2 { font-size: 1.15rem; margin-bottom: 6px; }
.age-gate p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.age-gate-actions { display: flex; justify-content: center; gap: 10px; }

.age-gate .btn {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: var(--pill);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}
.age-gate .btn:hover { transform: translateY(-2px); }
.age-gate .btn.primary { background: var(--highlight); border-color: transparent; }
.age-gate .btn.secondary { background: rgba(255,255,255,0.08); }

/* Layout */
main {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 100%;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
}

.profile-info p {
    color: rgba(255, 255, 255, 0.75);
}

.profile-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-heading p { margin-top: 6px; }
.profile-heading p + p { margin-top: 4px; }

.profile-name-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(18, 214, 134, 0.18), rgba(134, 64, 255, 0.28));
    border: 1px solid rgba(52, 211, 153, 0.6);
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4fff0;
    box-shadow: 0 10px 20px rgba(18, 214, 134, 0.18);
    letter-spacing: 0.2px;
    text-decoration: none;
}

.verified-badge i { color: #b6ffe4; }

/* Capa */
.profile-cover {
    width: 100%;
    height: 180px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.35), rgba(57, 22, 189, 0.55));
    border: 1px solid var(--stroke);
}

.profile-cover img,
.profile-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 0, rgba(134, 64, 255, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(5, 1, 8, 0.12), rgba(5, 1, 8, 0.30));
}

/* Avatar */
.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-top: -56px;
    z-index: 1;
}

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

img, video {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* Status online */
.profile-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.92rem;
}

.profile-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #34d399;
    font-weight: 600;
}

.status-indicator {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.status-indicator::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid rgba(52, 211, 153, 0.55);
    opacity: 0;
    animation: status-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-text { line-height: 1; }

@keyframes status-ping {
    0%   { transform: scale(0.6); opacity: 0.9; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Seção "Sobre" */
.profile-bio {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(12, 11, 24, 0.75);
    border: 1px solid var(--stroke);
    box-shadow: 0 12px 28px rgba(3, 0, 17, 0.35);
}

.profile-bio__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.profile-bio__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.32), rgba(241, 111, 255, 0.3));
    color: #fff;
    box-shadow: 0 8px 18px rgba(134, 64, 255, 0.25);
    flex-shrink: 0;
}

.profile-bio__title {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.profile-bio p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke);
    border-radius: 12px;
}

/* Verificação */
.verification-card {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(12, 11, 24, 0.75);
    border: 1px solid var(--stroke);
    box-shadow: 0 12px 28px rgba(3, 0, 17, 0.35);
}

.verification-card__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
}

.verification-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.32), rgba(241, 111, 255, 0.3));
    color: #fff;
    box-shadow: 0 8px 18px rgba(134, 64, 255, 0.25);
}

.verification-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.verification-card h2 { font-size: 1.05rem; }

.verification-card__date {
    font-size: 0.82rem;
    color: #b6ffe4;
    background: rgba(18, 214, 134, 0.14);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 214, 134, 0.28);
    font-weight: 700;
    letter-spacing: 0.1px;
}

.verification-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.verification-list {
    margin-top: 12px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.verification-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

/* Links */
.links-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.22), rgba(241, 111, 255, 0.16));
    border: 1px solid rgba(241, 111, 255, 0.45);
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(134, 64, 255, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.link-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--highlight);
    opacity: 0.9;
}

.link-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.32), rgba(241, 111, 255, 0.22));
    border: 1px solid rgba(241, 111, 255, 0.75);
    box-shadow: 0 16px 34px rgba(134, 64, 255, 0.35);
}

.link-card strong {
    font-size: 1.02rem;
    display: block;
}

.link-card span {
    font-size: 0.86rem;
    color: var(--muted);
}

.link-heading-centered {
    display: block;
    text-align: center;
    margin: 12px 0;
}

.link-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--highlight);
    font-size: 1.3rem;
    box-shadow: 0 8px 16px rgba(134, 64, 255, 0.35);
}

.link-icon i {
    color: #ffffff;
    font-size: 1.35rem;
}

/* Oferta Surpresa do Dia */
.link-card--promo {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.link-card--glow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(241, 111, 255, 0.45);
    box-shadow:
        inset 0 0 8px rgba(241, 111, 255, 0.4),
        0 0 0 1px rgba(241, 111, 255, 0.25);
    opacity: 0.3;
    pointer-events: none;
    animation: border-micro-glow 3.2s ease-in-out infinite;
}

.link-card--glow:hover::after,
.link-card--glow:focus-visible::after {
    animation: none;
    opacity: 0.6;
    box-shadow:
        inset 0 0 12px rgba(241, 111, 255, 0.55),
        0 0 0 1px rgba(241, 111, 255, 0.35);
}

.link-card--promo .promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(135deg, rgba(241, 111, 255, 0.36), rgba(134, 64, 255, 0.24));
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.link-card--promo .promo-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px 20px;
}

.promo-label { color: rgba(255, 255, 255, 0.85); }

.promo-date {
    font-variant-numeric: tabular-nums;
    color: #f8fba8;
    text-align: center;
}

@keyframes border-micro-glow {
    0%, 100% {
        opacity: 0.25;
        box-shadow:
            inset 0 0 6px rgba(241, 111, 255, 0.35),
            0 0 0 1px rgba(241, 111, 255, 0.2);
    }
    50% {
        opacity: 0.65;
        box-shadow:
            inset 0 0 14px rgba(241, 111, 255, 0.6),
            0 0 0 1px rgba(241, 111, 255, 0.35);
    }
}

/* Link da empresa */
.partner-cta {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.18s ease;
}

.partner-cta:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-cta .icon {
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
    transform-origin: center;
    animation: butterflyPulse 2s ease-in-out infinite;
}

.partner-cta b,
.partner-cta:hover span:not(.icon) {
    background: var(--highlight);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes butterflyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* FAQ */
.faq-card {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(12, 11, 24, 0.75);
    border: 1px solid var(--stroke);
    box-shadow: 0 12px 28px rgba(3, 0, 17, 0.35);
}

.faq-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.faq-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.32), rgba(241, 111, 255, 0.3));
    color: #fff;
    box-shadow: 0 8px 18px rgba(134, 64, 255, 0.25);
    flex-shrink: 0;
}

.faq-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.faq-card h2 { font-size: 1.05rem; }

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-item {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item dt {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.faq-item dd {
    margin: 0;
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Criadoras Relacionadas */
.related-section {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(12, 11, 24, 0.75);
    border: 1px solid var(--stroke);
    box-shadow: 0 12px 28px rgba(3, 0, 17, 0.35);
}

.related-section__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.related-section__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.32), rgba(241, 111, 255, 0.3));
    color: #fff;
    box-shadow: 0 8px 18px rgba(134, 64, 255, 0.25);
    flex-shrink: 0;
}

.related-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.related-section h2 { font-size: 1.05rem; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.related-card:hover { transform: translateY(-3px); }

.related-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--stroke);
    transition: border-color 0.2s ease;
}

.related-card:hover img { border-color: rgba(241, 111, 255, 0.6); }

.related-card span {
    font-size: 0.78rem;
    text-align: center;
    color: var(--muted);
    line-height: 1.3;
    max-width: 80px;
    word-break: break-word;
}

/* Como Assinar */
.how-to-card {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(12, 11, 24, 0.75);
    border: 1px solid var(--stroke);
    box-shadow: 0 12px 28px rgba(3, 0, 17, 0.35);
}

.how-to-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.how-to-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(134, 64, 255, 0.32), rgba(241, 111, 255, 0.3));
    color: #fff;
    box-shadow: 0 8px 18px rgba(134, 64, 255, 0.25);
    flex-shrink: 0;
}

.how-to-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.how-to-card h2 { font-size: 1.05rem; }

.how-to-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.how-to-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

/* Rodapé */
footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Acessibilidade: respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .partner-cta .icon,
    .status-indicator::after,
    .link-card--glow::after { animation: none; }
    .link-card, .age-gate .btn { transition: none; }
}

/* Responsividade */
@media (max-width: 420px) {
    body { padding: 24px 12px 32px; }

    .profile-name-row {
        flex-direction: column;
        gap: 6px;
    }

    .verification-card__header {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .verification-card__meta {
        grid-column: 1 / -1;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    .profile-cover {
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        border-left: none;
        border-right: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        height: 32vh;
        min-height: 200px;
    }
}
