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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.header {
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #00ff88;
    margin-bottom: 10px;
}

.bio {
    margin-bottom: 40px;
    text-align: left;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    border-left: 4px solid #00ff88;
}

.credential {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e0e0e0;
}

.motto {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-top: 20px;
    text-align: center;
}

.motto p {
    margin-bottom: 8px;
    font-size: 16px;
}

.highlight {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d);
    color: white;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 64, 95, 0.4);
}

.phone {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.link-button i:first-child {
    font-size: 20px;
}

.link-button i:last-child {
    font-size: 14px;
    opacity: 0.7;
}

.footer {
    text-align: center;
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer p {
    margin-bottom: 4px;
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .credentials {
        padding: 16px;
    }
    
    .credential {
        font-size: 13px;
    }
    
    .description {
        font-size: 15px;
    }
    
    .link-button {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.8s ease-out;
}

.link-button {
    animation: fadeInUp 0.8s ease-out;
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }

