/* Configurações Gerais do esboço */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5e6e0 0%, #e0d5ce 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 90%;
    max-width: 420px;
    padding: 45px 20px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.3);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 1.3rem;
    margin: 18px 0 5px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}

.bio {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
}

/* Botões de Links */
.link-card {
    background: white;
    display: block;
    padding: 18px;
    margin-bottom: 14px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    background: #fafafa;
}

/* Destaque WhatsApp */
.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #20ba5a;
    color: white;
}

/* Atribuições */

/* Link Desabilitado */
.link-card.disabled {
    opacity: 1.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* subtitulo "em breve" */
small {
    font-size: 0.75rem;
    color: #25d366;
    margin-top: 4px;
}