.wp-linktree-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.wp-linktree-title {
    display: none;
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 28px;
    font-weight: 700;
}

.wp-linktree-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wp-linktree-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wp-linktree-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wp-linktree-button i {
    margin-right: 10px;
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .wp-linktree-container {
        margin: 20px auto;
        padding: 30px 15px;
    }
    
    .wp-linktree-title {
        font-size: 24px;
    }
    
    .wp-linktree-button {
        padding: 16px 20px;
        font-size: 15px;
    }
}