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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

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

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out 0.3s both;
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: slideInRight 1s ease-out 0.6s both;
}

.links-section {
    margin-bottom: 40px;
}

.link-button {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.link-button::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-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.link-button[data-type="eventos"]:hover {
    border-left: 4px solid #ff6b6b;
}

.link-button[data-type="soccer"]:hover {
    border-left: 4px solid #4ecdc4;
}

.link-button[data-type="contact"]:hover {
    border-left: 4px solid #25d366;
}

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

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.link-button[data-type="eventos"] .link-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.link-button[data-type="soccer"] .link-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.link-button[data-type="contact"] .link-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.link-button:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.link-description {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.link-arrow {
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(5px);
    color: #333;
}

.social-section {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.social-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.social-button:hover::before {
    transform: translateX(0);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook {
    background: linear-gradient(45deg, #3b5998, #4267B2);
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .link-button {
        padding: 16px;
    }
    
    .link-content {
        gap: 12px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-button {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .link-title {
        font-size: 1rem;
    }
    
    .link-description {
        font-size: 0.8rem;
    }
}

