/* Reset e configurações básicas - Updated 2025-08-14 11:17:50 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 20px;
    color: #fff;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Seção do perfil */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}

.profile-image:hover img {
    transform: scale(1.05);
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-bio {
    font-size: 16px;
    color: #cccccc;
    font-weight: 400;
}

/* Seção de links */
.links-section {
    margin-bottom: 40px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Banners específicos para cada link */
.link-card[data-link="mussuclub"] {
    position: relative;
    background: none !important;
}

.link-card[data-link="mussuclub"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/background/mussuclub.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: inherit;
}

.link-card[data-link="grupofree"] {
    position: relative;
    background: none !important;
}

.link-card[data-link="grupofree"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/background/telegram.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
    border-radius: inherit;
}

.link-card[data-link="youtube"] {
    position: relative;
    background: none !important;
}

.link-card[data-link="youtube"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/background/youtube.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
    border-radius: inherit;
}

.link-card[data-link="instagram"] {
    position: relative;
    background: none !important;
}

.link-card[data-link="instagram"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/background/instagram.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: inherit;
}

.link-card[data-link="whatsapp"] {
    position: relative;
    background: none !important;
}

.link-card[data-link="whatsapp"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/background/whatsapp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: inherit;
}

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

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

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    background: rgba(50, 50, 50, 0.9);
}

.link-card.primary {
    background: linear-gradient(135deg, #333333, #000000);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-card.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #444444, #111111);
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.link-card.primary .link-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-content {
    flex: 1;
}

.link-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-description {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.link-arrow {
    font-size: 16px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

/* Seção social */
.social-section {
    text-align: center;
    margin-bottom: 30px;
}

.social-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(60, 60, 60, 0.9);
    color: white;
}

/* Animações específicas para redes sociais */
.social-link[data-social="x"]:hover {
    background: rgba(29, 161, 242, 0.3);
    color: #1da1f2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
}

.social-link[data-social="email"]:hover {
    background: rgba(220, 53, 69, 0.3);
    color: #dc3545;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
    animation: pulse-red 1.5s infinite;
}

.social-link[data-social="tiktok"]:hover {
    background: rgba(255, 0, 80, 0.3);
    color: #ff0050;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.5);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 53, 69, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    }
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 12px;
    opacity: 0.8;
    font-style: italic;
}

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

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

.link-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsividade */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .link-card {
        padding: 16px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 25px 15px;
    }
    
    .profile-image img {
        width: 100px;
        height: 100px;
    }
    
    .social-links {
        gap: 12px;
    }
}

/* Efeitos especiais */
.link-card:active {
    transform: scale(0.98);
}

.social-link:active {
    transform: scale(0.95);
}

/* Hover effects para diferentes tipos de links */
.link-card[data-link="github"]:hover .link-icon {
    background: #333;
    color: white;
}

.link-card[data-link="linkedin"]:hover .link-icon {
    background: #0077b5;
    color: white;
}

.link-card[data-link="youtube"] .link-icon {
    background: #ff0000;
    color: white;
}

.link-card[data-link="youtube"]:hover .link-icon {
    background: #ff0000;
    color: white;
    animation: pulse-red 1.5s infinite;
}

.link-card[data-link="whatsapp"] .link-icon {
    background: #25d366;
    color: white;
}

.link-card[data-link="whatsapp"]:hover .link-icon {
    background: #25d366;
    color: white;
    animation: pulse-green 1.5s infinite;
}

.link-card[data-link="instagram"] .link-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.link-card[data-link="instagram"]:hover .link-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.link-card[data-link="mussuclub"] .link-icon {
    background: #ffd700;
    color: #333;
}

.link-card[data-link="mussuclub"]:hover .link-icon {
    background: #ffd700;
    color: #333;
    animation: pulse-gold 1.5s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

.link-card[data-link="email"]:hover .link-icon {
    background: #ea4335;
    color: white;
}

.link-card[data-link="grupofree"] .link-icon {
    background: #0088cc;
    color: white;
}

.link-card[data-link="grupofree"]:hover .link-icon {
    background: #0088cc;
    color: white;
    animation: pulse-blue 1.5s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
    }
}

/* Cores específicas para redes sociais */
.social-link[data-social="twitter"]:hover {
    background: #1da1f2;
}

.social-link[data-social="facebook"]:hover {
    background: #1877f2;
}

.social-link[data-social="tiktok"]:hover {
    background: #000;
}

.social-link[data-social="discord"]:hover {
    background: #5865f2;
}