:root {
    --color-red: #D32F2F;
    --color-red-dark: #B71C1C;
    --color-black: #121212;
    --color-gray-dark: #1E1E1E;
    --color-white: #FFFFFF;
    --color-text-gray: #A0A0A0;
    --font-primary: 'Montserrat', sans-serif;
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    min-height: 100vh;

    display: flex;
    justify-content: center;   /* centraliza horizontal */
    align-items: flex-start;   /* NÃO centraliza vertical */
    padding: 32px 0;
}

/* Fundo abstrato */
.background-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-red);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-red);
    bottom: -10%;
    right: -10%;
}

/* Container */
.container {
    width: 100%;
    max-width: 420px;
    padding: 40px 24px;
    animation: fadeInUp 0.8s ease forwards;
}

/* Perfil */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, var(--color-red), var(--color-black));
    position: relative;
}

.profile-image-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.profile-logo {
    max-width: 85%;
    max-height: 60%;
    object-fit: contain;
}

.status-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--color-black);
}

.subtitle {
    color: var(--color-text-gray);
    margin-top: 4px;
}

.description {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

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

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.link-btn:hover {
    transform: translateY(-4px);
}

.link-content-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-box {
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.15);
}

.link-text {
    font-size: 1.05rem;
    font-weight: 600;
}

/* WhatsApp */
.btn-whatsapp {
    background-color: var(--color-red);
}

.btn-whatsapp:hover {
    background-color: var(--color-red-dark);
}

/* Botões padrão */
.btn-standard {
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Setas */
.arrow-icon {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.link-btn:hover .arrow-icon {
    opacity: 1;
    transform: translateX(4px);
}

/* Rodapé */
footer {
    margin-top: 64px;
    text-align: center;
}

.footer-text {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Animação */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .link-text {
        font-size: 1rem;
    }

    .icon-box {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
 